Skip to content

Commit fe0b157

Browse files
Abhikgitbook-bot
Abhik
authored andcommitted
GITBOOK-8: No subject
1 parent 6317c3a commit fe0b157

9 files changed

+65
-27
lines changed

.gitbook/assets/filemanagerscreen.png

43.5 KB
Loading

.gitbook/assets/image (1) (1).png

5.69 KB
Loading

.gitbook/assets/image (1).png

2.48 KB
Loading

.gitbook/assets/image.png

1.32 KB
Loading

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Table of contents
22

33
* [Introduction](README.md)
4-
* [Getting Medley Up and Running](getting-medley-up-and-running.md)
4+
* [Medley Online and Medley Local](medley-online-and-medley-local.md)
55
* [Understanding and Navigating the Interface](understanding-and-navigating-the-interface.md)
66
* [Reading LISP Syntax](reading-lisp-syntax.md)
77
* [Atoms, Functions and Lists](atoms-functions-and-lists.md)

getting-medley-up-and-running.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

medley-online-and-medley-local.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Medley Online and Medley Local
2+
3+
#### When to choose which?
4+
5+
You can run Medley either online or locally. Both are fully capable environments so rest assured you don't have to compromise on the featuers available to you. Choose the online version if you want quick and easy access to Medley. You can login as a guest and start poking around right away. When you're ready to dive deeper and want to keep track of files and the state of your environment across sessions, you can create a free account. Use that to log in for your next sessions. Check out [Access Medley Online](https://interlisp.org/software/access-online/) if you have more questions.
6+
7+
If you prefer a more hands-on, web-independent approach, you can build Medley on your computer. Refer to the documentation here: [Install and Run](https://interlisp.org/software/install-and-run/), to learn more about how to get Medley installed in your specific operating system. 
8+
9+
Both the online and local versions of Medley, lets you create, save and edit files and save the current state of your Medley environment. But the process of doing so differs slightly. Medey's `SYSOUT`\
10+
function saves the current state of Medley's virtual memory in a "sysout file". The section titled _Saving Virtual Memory State_ in the [Interlisp Reference Manual](https://interlisp.org/documentation/IRM.pdf) can tell you more about SYSOUT's possibilities.
11+
12+
**Accessing Files**
13+
14+
Once inside Medley Online, to your very left, you'll find a side bar expandable to a left-arrow icon. 
15+
16+
<img src=".gitbook/assets/image.png" alt="" data-size="original"> &#x20;
17+
18+
We'll talk about the other useful options this sidebar provides. For now, lets focus on the first one, a useful virtual file manager. Click and you should see a warning that the file manager will open in a new window. Go ahead and press Ok. A new tab should appear in your browser with the following window:
19+
20+
<figure><img src=".gitbook/assets/filemanagerscreen.png" alt=""><figcaption></figcaption></figure>
21+
22+
Right above, the text "Name", you'll notice that all our important files are stored inside a folder titled "il".&#x20;
23+
24+
If you're running Medley locally, your system files are also inside a folder titled "il" but your saved files will be in a nested subfolder titled "home". So, when you save files in Medley Online, it's saved to the path `il/`
25+
26+
When you save files in Medley Local, your files are saved to the path: `il/home/username/`
27+
28+
{% hint style="info" %}
29+
"username" will of course be replaced by your username.
30+
{% endhint %}
31+
32+
As we learn to use `LOAD` , `MAKEFILES` and other helpfule function related to handling files in Medley Interlisp, we don't need to change our filepaths for either versions of Medley but it's good to be aware where they are located so we can use that information later!

temporary-notes.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Temporary Notes
22

3+
#### Using Medley Online vs Using Medley Locally
4+
5+
* Why choose one over the other?
6+
7+
#### How to Install Medley
8+
9+
* What installation options are available? Which one should you choose and why?
10+
* What do you need to download and install before installing Medley?
11+
* How do you install Medley in your OS?
12+
* How can you find your installation directory?
13+
* How can you change your installation directory?
14+
15+
#### Running Medley Locally
16+
17+
* How can you run Medley locally after installing?
18+
* Flags
19+
20+
#### Running Medley Online
21+
22+
* What do the Medley Online starter options mean?
23+
* Key points to remember when using Medley Online.
24+
25+
####
26+
27+
####
28+
29+
####
30+
31+
####
32+
333
#### Breaking down the interface
434

535
* What are the components making up the interface you see on screen when you first start Medley?

understanding-and-navigating-the-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ To select or click a menu item: While holding the right-click, move your cursor
3434

3535
To expand a menu item: While holding right-click, with the cursor on the item you want to expand, hold left-click and slide right- the expanded menu should appear! You can let go the left mouse button once the expanded menu appears, but keep the right button pressed and select any one of the new options just like any other menu item.&#x20;
3636

37-
<figure><img src=".gitbook/assets/image.png" alt=""><figcaption></figcaption></figure>
37+
<figure><img src=".gitbook/assets/image (1).png" alt=""><figcaption></figcaption></figure>
3838

3939
When you right-click on a window instead of an empty area, a slightly different menu appears. This is the context menu for that window. You can use this to close, resize, clear, or shrink the window!
4040

41-
<figure><img src=".gitbook/assets/image (1).png" alt=""><figcaption></figcaption></figure>
41+
<figure><img src=".gitbook/assets/image (1) (1).png" alt=""><figcaption></figcaption></figure>
4242

4343
[^1]: correct later

0 commit comments

Comments
 (0)