diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9c67fc21a..c4eead132 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,14 +1,14 @@ blank_issues_enabled: false contact_links: - name: ✋ ​ ​Roadmap Request - url: https://discord.gg/cJpEt5Qbwa + url: https://discord.gg/ZrSpJ8zH about: Please do not open issues with roadmap requests, hop onto the discord server for that. - name: 📝 ​ ​Typo or Grammatical Mistake url: https://github.com/kamranahmedse/developer-roadmap/tree/master/src/data about: Please submit a pull request instead of reporting it as an issue. - name: 💬 ​ ​Chat on Discord - url: https://discord.gg/cJpEt5Qbwa + url: https://discord.gg/ZrSpJ8zH about: Join the community on our Discord server. - name: 🤝 ​ ​Guidance - url: https://discord.gg/cJpEt5Qbwa + url: https://discord.gg/ZrSpJ8zH about: Join the community in our Discord server. diff --git a/src/components/OpenSourceStat.astro b/src/components/OpenSourceStat.astro index a7eee8ed1..e95a94bd8 100644 --- a/src/components/OpenSourceStat.astro +++ b/src/components/OpenSourceStat.astro @@ -88,7 +88,7 @@ const isDiscordMembers = text.toLowerCase() === 'discord members'; { isDiscordMembers && ( diff --git a/src/data/guides/history-of-javascript.md b/src/data/guides/history-of-javascript.md index 637f71df4..99e441eb6 100644 --- a/src/data/guides/history-of-javascript.md +++ b/src/data/guides/history-of-javascript.md @@ -80,4 +80,4 @@ ESNext is a dynamic name that refers to whatever the current version of ECMAScri Since the release of ES6, [TC39](https://github.com/tc39) has quite streamlined their process. TC39 operates through a Github organization now and there are [several proposals](https://github.com/tc39/proposals) for new features or syntax to be added to the next versions of ECMAScript. Any one can go ahead and [submit a proposal](https://github.com/tc39/proposals) thus resulting in increasing the participation from the community. Every proposal goes through [four stages of maturity](https://tc39.github.io/process-document/) before it makes it into the specification. -And that about wraps it up. Feel free to leave your feedback in the [discord](https://discord.gg/cJpEt5Qbwa). Also here are the links to original language specifications [ES6](https://www.ecma-international.org/ecma-262/6.0/), [ES7](https://www.ecma-international.org/ecma-262/7.0/) and [ES8](https://www.ecma-international.org/ecma-262/8.0/). +And that about wraps it up. Feel free to leave your feedback in the [discord](https://discord.gg/ZrSpJ8zH). Also here are the links to original language specifications [ES6](https://www.ecma-international.org/ecma-262/6.0/), [ES7](https://www.ecma-international.org/ecma-262/7.0/) and [ES8](https://www.ecma-international.org/ecma-262/8.0/). diff --git a/src/data/guides/java-developer-skills.md b/src/data/guides/java-developer-skills.md index 0e64bbafc..69cb2a9c0 100644 --- a/src/data/guides/java-developer-skills.md +++ b/src/data/guides/java-developer-skills.md @@ -182,7 +182,7 @@ Design patterns are proven approaches to solving specific design challenges and As the popular saying goes, "a tree cannot make a forest." While it might be tempting to work in isolation and tackle all development tasks alone, it's essential for you to join communities that encourage collaboration, peer learning, and staying updated on the latest developments. -A great community to join is the [r](https://discord.gg/cJpEt5Qbwa)[oadmap.sh](https://discord.gg/cJpEt5Qbwa) [Discord community](https://discord.gg/cJpEt5Qbwa), where you can connect with like-minded individuals who share your passion for development. +A great community to join is the [r](https://discord.gg/ZrSpJ8zH)[oadmap.sh](https://discord.gg/ZrSpJ8zH) [Discord community](https://discord.gg/ZrSpJ8zH), where you can connect with like-minded individuals who share your passion for development. ### Soft skills diff --git a/src/data/roadmaps/full-stack/content/checkpoint--infrastructure@YVMyHFSCVF-GgXydq-SFJ.md b/src/data/roadmaps/full-stack/content/checkpoint--infrastructure@YVMyHFSCVF-GgXydq-SFJ.md index 4b3b1ef6d..c1e1fb318 100644 --- a/src/data/roadmaps/full-stack/content/checkpoint--infrastructure@YVMyHFSCVF-GgXydq-SFJ.md +++ b/src/data/roadmaps/full-stack/content/checkpoint--infrastructure@YVMyHFSCVF-GgXydq-SFJ.md @@ -11,4 +11,4 @@ And that is it! You have successfully completed the roadmap and are now a full-s ## What's next? -Go ahead and build something cool! Share your learnings with the community and help others learn as well. If you have any questions, feel free to join our [discord server](https://discord.gg/cJpEt5Qbwa) and ask away! +Go ahead and build something cool! Share your learnings with the community and help others learn as well. If you have any questions, feel free to join our [discord server](https://discord.gg/ZrSpJ8zH) and ask away! diff --git a/src/lib/discord.ts b/src/lib/discord.ts index 014aa06ed..7ad803593 100644 --- a/src/lib/discord.ts +++ b/src/lib/discord.ts @@ -29,7 +29,7 @@ export async function getDiscordInfo(): Promise<{ }; } catch (e) { discordStats = { - url: `https://discord.gg/cJpEt5Qbwa`, + url: `https://discord.gg/ZrSpJ8zH`, total: 17000, totalFormatted: '17k', online: 0, diff --git a/src/pages/discord.astro b/src/pages/discord.astro index 2d34a8a86..f00cac2c9 100644 --- a/src/pages/discord.astro +++ b/src/pages/discord.astro @@ -1,6 +1,6 @@ --- export const prerender = false; -const discordLink = 'https://discord.gg/cJpEt5Qbwa'; +const discordLink = 'https://discord.gg/ZrSpJ8zH'; return Astro.redirect(discordLink); ---