├── .gitignore ├── .gitmodules ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── date.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── client │ └── apolloClient.js ├── components │ ├── article │ │ ├── headerMeta.js │ │ ├── headerTags.js │ │ ├── postHero.js │ │ ├── postTitleHeader.js │ │ ├── renderAuthorDetails.js │ │ ├── renderComments.js │ │ └── renderMainArticle.js │ ├── authorList.js │ ├── avatar.js │ ├── bio.js │ ├── layout.js │ ├── layout │ │ ├── header.js │ │ ├── headerBar.js │ │ ├── link.js │ │ ├── postRollArticle.js │ │ ├── postRollArticleHero.js │ │ ├── postRollArticleShimmer.js │ │ ├── postRollFooter.js │ │ ├── postRollRenderedArticle.js │ │ ├── sidebarAuthor.js │ │ ├── sidebarRecent.js │ │ └── sidebarTags.js │ ├── layoutAuthor.js │ ├── layoutPost.js │ ├── postBrief.js │ ├── postRollAll.js │ ├── postRollByAuthorId.js │ ├── postRollByTagName.js │ ├── seo.js │ ├── sidebar │ │ ├── renderSidebarAuthorBioParts.js │ │ ├── renderSidebarAuthorDetails.js │ │ ├── renderSidebarTags.js │ │ ├── sidebarAllTags.js │ │ └── sidebarTagDetails.js │ ├── siteFooter.js │ └── tagList.js ├── hooks │ ├── addUtteranceComments.js │ ├── fetchImage.js │ ├── getAuthorDetails.js │ ├── getPostAuthors.js │ ├── getPostTagDetails.js │ ├── getPosts.js │ ├── getPostsByTagName.js │ ├── getSiteLogoSrc.js │ └── static │ │ ├── getAuthorDetailsStatic.js │ │ ├── getFormattedTags.js │ │ ├── getGithubLogoStatic.js │ │ ├── getPostTagDetailsStatic.js │ │ ├── getPostTagsStatic.js │ │ ├── getPostsByAuthorIdStatic.js │ │ ├── getPostsByTagNameStatic.js │ │ ├── getPostsStatic.js │ │ ├── getSiteDetailsStatic.js │ │ └── getSiteLogoSrcStatic.js ├── img │ ├── discord-logo.svg │ ├── facebook-logo.svg │ ├── github-logo-white.svg │ ├── github-logo.svg │ ├── instagram-logo.svg │ ├── linkedin-logo.svg │ ├── logo.svg │ └── twitter-logo.svg ├── pages │ ├── 404.js │ └── index.js ├── scss │ ├── animations.scss │ ├── article.scss │ ├── base.scss │ ├── footer.scss │ ├── index.scss │ ├── layout.scss │ ├── mixins.scss │ ├── postroll.scss │ ├── syntax.scss │ ├── table.scss │ └── vars.scss ├── templates │ ├── author.js │ ├── blog-post.js │ └── tag.js └── utils │ ├── className.js │ ├── customSlug.js │ ├── date.js │ ├── mapPostsToTags.js │ └── mapTagDetailsToPostsTagsMap.js ├── static ├── CNAME ├── favicon.ico └── robots.txt └── uid.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.13.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/README.md -------------------------------------------------------------------------------- /date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/date.js -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/package.json -------------------------------------------------------------------------------- /src/client/apolloClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/client/apolloClient.js -------------------------------------------------------------------------------- /src/components/article/headerMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/headerMeta.js -------------------------------------------------------------------------------- /src/components/article/headerTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/headerTags.js -------------------------------------------------------------------------------- /src/components/article/postHero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/postHero.js -------------------------------------------------------------------------------- /src/components/article/postTitleHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/postTitleHeader.js -------------------------------------------------------------------------------- /src/components/article/renderAuthorDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/renderAuthorDetails.js -------------------------------------------------------------------------------- /src/components/article/renderComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/renderComments.js -------------------------------------------------------------------------------- /src/components/article/renderMainArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/article/renderMainArticle.js -------------------------------------------------------------------------------- /src/components/authorList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/authorList.js -------------------------------------------------------------------------------- /src/components/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/avatar.js -------------------------------------------------------------------------------- /src/components/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/bio.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/layout/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/header.js -------------------------------------------------------------------------------- /src/components/layout/headerBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/headerBar.js -------------------------------------------------------------------------------- /src/components/layout/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/link.js -------------------------------------------------------------------------------- /src/components/layout/postRollArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/postRollArticle.js -------------------------------------------------------------------------------- /src/components/layout/postRollArticleHero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/postRollArticleHero.js -------------------------------------------------------------------------------- /src/components/layout/postRollArticleShimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/postRollArticleShimmer.js -------------------------------------------------------------------------------- /src/components/layout/postRollFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/postRollFooter.js -------------------------------------------------------------------------------- /src/components/layout/postRollRenderedArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/postRollRenderedArticle.js -------------------------------------------------------------------------------- /src/components/layout/sidebarAuthor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/sidebarAuthor.js -------------------------------------------------------------------------------- /src/components/layout/sidebarRecent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/sidebarRecent.js -------------------------------------------------------------------------------- /src/components/layout/sidebarTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layout/sidebarTags.js -------------------------------------------------------------------------------- /src/components/layoutAuthor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layoutAuthor.js -------------------------------------------------------------------------------- /src/components/layoutPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/layoutPost.js -------------------------------------------------------------------------------- /src/components/postBrief.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/postBrief.js -------------------------------------------------------------------------------- /src/components/postRollAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/postRollAll.js -------------------------------------------------------------------------------- /src/components/postRollByAuthorId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/postRollByAuthorId.js -------------------------------------------------------------------------------- /src/components/postRollByTagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/postRollByTagName.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/sidebar/renderSidebarAuthorBioParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/sidebar/renderSidebarAuthorBioParts.js -------------------------------------------------------------------------------- /src/components/sidebar/renderSidebarAuthorDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/sidebar/renderSidebarAuthorDetails.js -------------------------------------------------------------------------------- /src/components/sidebar/renderSidebarTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/sidebar/renderSidebarTags.js -------------------------------------------------------------------------------- /src/components/sidebar/sidebarAllTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/sidebar/sidebarAllTags.js -------------------------------------------------------------------------------- /src/components/sidebar/sidebarTagDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/sidebar/sidebarTagDetails.js -------------------------------------------------------------------------------- /src/components/siteFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/siteFooter.js -------------------------------------------------------------------------------- /src/components/tagList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/components/tagList.js -------------------------------------------------------------------------------- /src/hooks/addUtteranceComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/addUtteranceComments.js -------------------------------------------------------------------------------- /src/hooks/fetchImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/fetchImage.js -------------------------------------------------------------------------------- /src/hooks/getAuthorDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getAuthorDetails.js -------------------------------------------------------------------------------- /src/hooks/getPostAuthors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getPostAuthors.js -------------------------------------------------------------------------------- /src/hooks/getPostTagDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getPostTagDetails.js -------------------------------------------------------------------------------- /src/hooks/getPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getPosts.js -------------------------------------------------------------------------------- /src/hooks/getPostsByTagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getPostsByTagName.js -------------------------------------------------------------------------------- /src/hooks/getSiteLogoSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/getSiteLogoSrc.js -------------------------------------------------------------------------------- /src/hooks/static/getAuthorDetailsStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getAuthorDetailsStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getFormattedTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getFormattedTags.js -------------------------------------------------------------------------------- /src/hooks/static/getGithubLogoStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getGithubLogoStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getPostTagDetailsStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getPostTagDetailsStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getPostTagsStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getPostTagsStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getPostsByAuthorIdStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getPostsByAuthorIdStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getPostsByTagNameStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getPostsByTagNameStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getPostsStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getPostsStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getSiteDetailsStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getSiteDetailsStatic.js -------------------------------------------------------------------------------- /src/hooks/static/getSiteLogoSrcStatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/hooks/static/getSiteLogoSrcStatic.js -------------------------------------------------------------------------------- /src/img/discord-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/discord-logo.svg -------------------------------------------------------------------------------- /src/img/facebook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/facebook-logo.svg -------------------------------------------------------------------------------- /src/img/github-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/github-logo-white.svg -------------------------------------------------------------------------------- /src/img/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/github-logo.svg -------------------------------------------------------------------------------- /src/img/instagram-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/instagram-logo.svg -------------------------------------------------------------------------------- /src/img/linkedin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/linkedin-logo.svg -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/twitter-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/img/twitter-logo.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/scss/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/animations.scss -------------------------------------------------------------------------------- /src/scss/article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/article.scss -------------------------------------------------------------------------------- /src/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/base.scss -------------------------------------------------------------------------------- /src/scss/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/footer.scss -------------------------------------------------------------------------------- /src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/index.scss -------------------------------------------------------------------------------- /src/scss/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/layout.scss -------------------------------------------------------------------------------- /src/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/mixins.scss -------------------------------------------------------------------------------- /src/scss/postroll.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/postroll.scss -------------------------------------------------------------------------------- /src/scss/syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/syntax.scss -------------------------------------------------------------------------------- /src/scss/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/table.scss -------------------------------------------------------------------------------- /src/scss/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/scss/vars.scss -------------------------------------------------------------------------------- /src/templates/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/templates/author.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/templates/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/templates/tag.js -------------------------------------------------------------------------------- /src/utils/className.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/utils/className.js -------------------------------------------------------------------------------- /src/utils/customSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/utils/customSlug.js -------------------------------------------------------------------------------- /src/utils/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/utils/date.js -------------------------------------------------------------------------------- /src/utils/mapPostsToTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/utils/mapPostsToTags.js -------------------------------------------------------------------------------- /src/utils/mapTagDetailsToPostsTagsMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/src/utils/mapTagDetailsToPostsTagsMap.js -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | thejs.dev -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/static/robots.txt -------------------------------------------------------------------------------- /uid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejsdevsite/jsdev/HEAD/uid.js --------------------------------------------------------------------------------