update discord invite link (#6464)

pull/6466/head
dsh 2 months ago committed by GitHub
parent 70d9a66714
commit b49d9e8aa4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/ISSUE_TEMPLATE/config.yml
  2. 2
      src/components/OpenSourceStat.astro
  3. 2
      src/data/guides/history-of-javascript.md
  4. 2
      src/data/guides/java-developer-skills.md
  5. 2
      src/data/roadmaps/full-stack/content/checkpoint--infrastructure@YVMyHFSCVF-GgXydq-SFJ.md
  6. 2
      src/lib/discord.ts
  7. 2
      src/pages/discord.astro

@ -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.

@ -88,7 +88,7 @@ const isDiscordMembers = text.toLowerCase() === 'discord members';
{
isDiscordMembers && (
<a
href='https://discord.gg/cJpEt5Qbwa'
href='https://discord.gg/ZrSpJ8zH'
target='_blank'
class='group mt-0 flex flex-col items-center rounded-lg border border-black bg-white px-3 py-2 text-sm hover:bg-black hover:text-white'
>

@ -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/).

@ -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

@ -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!

@ -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,

@ -1,6 +1,6 @@
---
export const prerender = false;
const discordLink = 'https://discord.gg/cJpEt5Qbwa';
const discordLink = 'https://discord.gg/ZrSpJ8zH';
return Astro.redirect(discordLink);
---

Loading…
Cancel
Save