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
@andrewsunglaekim
andrewsunglaekim / w01d02.md
Last active August 29, 2015 14:17
W01D02 HW

Temperature converter!

AMAco keeps up with the trends, and we know that 'retro' is the latest fad among today's youth. AMAco needs a CLI based temperature converter!

  • Create a ruby program that asks the user for input

  • It should convert the input from celsius to fahrenheit and then puts that value.

  • ask the user what the starting temperature is(fahrenheit or celsius)

  • output should be opposite of starting temperature type

<!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>
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) => {

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

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


JS standards

Objectives

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

Initial discussions (15m ~ 30m)

JS standards

Objectives

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

Linter

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