diff --git a/README.md b/README.md index f253669..621a4a0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -[](https://twilio.com/quest?utm_source=gh-badge&utm_medium=referral&utm_campaign=developer-fundamentals) +[](https://terminal.quest?utm_source=gh-badge&utm_medium=referral&utm_campaign=developer-fundamentals) # Developer Fundamentals -This is an ever-growing repository of content tackling fundamental education for developers built from your friends at [Twilio](https://twilio.com). We can't wait to see what you build! +This is an ever-growing repository of content tackling fundamental education for developers built from your friends around the Intertubes. - [File System](./file-system) diff --git a/file-system/README.md b/file-system/README.md index 140e58d..e916a21 100644 --- a/file-system/README.md +++ b/file-system/README.md @@ -65,4 +65,4 @@ cp myfile.txt myfile2.txt ## Learning Resources -- **TwilioQuest**: The first floor of the _Tower of Infinite Knowledge_ in [TwilioQuest](https://twilio.com/quest?utm_source=gh&utm_medium=referral&utm_campaign=developer-fundamentals) focusses on File Systems. Check it out! (This video even plays there on a VCR! 📼) +- **TerminalQuest**: The first floor of the _Tower of Infinite Knowledge_ in [TerminalQuest](https://terminal.quest?utm_source=gh&utm_medium=referral&utm_campaign=developer-fundamentals) focusses on File Systems. Check it out! (This video even plays there on a VCR! 📼) diff --git a/shells/README.md b/shells/README.md index adee185..777fc9b 100644 --- a/shells/README.md +++ b/shells/README.md @@ -43,4 +43,4 @@ Open a new terminal. Use command history (typically the up arrow) to navigate to ## Learning Resources -- **TwilioQuest**: Head over to the _Tower of Infinite Knowledge_ in [TwilioQuest](https://twilio.com/quest?utm_source=gh&utm_medium=referral&utm_campaign=developer-fundamentals) +- **TerminalQuest**: Head over to the _Tower of Infinite Knowledge_ in [TerminalQuest](https://terminal.quest?utm_source=gh&utm_medium=referral&utm_campaign=developer-fundamentals) diff --git a/terminal/examples/server/index.js b/terminal/examples/server/index.js index 67fa611..45c1371 100644 --- a/terminal/examples/server/index.js +++ b/terminal/examples/server/index.js @@ -8,7 +8,7 @@ app.get("/", (req, res) => { res.type("html"); res.send(`
You should go check out TwilioQuest
+You should go check out TerminalQuest
`); })