- add node/nodes to the graph
- add a node/nodes/edges to the Repo
function addNode(node) {
}
function search(term) {
}
const typeToCap = (type) => { | |
switch (type) { | |
case "PERSON": | |
return "Person"; | |
case "CONTRIBUTION": | |
return "Contribution"; | |
case "PRIORITY": | |
return "Priority"; | |
} | |
}; |
communication = | |
kris = instance.addPerson("Kris", ""); | |
josh = instance.addPerson("Josh", ""); | |
jeff = instance.addPerson("Jeff", ""); | |
will = instance.addPerson("Will", ""); | |
zoltan = instance.addPerson("Zoltan", ""); |
// prefix: N.Prefix.label, | |
const labelNodeType = Object.freeze({ | |
name: "Label", | |
pluralName: "Labels", | |
prefix: N.Prefix.label, | |
defaultWeight: 2, | |
description: "Label for a GitHub issue" | |
}) |
function addNode(node) {
}
function search(term) {
}
import React from 'react'; | |
describe("MainPage", () => { | |
const chapter = () => { | |
title: "chapter 1", | |
text: "" | |
} | |
it("button clicks show correct panes", () => { |
http://nealcaren.web.unc.edu/a-sociology-citation-network/ | |
https://github.com/taynaud/python-louvain/ | |
https://github.com/drewconway/networkx | |
http://nealcaren.web.unc.edu/inequality-from-space/ | |
what/where are models of organizations/groups/activity that we can study/ have data sets? | |
sociology of OSS: | |
https://www.academia.edu/918556/Sociology_of_Free_and_Open_Source_Software_Communities_Motivations_and_Structures |
g.add_node('src') | |
g.add_node('dst') | |
g.add_edge('src', 'dst') | |
g.add_edge('src', 'dst') | |
g.add_node('loop') | |
g.add_edge('loop', 'loop') | |
g.add_node('isolated') |
A promise is an object representing the eventual completion or failure of an asynchronous operation Essentially, a promise is a returned object onto which you attach callbacks, instead of passing callbacks into a function
How to write createAudioFileAsync(audioSettings, successCallback, failureCallback)
using Promises?
createAudioFileAsync(audioSettings).then(successCallback, failureCallback)
or
const promise = createAudioFileAsync(audioSettings);
promise.then(successCallback, failureCallback);
return a better error message w/ multiple arguments
should makeClear
return a Promise?
function removeDir(p: string): Promise
should be the signature
exercise container types: normal circuit density compound exercise superset