Skip to content

Instantly share code, notes, and snippets.

View andrewsunglaekim's full-sized avatar
💭
loving this github status feature

Andrew Kim andrewsunglaekim

💭
loving this github status feature
View GitHub Profile
NoFg7GCslgdJAGEBOAjMsqDMAmANFmAGxaw4AcqOkeA3gEQBOApgM7MCGjAxgBYDCzAHYAXZo3oAuVHnoB3AJZCAJgBUArowBGS5gEF1IgPYAlZlvUKANsqkz6RgGaOF3ZndlaOIsYwCeHvSsRlZcglZWgcGhjOFWBsZmFta20rJ8jEZCRgC2zL6B3EYcVgBCmkLihcVlFeIJpuaWNoEK0d4KWYFOLm44dgC+dPQ5SgpSwAh4IozqzNOz8wyKKhraugAyCo7ukliyK2qaOpUACpnK6twinUJSNPQA5sLi3kaMALIcAB4AEpwiKT7J4vRhvWJZABu4hEpyMciq0jAsnasWYEXORku11u91kPVczAAyuirHCERI9rIWOwuHxBKJ6jkjOpRECUSEwqStjtAl4fOIApJkfQiiVyoxKoxMdibl1pENgMAhOoIngplMVREALp4ZWqqzqo1aqy6/VqjV4E1mk1GzUGm0Gu1Wh1622W61up0e13mw0+nVei3G33ukOBv3Oz2RgOmoP+8NxmOJx3B+0RsPppOZl0Z70p+NR0P5rOphOlwuxstFvNp3PZkv16tVvVBTloiL0Z0gcjNgvJisDpuV/s56Nj4t18eN6dTyfl4dD2cL5c1htz2sr+drvuDiebncjwdtmJxLuWkBEM0gqXg8+jmfbltLp8PjfrrcH5/7j+Hl9ft9P1/b9HwAvdQOAwC/x/XdFxgo84Ig2DVxA99kNfcC0IQlCoNQoD0LAxCsP/SDMPw7CMKI8iSII0iqOgpCKMI6MTy5TtnQga9nlvYwJAY4j4Jopi6Jwsj+OowTJMYoSZKkgTpME+QlCOdZKnvKZUFQa8CT6dTFxvV5eL0ljuMM95jN9UUaglKU9KwLBkC40E7z/eh+V8AJxK8vDvNwvyxJ8wL/PooKAuC0SQv7AywSM1yxVqSUqmdCgtNbUyYvM1z0pc0LIrC/K8sKiLisokrmNKiryqqkTKqTBxnEJfosuc2Ln2inKosONYTncZ0sBAWjBuEobZI

JS standards

Objectives

  • identify important takeaways from RV teams
  • consolidate standardization items
  • create overarching strategy
  • identify next steps

Initial discussions (15m ~ 30m)

physician-finder

A Vue.js project

Git Workflow

Commit messages should be prefaced with the jira task followed by the work done

ex: NVPF-30: Reworked header styles

Creating Releases

JS standards

Objectives

  • establish/confirm base for linter
  • establish categories for prioritization for lint rules
  • determine the goal of "testing" standardizations

Linter

JS standards

Objectives

  • identify important takeaways from RV teams
  • consolidate standardization items
  • create overarching strategy
  • identify next steps

Initial discussions (15m ~ 30m)

In The Loop Recap

Purpose

  • Clearly define some of the main words used in the video.
  • Flesh out foundational knowledge of JS program execution.

Discussion Questions/Points

JS is single threaded


physician-finder

A Vue.js project

Git Workflow

Commit messages should be prefaced with the jira task followed by the work done

ex: NVPF-30: Reworked header styles

Build Setup

const getValueFromPath = (object, path) => {
const nestedObj = object[path[0]];
const nextPath = path.slice(1, path.length);
if (path.length > 1) {
return getValueFromPath(nestedObj, nextPath);
}
return nestedObj;
};
const getValueFromPathEval = (object, path) => {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<header class="header js_fixedcontent">
<h1 class="">Hello!</h1>