From 744283bbbc361aa62501c58097e3ae8fbdb69108 Mon Sep 17 00:00:00 2001 From: Mark Vasilkov Date: Thu, 29 Aug 2024 13:56:03 +0300 Subject: [PATCH 1/2] Replace Atom with VS Code, Python 2 with Python 3 --- content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content.md b/content.md index 21e6f46..43c7aac 100644 --- a/content.md +++ b/content.md @@ -115,10 +115,10 @@ section **↓**. Else, head **→** to start with A-Frame! -1. **Get a text editor:** [Atom](https://atom.io) is a good one to start with +1. **Get a text editor:** [VS Code](https://code.visualstudio.com) is a good one to start with 2. **Set up a local server:** Download and run [Mongoose Server](https://www.cesanta.com/products/binary) or run `python -m -SimpleHTTPServer` in a terminal +http.server` in a terminal 3. **Create a file `index.html`** and copy A-Frame code from the Glitch samples 4. **Run a local server** in the same directory as the HTML file 5. **Open the local server's URL** in your browser (e.g., `http://localhost:8000`) From 1c209ede87087cafdacb2be4af34865502bf8258 Mon Sep 17 00:00:00 2001 From: Mark Vasilkov Date: Thu, 29 Aug 2024 14:00:38 +0300 Subject: [PATCH 2/2] Another slide --- content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content.md b/content.md index 43c7aac..376a70d 100644 --- a/content.md +++ b/content.md @@ -130,7 +130,7 @@ network have access to your local server ## [Optional] Set Up a Web Development Environment — Get a Text Editor -> [Atom](https://atom.io) is a good text editor to start if you don't have one. +> [VS Code](https://code.visualstudio.com) is a good text editor to start if you don't have one. > Other popular options are [Notepad++](https://notepad-plus-plus.org/), > [Sublime](https://www.sublimetext.com/), [Brackets](http://brackets.io/), or > [vim](http://www.vim.org/download.php). @@ -150,7 +150,7 @@ network have access to your local server
- python -m SimpleHTTPServer 8080 + python -m http.server 8080