Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wandyezj committed Aug 12, 2020
2 parents 9baedbe + c881114 commit c94c480
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 0 deletions.
6 changes: 6 additions & 0 deletions links.md
Expand Up @@ -4,6 +4,8 @@

### General

[Prepared For Success](https://preparedforsuccess.org/)

[Khan Academy](https://www.khanacademy.org/)

[Crash Course](https://www.youtube.com/user/crashcourse)
Expand Down Expand Up @@ -147,6 +149,10 @@

- share and reuse code for Node applications

[Node Green](https://node.green/)

- functionality available in specified node versions

### Information Technology

[CompTIA](https://en.wikipedia.org/wiki/CompTIA)
Expand Down
35 changes: 35 additions & 0 deletions recipes/aloo-palak.md
@@ -0,0 +1,35 @@
# Aloo Palak





## Ingredients

- 2 cloves of pealed garlic
- 1/2 inch piece of fresh pealed ginger root
- 2 tablespoons of olive oil
- 1 onions, diced
- 1 teaspoon ground cumin
- 1 teaspoon ground coriander
- 1/4 teaspoon cayenne pepper
- 1/2 teaspoon turmeric
- 1 teaspoon salt
- 2 roma (plum) tomatoes, diced (~4 cups when chopped)
- 2 potatoes, diced (~4 cups when chopped)
- 2 bunched of fresh spinach, chopped fine (~2 cups once chopped)

## Directions

1. grind garlic and ginger together to make a paste
1. place pot on stove
1. add olive oil to pot
1. set burner under pot to medium high heat
1. satute onions until translucent
1. add spices: cumin, coriander, cayanne, tumeric, salt
1. mix well
1. add tomatoes
1. add potatoes
1. cook for 20 minutes, stiring every five minutes
1. add spinach
1. cook until potatoes are tender ~10 more minutes
16 changes: 16 additions & 0 deletions writing/guidelines-scripting.md → writing/scripting.md
Expand Up @@ -60,3 +60,19 @@ const startTime = getTimeSinceStart();
const startTimeMilliseconds = getMillisecondsSinceStart()

```

- Always Use Unicode UTF-8 for all files

- Write files to a folder, when possible delete the folder before running again

- Avoid consuming the output of the script as the input for a new run of the script. Strongly prefer to have the input and outputs be separate.

- It's possible to string scripting languages together, by having one script output another script and then running that script in its environment

- Prefer TSV file format for any table based data for excel. Avoid CSV format as it has many exceptions and it much harder to parse correctly

- prefer JSON format over XML where possible.

- Prefer strongly typed scripting languages, it keeps you from making dumb mistakes

- Within a team standardize on one scripting language, preference should be node TypeScript
40 changes: 40 additions & 0 deletions writing/univeral-document.md
@@ -0,0 +1,40 @@
# Universal Document

A Universal Document is optimized to create, tell, and explore stories.

## State

The current state is that multiple applications are used to create, tell, and explore stories, text documents, numerical analysis documents, and presentation documents.

## Target

Why not have a single universal document that can be used to create, tell, and explore stories?


## Proposal

Documents are composed of multiple components:

- Tables
- Charts
- Text
- Images
- Video
- Visuals
- Code
- Sequences

The general format for creating a story is to:

- write up the exploration
- analyze sources and data
- put the analysis together
- create a presentation of some format

What do the interactions look like?

Can components link to components in other documents?

### Component Model

Some components stand alone, other components depend on other components as sources of data. For example a Chart could depend on a Table and as the table changes the Chart changes. In this aspect a document is potentially fluid as the data backing the document changes.

0 comments on commit c94c480

Please sign in to comment.