> For the complete documentation index, see [llms.txt](https://benjohansen.gitbook.io/musictech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://benjohansen.gitbook.io/musictech/old-1/units/networks/assignment-networks.md).

# Assignment (networks)

## 1. Watch the following videos:

* [How the Internet Works](https://www.youtube.com/playlist?list=PLzdnOPI1iJNfMRZm5DDxco3UdsFegvuB7) (40min worth of videos)

## 2. Create a Github "Webpage"

{% hint style="danger" %}
Screen shots below are difficult to see ... so press Command+ on a Mac (Ctrl+ on PC) as many times as you need to zoom in on this page.
{% endhint %}

{% hint style="info" %}

* git learning = <https://try.github.io/> especially <https://learngitbranching.js.org/>
* github hello world = <https://guides.github.com/activities/hello-world/>
* <https://github.com/codepath/ios_guides/wiki/Using-Git-with-Terminal>
  {% endhint %}

1. create a GitHub account = <https://github.com/join>
2. create a new repository

   <img src="/files/-LyfC0cOBVVoDAcJJdIy" alt="" data-size="original">&#x20;

   > **A "repository" is like a folder for your project.**
3. create a new file

   <img src="/files/-LyfCOW6RoDHmVumY_6X" alt="" data-size="original">&#x20;
4. name new file "index.html," add the code below, and "commit new file"

   <img src="/files/-LyfDYNlCIPqiIu1JLAw" alt="" data-size="original">&#x20;

   ```
   <!DOCTYPE html>
   <html>
     <body>
       <h1>My First Heading</h1>
       <p>My first paragraph.</p>
     </body>
   </html>
   ```

   > **a "commit" is like saving the changes to your files, but GitHub saves all of your commits so you can always go back to any "version" or "revision" of your files**
5. make site published using GitHub Pages
   * click on your repository "Settings" tab

     <img src="/files/-Lyjxt6zS22Yr7wZBlF6" alt="" data-size="original">&#x20;
   * change the "Source" to "master branch"

     <img src="/files/-Lyjycj3lnMpavl81Txf" alt="" data-size="original">&#x20;
   * now your URL is displayed

     <img src="/files/-LyjyqnCVXRdmfIjoaEg" alt="" data-size="original">&#x20;
6. upload an mp3 of one of the sounds you recorded for freesound.org to the repository

   <img src="/files/-LyfDuSde6ww-bkB_nRj" alt="" data-size="original">&#x20;
7. click edit on your index.html file

   <img src="/files/-LyfEDNFpCfZ7eE9016Z" alt="" data-size="original">&#x20;
8. insert the \<audio> tag code to your index.html (including \<div> tags) somewhere in the \<body> of your page and commit changes (Note: my mp3 file was named accordion.mp3 ... so edit the code to show your mp3 file's name)

   ```
   <!DOCTYPE html>
   <html>
     <body>
       <h1>My First Heading</h1>
       <p>My first paragraph.</p>
       
       <div>
         <audio controls>
             <source src="accordion.mp3" type="audio/mpeg">
             Your browser does not support the audio tag.
         </audio>
       </div>
       
     </body>
   </html>
   ```

9\. Add your URL to your site to the Boxnote:

* section 1 = <https://baylor.box.com/s/ke38esv8h5ht09xhvi4hf2umg7h1h258>
* section 2 = <https://baylor.box.com/s/25ubh8dl2x8ii86inlyt5oor6es1vsx7>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://benjohansen.gitbook.io/musictech/old-1/units/networks/assignment-networks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
