Sitemap Fixes

This commit is contained in:
Jyotirmoy Bandyopadhayaya 2023-02-06 21:17:43 +05:30
parent 18c784bb2d
commit 9af855700c
Signed by: bravo68web
GPG Key ID: F5671FD7BCB9917A
25 changed files with 2849 additions and 1530 deletions

17
LICENCE.asc Normal file
View File

@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
iQJPBAABCAA5FiEE0APh0A+KWUWJp6Z09Wcf17y5kXoFAmPhIRUbHGpiYW5keW9w
YWRoYXlheWFAZ21haWwuY29tAAoJEPVnH9e8uZF6RmcQAI55dncehkAg5NgehYcF
ZaamZmstMXAf9H3XkSvgXEQ08gFRuVq2rFmnvR2dnwyx/O1CwkUtrRH+2QxccmEl
ICvGtt4MnscdP7tbH7vfDsoFT7uHyzKODKdreTRYHMwlBaRqoELE5waW5LVOnSRo
6bZvzPlYmzKtU7V1St+NoTYXq11rwMjNI72qPuLjtlC11U3H7/m1G6PxJbEqnqNg
R2gVp3Hzq7oS7j0G/mXB9h/SDUT6+eexp65BeV7DG9/s6j6C5UoMX54g44qk5Sc2
uWO7rV7eCTCfiFPYxjM5/BfJUIt3cB+VYOGFaO6pxYPCpm4yiLkM5Y62j6yn/mQX
n+Vq6gZzXpuxsR/3g+DwuQSwfA7c35eOrWfkUZTnDIDV1HZ2iS4NuxJQDgoJZEpc
Hu0PaPcB0EtUnm41jAHPAtPR1ou3PLtFzYCUFHDLTrPjmZVQsq0elT+HVKauhmMY
xGAXb8hs8yLTj9mF/el/WmwBekeBAQD8znpxCFx8HaHs+j/iZ0kiBbBoZxp34bmY
HSO6pu+XQ4FttSFj02AX6m6Rcw1XCx6z1H0UdqboM1wqqV6sjaZuwjF3XE+1aczq
piT74wC6AYaVTzl2Z1xG7Epy5VgLCZnztTmPSpAYNoTqElwWbhjTIX5qhwSDsm5+
o+jFfwY8gH+6iT+HwECrpAb4
=2d++
-----END PGP SIGNATURE-----

View File

@ -32,6 +32,9 @@ export default function Buymeacoffee() {
div.appendChild(script);
}, []);
return (<BMCStyle><div id="supportByBMC"></div></BMCStyle>);
return (
<BMCStyle>
<div id="supportByBMC"></div>
</BMCStyle>
);
}

View File

@ -4,4 +4,4 @@ export const BMCStyle = styled.div`
.supportFromHome {
bottom: 15px;
}
`
`;

View File

@ -28,7 +28,9 @@ function Contact() {
<div className="column">
<div className="prewritten-info">
<div className="prewritten-info-content">
<h1><u>Contact Me</u></h1>
<h1>
<u>Contact Me</u>
</h1>
<p>
If you have any questions, feel free to contact me. I am always
open to discussing new projects and opportunities.
@ -61,9 +63,7 @@ function Contact() {
<h3>
<strong>Extra:</strong>
</h3>
<a href="https://calendly.com/bravo68web">
Calendly
</a>
<a href="https://calendly.com/bravo68web">Calendly</a>
</p>
</div>
</div>
@ -123,7 +123,11 @@ function Contact() {
placeholder="Your message"
/>
</div>
<button type="submit" className="btn btn-primary" disabled={isSubmitted}>
<button
type="submit"
className="btn btn-primary"
disabled={isSubmitted}
>
Submit
</button>
</form>

View File

@ -310,11 +310,7 @@ export default function DiscordActivity() {
<DicordActivityStyle>
<div className="discord-icons">
<div className="discord-large-icon">
<img
src={
"/images/default_game.jpg"
}
/>
<img src={"/images/default_game.jpg"} />
</div>
<div className="discord-small-icon">
<img src={"/images/" + "offline" + ".png"} alt="" />

View File

@ -1,28 +1,24 @@
import {useRef, useEffect} from 'react';
import { useRef, useEffect } from "react";
export default function CustomCursor() {
const cursorRef = useRef(null)
const cursorRef = useRef(null);
useEffect(() => {
if (cursorRef.current == null || cursorRef == null)
return;
document.addEventListener('mousemove', e => {
if (cursorRef.current == null)
return;
cursorRef.current.setAttribute("style", "top: " + (e.pageY) + "px; left: " + (e.pageX) + "px;")
})
document.addEventListener('click', () => {
if (cursorRef.current == null)
return;
if (cursorRef.current == null || cursorRef == null) return;
document.addEventListener("mousemove", (e) => {
if (cursorRef.current == null) return;
cursorRef.current.setAttribute(
"style",
"top: " + e.pageY + "px; left: " + e.pageX + "px;"
);
});
document.addEventListener("click", () => {
if (cursorRef.current == null) return;
cursorRef.current.classList.add("expand");
setTimeout(() => {
if (cursorRef.current == null)
return;
if (cursorRef.current == null) return;
cursorRef.current.classList.remove("expand");
}, 500)
})
}, 500);
});
}, []);
return (
<div className='cursor' ref={cursorRef}>
</div>
)
return <div className="cursor" ref={cursorRef}></div>;
}

View File

@ -1,5 +1,5 @@
import { QBStyles } from "./qbadges.style";
import { qwiklabs as qb } from "config"
import { qwiklabs as qb } from "config";
function qbadges() {
return (
@ -7,7 +7,6 @@ function qbadges() {
<div>
<h1 className="title">Qwiklab Badges</h1>
<div className="default">
{qb.map((badge, index) => {
return (
<>
@ -30,7 +29,7 @@ function qbadges() {
</div>
</div>
</>
)
);
})}
</div>
</div>

View File

@ -121,7 +121,9 @@ function GitHubUserEvtSkillCard({ title, image, evt1, evt2, evt3, url }) {
<br />
{evt1.repo.name}
</div>
<div className="description commit-msg">{evt1?.commitMsg?.slice(0,50)}</div>
<div className="description commit-msg">
{evt1?.commitMsg?.slice(0, 50)}
</div>
{/* <div className="description">{evt1?.created_at}</div> */}
</div>
<br />
@ -132,7 +134,9 @@ function GitHubUserEvtSkillCard({ title, image, evt1, evt2, evt3, url }) {
<br />
{evt2.repo.name}
</div>
<div className="description commit-msg">{evt2?.commitMsg?.slice(0,50)}</div>
<div className="description commit-msg">
{evt2?.commitMsg?.slice(0, 50)}
</div>
{/* <div className="description">{evt2?.created_at}</div> */}
</div>
<br />
@ -143,7 +147,9 @@ function GitHubUserEvtSkillCard({ title, image, evt1, evt2, evt3, url }) {
<br />
{evt3.repo.name}
</div>
<div className="description commit-msg">{evt3?.commitMsg?.slice(0,50)}</div>
<div className="description commit-msg">
{evt3?.commitMsg?.slice(0, 50)}
</div>
{/* <div className="description">{evt3?.created_at}</div> */}
</div>
</SkillCard>

View File

@ -81,33 +81,31 @@ function Skills() {
title={"Osu! Player Stats"}
url={"https://osu.ppy.sh/users/bravo68web"}
image={skills?.logo?.osu}
accuracy={
skills?.osu_user?.data?.statistics?.hit_accuracy
}
level={
skills?.osu_user?.data?.statistics?.level?.current
}
accuracy={skills?.osu_user?.data?.statistics?.hit_accuracy}
level={skills?.osu_user?.data?.statistics?.level?.current}
pp_raw={skills?.osu_user?.data?.statistics?.pp}
country={skills?.osu_user?.data?.country?.code}
pp_rank={
skills?.osu_user?.data?.statistics?.global_rank
}
pp_rank={skills?.osu_user?.data?.statistics?.global_rank}
countryRank={skills?.osu_user?.data?.statistics?.country_rank}
maximum_combo={
skills?.osu_user?.data?.statistics?.maximum_combo
}
join_date={"2019-09-21 19:33:44"}
total_score={
skills?.osu_user?.data?.statistics?.total_score
}
total_score={skills?.osu_user?.data?.statistics?.total_score}
/>
<TwitterUserSkillCard
title={"Twitter Stats"}
url={"https://twitter.com/Bravo68web"}
image={skills?.logo?.twitter}
followers_count={skills?.twitter_user?.public_metrics?.followers_count}
friends_count={skills?.twitter_user?.public_metrics?.following_count}
statuses_count={skills?.twitter_user?.public_metrics?.tweet_count}
followers_count={
skills?.twitter_user?.public_metrics?.followers_count
}
friends_count={
skills?.twitter_user?.public_metrics?.following_count
}
statuses_count={
skills?.twitter_user?.public_metrics?.tweet_count
}
created_at={skills?.twitter_user?.created_at}
/>
<SpotifyTopSkillCard
@ -127,8 +125,14 @@ function Skills() {
url={"https://wakatime.com/@bravo68web"}
image={skills?.logo?.wakatime}
total_time={skills?.wakatime_alltime?.data?.text}
average_weekly_time={skills?.wakatime_stats?.data?.human_readable_daily_average_including_other_language}
total_weekly_time={skills?.wakatime_stats?.data?.human_readable_total_including_other_language}
average_weekly_time={
skills?.wakatime_stats?.data
?.human_readable_daily_average_including_other_language
}
total_weekly_time={
skills?.wakatime_stats?.data
?.human_readable_total_including_other_language
}
joinedOn={"2020-09-14"}
/>
<HashNodeSkillCard

695
config.js
View File

@ -124,24 +124,21 @@ export const projects = [
{
name: "Enterprise Workspace Images [arm64]",
type: "project",
description:
"Docker images [arm64] for use with Coder",
description: "Docker images [arm64] for use with Coder",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/enterprise-images",
},
{
name: "Fixer Cache Builder",
type: "project",
description:
"A Caching service to store Fixer Exchange Rates.",
description: "A Caching service to store Fixer Exchange Rates.",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/fixer-cache-builder",
},
{
name: "B68-CLI",
type: "project",
description:
"A Command Line Application to interact with B68WEB API",
description: "A Command Line Application to interact with B68WEB API",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/b68-cli",
},
@ -156,24 +153,21 @@ export const projects = [
{
name: "Another Quote Webapp",
type: "project",
description:
"A web app that allows users to view and share quotes.",
description: "A web app that allows users to view and share quotes.",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/another-quote-webapp",
},
{
name: "Hello Tauri App",
type: "project",
description:
"An basic hello tauri app",
description: "An basic hello tauri app",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/hello-tauri-app",
},
{
name: "Osu! Score Embed",
type: "project",
description:
"Embed osu! stats in Github Readme Profile",
description: "Embed osu! stats in Github Readme Profile",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/osu-score-embed",
},
@ -188,8 +182,7 @@ export const projects = [
{
name: "Rust Shuttle",
type: "project",
description:
"A Url Shortener microservice build with Rust",
description: "A Url Shortener microservice build with Rust",
image: "/images/GitHub-Logo.png",
url: "https://github.com/BRAVO68WEB/rust-shuttle-url-sh",
},
@ -568,461 +561,539 @@ export const vsExts = [
description: "Crystalify all your VSCode Icons.",
type: "icon-pack",
url: "https://marketplace.visualstudio.com/items?itemName=Bravo68web.icyicons",
image: "https://raw.githubusercontent.com/BRAVO68WEB/icyicons/master/icon.png",
image:
"https://raw.githubusercontent.com/BRAVO68WEB/icyicons/master/icon.png",
},
{
name: "propstar",
description: "A multivariant VS-Code Theme build with ❤️. All theme designs and colour combinations are handpicked to suit every Programmers needs. Hope you love it.",
description:
"A multivariant VS-Code Theme build with ❤️. All theme designs and colour combinations are handpicked to suit every Programmers needs. Hope you love it.",
type: "theme",
url: "https://marketplace.visualstudio.com/items?itemName=Bravo68web.propstar",
image: "https://raw.githubusercontent.com/BRAVO68WEB/propstar-theme/main/assets/icon.png",
image:
"https://raw.githubusercontent.com/BRAVO68WEB/propstar-theme/main/assets/icon.png",
},
{
name: "vscode-uipack",
description: "VSCode UI Pack created by Bravo68web",
type: "extentionPack",
url: "https://marketplace.visualstudio.com/items?itemName=Bravo68web.vscode-uipack",
image: "https://raw.githubusercontent.com/BRAVO68WEB/vscode-uipack/master/icon.png",
},{
image:
"https://raw.githubusercontent.com/BRAVO68WEB/vscode-uipack/master/icon.png",
},
{
name: "vector-vscode-devpack",
description: "Feature Rich VSCode Extension Pack created by Bravo68web",
type: "extentionPack",
url: "https://marketplace.visualstudio.com/items?itemName=Bravo68web.vector-vscode-devpack",
image: "https://raw.githubusercontent.com/BRAVO68WEB/vector-vscode-devpack/master/icon.png",
}
]
image:
"https://raw.githubusercontent.com/BRAVO68WEB/vector-vscode-devpack/master/icon.png",
},
];
export const qwiklabs = [
{
"title": "Implement DevOps in Google Cloud",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953778",
"image": "https://cdn.qwiklabs.com/RGYLtQXngVN9TmGhbWvmyCTYdky3m3T9SZr7alsMcLg="
title: "Implement DevOps in Google Cloud",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953778",
image:
"https://cdn.qwiklabs.com/RGYLtQXngVN9TmGhbWvmyCTYdky3m3T9SZr7alsMcLg=",
},
{
"title": "Deploy to Kubernetes in Google Cloud",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953549",
"image": "https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc="
title: "Deploy to Kubernetes in Google Cloud",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953549",
image:
"https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc=",
},
{
"title": "Kubernetes in Google Cloud",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953261",
"image": "https://cdn.qwiklabs.com/3cUZzotUhC3sWESWmiP9mofbB+cZrrX5NiKJEGZBS+4="
title: "Kubernetes in Google Cloud",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953261",
image:
"https://cdn.qwiklabs.com/3cUZzotUhC3sWESWmiP9mofbB+cZrrX5NiKJEGZBS+4=",
},
{
"title": "Cloud Architecture",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953041",
"image": "https://cdn.qwiklabs.com/I1ZuP3bdHif3qBweIZrUOJGvCOLDUARPSxhcuWLy3Lk="
title: "Cloud Architecture",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/953041",
image:
"https://cdn.qwiklabs.com/I1ZuP3bdHif3qBweIZrUOJGvCOLDUARPSxhcuWLy3Lk=",
},
{
"title": "Build a Website on Google Cloud",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/952979",
"image": "https://cdn.qwiklabs.com/SsyJLaOyTv+j8kekVYpsQj3XkIEsZ6VrUwAA3TdrZLM="
title: "Build a Website on Google Cloud",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/952979",
image:
"https://cdn.qwiklabs.com/SsyJLaOyTv+j8kekVYpsQj3XkIEsZ6VrUwAA3TdrZLM=",
},
{
"title": "Website on Google Cloud",
"earnDate": "Earned May 21, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/952980",
"image": "https://cdn.qwiklabs.com/SH1cI5cBW/In5JzT/YwBsYDwtoiL8/IQynRtLER9ZXo="
title: "Website on Google Cloud",
earnDate: "Earned May 21, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/952980",
image:
"https://cdn.qwiklabs.com/SH1cI5cBW/In5JzT/YwBsYDwtoiL8/IQynRtLER9ZXo=",
},
{
"title": "Deploy and Manage Cloud Environments with Google Cloud",
"earnDate": "Earned May 17, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/926988",
"image": "https://cdn.qwiklabs.com/z/6rqOh7o7nw7hj/1J/UXN8WSHYy4Zjka1F8Jc3xMBo="
title: "Deploy and Manage Cloud Environments with Google Cloud",
earnDate: "Earned May 17, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/926988",
image:
"https://cdn.qwiklabs.com/z/6rqOh7o7nw7hj/1J/UXN8WSHYy4Zjka1F8Jc3xMBo=",
},
{
"title": "DevOps Essentials",
"earnDate": "Earned May 14, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/912916",
"image": "https://cdn.qwiklabs.com/0kN88wm9Jn/Ts6GNut2s2RhY/2vHs3jKLbL6MxZawqA="
title: "DevOps Essentials",
earnDate: "Earned May 14, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/912916",
image:
"https://cdn.qwiklabs.com/0kN88wm9Jn/Ts6GNut2s2RhY/2vHs3jKLbL6MxZawqA=",
},
{
"title": "Network Performance and Optimization",
"earnDate": "Earned May 14, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/910858",
"image": "https://cdn.qwiklabs.com/9qikCAvRUMlQZkRAj3FqOQN00x3Jk+iA3QtkuhoRGvY="
title: "Network Performance and Optimization",
earnDate: "Earned May 14, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/910858",
image:
"https://cdn.qwiklabs.com/9qikCAvRUMlQZkRAj3FqOQN00x3Jk+iA3QtkuhoRGvY=",
},
{
"title": "Create and Manage Cloud Resources",
"earnDate": "Earned May 14, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/909902",
"image": "https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs="
title: "Create and Manage Cloud Resources",
earnDate: "Earned May 14, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/909902",
image:
"https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs=",
},
{
"title": "[DEPRECATED] Deploying Applications",
"earnDate": "Earned May 14, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/909030",
"image": "https://cdn.qwiklabs.com/1r8IzkgZ2ozf6jLcsKK81SdLwBzAL1f1vyuNmbXyhjE="
title: "[DEPRECATED] Deploying Applications",
earnDate: "Earned May 14, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/909030",
image:
"https://cdn.qwiklabs.com/1r8IzkgZ2ozf6jLcsKK81SdLwBzAL1f1vyuNmbXyhjE=",
},
{
"title": "Google Cloud Computing Foundations: Cloud Computing Fundamentals",
"earnDate": "Earned May 13, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/908100",
"image": "https://cdn.qwiklabs.com/X6BpQ/TB2C53JbD2SZyYekZHUSsJYXbyHeTf0Woudm4="
title: "Google Cloud Computing Foundations: Cloud Computing Fundamentals",
earnDate: "Earned May 13, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/908100",
image:
"https://cdn.qwiklabs.com/X6BpQ/TB2C53JbD2SZyYekZHUSsJYXbyHeTf0Woudm4=",
},
{
"title": "Google Cloud Essentials",
"earnDate": "Earned May 13, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/908015",
"image": "https://cdn.qwiklabs.com/xRejIPM4k6VgI8++2Nz5bFHFx8PwK0nn9oQofkJOsS4="
title: "Google Cloud Essentials",
earnDate: "Earned May 13, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/dd51f4e2-6171-461b-888c-ce954832c72e/badges/908015",
image:
"https://cdn.qwiklabs.com/xRejIPM4k6VgI8++2Nz5bFHFx8PwK0nn9oQofkJOsS4=",
},
{
"title": "Intermediate ML: TensorFlow on Google Cloud",
"earnDate": "Earned Jun 18, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2273803",
"image": "https://cdn.qwiklabs.com/bn3X3Y3rVZT6kQP41qoGm/oHxKWxezmhyXowIZ1ColQ="
title: "Intermediate ML: TensorFlow on Google Cloud",
earnDate: "Earned Jun 18, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2273803",
image:
"https://cdn.qwiklabs.com/bn3X3Y3rVZT6kQP41qoGm/oHxKWxezmhyXowIZ1ColQ=",
},
{
"title": "Intro to ML: Language Processing",
"earnDate": "Earned Jun 18, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2273373",
"image": "https://cdn.qwiklabs.com/pP4Mzjwe7NsGoAvHEldwoJVwPCm0/OQ2EF/3ZrOi4f0="
title: "Intro to ML: Language Processing",
earnDate: "Earned Jun 18, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2273373",
image:
"https://cdn.qwiklabs.com/pP4Mzjwe7NsGoAvHEldwoJVwPCm0/OQ2EF/3ZrOi4f0=",
},
{
"title": "Google Cloud Solutions II: Data and Machine Learning",
"earnDate": "Earned Jun 18, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2271538",
"image": "https://cdn.qwiklabs.com/6QZdnTt3qeI52ubuaZ/UaGVhw2PJNj19D/GkCqHpZYE="
title: "Google Cloud Solutions II: Data and Machine Learning",
earnDate: "Earned Jun 18, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2271538",
image:
"https://cdn.qwiklabs.com/6QZdnTt3qeI52ubuaZ/UaGVhw2PJNj19D/GkCqHpZYE=",
},
{
"title": "Scientific Data Processing",
"earnDate": "Earned Jun 18, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2271060",
"image": "https://cdn.qwiklabs.com/f2K7LIxv+0qv5wRtdV42T89nfuB/6cxXZm+BOIjtsXA="
title: "Scientific Data Processing",
earnDate: "Earned Jun 18, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2271060",
image:
"https://cdn.qwiklabs.com/f2K7LIxv+0qv5wRtdV42T89nfuB/6cxXZm+BOIjtsXA=",
},
{
"title": "Cloud SQL",
"earnDate": "Earned Jun 18, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2270680",
"image": "https://cdn.qwiklabs.com/LVLn2HMOHOqwpHFE+EQFON5KBbhpDJ+s/H3I+26GN6c="
title: "Cloud SQL",
earnDate: "Earned Jun 18, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2270680",
image:
"https://cdn.qwiklabs.com/LVLn2HMOHOqwpHFE+EQFON5KBbhpDJ+s/H3I+26GN6c=",
},
{
"title": "BigQuery for Marketing Analysts",
"earnDate": "Earned Jun 17, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2265875",
"image": "https://cdn.qwiklabs.com/wR2OjCC3caAXgdXzaRuQbgD+TU8pSxwY6m8CZFbef54="
title: "BigQuery for Marketing Analysts",
earnDate: "Earned Jun 17, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2265875",
image:
"https://cdn.qwiklabs.com/wR2OjCC3caAXgdXzaRuQbgD+TU8pSxwY6m8CZFbef54=",
},
{
"title": "Applied Data: Blockchain",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241467",
"image": "https://cdn.qwiklabs.com/gOBgtMPD6Vzqo3FH2fAfN0OmSRGhksEnZLxEldd9XMQ="
title: "Applied Data: Blockchain",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241467",
image:
"https://cdn.qwiklabs.com/gOBgtMPD6Vzqo3FH2fAfN0OmSRGhksEnZLxEldd9XMQ=",
},
{
"title": "NCAA® March Madness®: Bracketology with Google Cloud",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241095",
"image": "https://cdn.qwiklabs.com//eGmk+n644/OaI+/G+xH2DgVBGJ7W4J63youTvLUMDI="
title: "NCAA® March Madness®: Bracketology with Google Cloud",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241095",
image:
"https://cdn.qwiklabs.com//eGmk+n644/OaI+/G+xH2DgVBGJ7W4J63youTvLUMDI=",
},
{
"title": "Create ML Models with BigQuery ML",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241071",
"image": "https://cdn.qwiklabs.com/8jACSR+qgI3p2yem69CxNAyXukexHsSAI5j2W71N+lc="
title: "Create ML Models with BigQuery ML",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2241071",
image:
"https://cdn.qwiklabs.com/8jACSR+qgI3p2yem69CxNAyXukexHsSAI5j2W71N+lc=",
},
{
"title": "BigQuery for Machine Learning",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2240973",
"image": "https://cdn.qwiklabs.com/J9Vhzq3bi1ZkIi0K8XD37yMRozJiWUpgnadzGeyUB6g="
title: "BigQuery for Machine Learning",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2240973",
image:
"https://cdn.qwiklabs.com/J9Vhzq3bi1ZkIi0K8XD37yMRozJiWUpgnadzGeyUB6g=",
},
{
"title": "Build and Optimize Data Warehouses with BigQuery",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2237828",
"image": "https://cdn.qwiklabs.com/pvJAPKZACj9RvUOd1IuetIiUFGEfsuGZZMkQJaI0m20="
title: "Build and Optimize Data Warehouses with BigQuery",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2237828",
image:
"https://cdn.qwiklabs.com/pvJAPKZACj9RvUOd1IuetIiUFGEfsuGZZMkQJaI0m20=",
},
{
"title": "BigQuery for Data Warehousing",
"earnDate": "Earned Jun 14, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2237577",
"image": "https://cdn.qwiklabs.com/8wZI+j18z5J5+HX7wspsQQSjLGGOlbQmx36HCAoLk/k="
title: "BigQuery for Data Warehousing",
earnDate: "Earned Jun 14, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2237577",
image:
"https://cdn.qwiklabs.com/8wZI+j18z5J5+HX7wspsQQSjLGGOlbQmx36HCAoLk/k=",
},
{
"title": "Engineer Data in Google Cloud",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2227376",
"image": "https://cdn.qwiklabs.com/KxYnffjiyPuh7QOen04Gtn09Y4B1Cb3YlWkwOYzCObc="
title: "Engineer Data in Google Cloud",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2227376",
image:
"https://cdn.qwiklabs.com/KxYnffjiyPuh7QOen04Gtn09Y4B1Cb3YlWkwOYzCObc=",
},
{
"title": "Data Engineering",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2223122",
"image": "https://cdn.qwiklabs.com/+CsWnL49dO1EiQScypoKfAJdI8oWEgDWqu5PBt/Wepc="
title: "Data Engineering",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2223122",
image:
"https://cdn.qwiklabs.com/+CsWnL49dO1EiQScypoKfAJdI8oWEgDWqu5PBt/Wepc=",
},
{
"title": "BigQuery Basics for Data Analysts",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221997",
"image": "https://cdn.qwiklabs.com/bWAeRBJNl9ENT+//YwynddPswnVP9o2EtsDpMw4rVHc="
title: "BigQuery Basics for Data Analysts",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221997",
image:
"https://cdn.qwiklabs.com/bWAeRBJNl9ENT+//YwynddPswnVP9o2EtsDpMw4rVHc=",
},
{
"title": "Insights from Data with BigQuery",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221904",
"image": "https://cdn.qwiklabs.com/Ob6sxQipL/04zO87+tO1xGhLBio6RiIYWAfwH+2+02g="
title: "Insights from Data with BigQuery",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221904",
image:
"https://cdn.qwiklabs.com/Ob6sxQipL/04zO87+tO1xGhLBio6RiIYWAfwH+2+02g=",
},
{
"title": "Workspace: Add-ons",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221465",
"image": "https://cdn.qwiklabs.com/6mwQS/shVpmYMnT1DM3N2WGuhTM9prhEU34z5GEtqQw="
title: "Workspace: Add-ons",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221465",
image:
"https://cdn.qwiklabs.com/6mwQS/shVpmYMnT1DM3N2WGuhTM9prhEU34z5GEtqQw=",
},
{
"title": "DEPRECATED IoT in the Google Cloud",
"earnDate": "Earned Jun 12, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221184",
"image": "https://cdn.qwiklabs.com/4DkSNTJag2NYO5e+fBb28zb/f1VlN6fToz56Dedd8lQ="
title: "DEPRECATED IoT in the Google Cloud",
earnDate: "Earned Jun 12, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2221184",
image:
"https://cdn.qwiklabs.com/4DkSNTJag2NYO5e+fBb28zb/f1VlN6fToz56Dedd8lQ=",
},
{
"title": "Cloud Development",
"earnDate": "Earned Jun 11, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2220255",
"image": "https://cdn.qwiklabs.com/tTcM/RANi25XfZdZfnAHBAPcD41qMCtwV6qnXwlH1ek="
title: "Cloud Development",
earnDate: "Earned Jun 11, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2220255",
image:
"https://cdn.qwiklabs.com/tTcM/RANi25XfZdZfnAHBAPcD41qMCtwV6qnXwlH1ek=",
},
{
"title": "Serverless Cloud Run Development",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2202988",
"image": "https://cdn.qwiklabs.com/sNVqiyyYGBc7IfiWK6bF61rRXvzAtqUUYpM7bZkv8TU="
title: "Serverless Cloud Run Development",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2202988",
image:
"https://cdn.qwiklabs.com/sNVqiyyYGBc7IfiWK6bF61rRXvzAtqUUYpM7bZkv8TU=",
},
{
"title": "Google Cloud Run Serverless Workshop",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2202734",
"image": "https://cdn.qwiklabs.com/lNja5KgIzUzVOwxZlR8/jM2w8LOIP4fkL2NN+xzCwPw="
title: "Google Cloud Run Serverless Workshop",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2202734",
image:
"https://cdn.qwiklabs.com/lNja5KgIzUzVOwxZlR8/jM2w8LOIP4fkL2NN+xzCwPw=",
},
{
"title": "Exploring APIs",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2199226",
"image": "https://cdn.qwiklabs.com/Fcv56iHFhUUJ55ybE7WS0UNUNA0JbhYeqFvmkpFhvK8="
title: "Exploring APIs",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2199226",
image:
"https://cdn.qwiklabs.com/Fcv56iHFhUUJ55ybE7WS0UNUNA0JbhYeqFvmkpFhvK8=",
},
{
"title": "Serverless Firebase Development",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2198596",
"image": "https://cdn.qwiklabs.com/MlsX6CARxRgoB1amY8s4of0erho3BhLX+kz3lBQYthY="
title: "Serverless Firebase Development",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2198596",
image:
"https://cdn.qwiklabs.com/MlsX6CARxRgoB1amY8s4of0erho3BhLX+kz3lBQYthY=",
},
{
"title": "Build Apps & Websites with Firebase",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2198432",
"image": "https://cdn.qwiklabs.com/JdUu8WCGmvzBQnppDxG/n1IoguiHNd0O/tdP3yWyv4Q="
title: "Build Apps & Websites with Firebase",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2198432",
image:
"https://cdn.qwiklabs.com/JdUu8WCGmvzBQnppDxG/n1IoguiHNd0O/tdP3yWyv4Q=",
},
{
"title": "Build Interactive Apps with Google Assistant",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197701",
"image": "https://cdn.qwiklabs.com/wqxQz1fDGoAkpW/DDijTordRtWY+Urol55r00wRH0Cc="
title: "Build Interactive Apps with Google Assistant",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197701",
image:
"https://cdn.qwiklabs.com/wqxQz1fDGoAkpW/DDijTordRtWY+Urol55r00wRH0Cc=",
},
{
"title": "OK Google: Build Interactive Apps with Google Assistant",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197492",
"image": "https://cdn.qwiklabs.com/iN1Y1aBXjPPUZgDdv9GtQCf/Bp0q3U/Jg9uWO6RMKoc="
title: "OK Google: Build Interactive Apps with Google Assistant",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197492",
image:
"https://cdn.qwiklabs.com/iN1Y1aBXjPPUZgDdv9GtQCf/Bp0q3U/Jg9uWO6RMKoc=",
},
{
"title": "Google Developer Essentials",
"earnDate": "Earned Jun 9, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197353",
"image": "https://cdn.qwiklabs.com/V0I18jLPjGRqhwrDNn+I4YCq5rPoGX4lvg5DjqgwcJ0="
title: "Google Developer Essentials",
earnDate: "Earned Jun 9, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2197353",
image:
"https://cdn.qwiklabs.com/V0I18jLPjGRqhwrDNn+I4YCq5rPoGX4lvg5DjqgwcJ0=",
},
{
"title": "Cloud Architecture: Design, Implement, and Manage",
"earnDate": "Earned Jun 8, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2196594",
"image": "https://cdn.qwiklabs.com/p3cSmWqrO0+x2NuFSET4XD1M/EMR24a7To+oAw1Q9S8="
title: "Cloud Architecture: Design, Implement, and Manage",
earnDate: "Earned Jun 8, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2196594",
image:
"https://cdn.qwiklabs.com/p3cSmWqrO0+x2NuFSET4XD1M/EMR24a7To+oAw1Q9S8=",
},
{
"title": "Monitor and Log with Google Cloud Operations Suite",
"earnDate": "Earned May 23, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2054787",
"image": "https://cdn.qwiklabs.com/ht3dxzalukepnESNH85pX/5ORl+yOrOBH2DoMJEoA7k="
title: "Monitor and Log with Google Cloud Operations Suite",
earnDate: "Earned May 23, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2054787",
image:
"https://cdn.qwiklabs.com/ht3dxzalukepnESNH85pX/5ORl+yOrOBH2DoMJEoA7k=",
},
{
"title": "Build a Website on Google Cloud",
"earnDate": "Earned May 17, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2012479",
"image": "https://cdn.qwiklabs.com/SsyJLaOyTv+j8kekVYpsQj3XkIEsZ6VrUwAA3TdrZLM="
title: "Build a Website on Google Cloud",
earnDate: "Earned May 17, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2012479",
image:
"https://cdn.qwiklabs.com/SsyJLaOyTv+j8kekVYpsQj3XkIEsZ6VrUwAA3TdrZLM=",
},
{
"title": "Baseline: Deploy & Develop",
"earnDate": "Earned May 16, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2004846",
"image": "https://cdn.qwiklabs.com/hYiMA4VF+4Ud25kDvrO6jCax5PcuNyrURzlom/B3Emw="
title: "Baseline: Deploy & Develop",
earnDate: "Earned May 16, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2004846",
image:
"https://cdn.qwiklabs.com/hYiMA4VF+4Ud25kDvrO6jCax5PcuNyrURzlom/B3Emw=",
},
{
"title": "Website on Google Cloud",
"earnDate": "Earned May 16, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2004513",
"image": "https://cdn.qwiklabs.com/SH1cI5cBW/In5JzT/YwBsYDwtoiL8/IQynRtLER9ZXo="
title: "Website on Google Cloud",
earnDate: "Earned May 16, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/2004513",
image:
"https://cdn.qwiklabs.com/SH1cI5cBW/In5JzT/YwBsYDwtoiL8/IQynRtLER9ZXo=",
},
{
"title": "Google Cloud's Operations Suite",
"earnDate": "Earned May 6, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1923812",
"image": "https://cdn.qwiklabs.com/dm0Hz9Vg2Nvvrsq3y1aCFz4xP1FoI6srK/qVJDqfdHo="
title: "Google Cloud's Operations Suite",
earnDate: "Earned May 6, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1923812",
image:
"https://cdn.qwiklabs.com/dm0Hz9Vg2Nvvrsq3y1aCFz4xP1FoI6srK/qVJDqfdHo=",
},
{
"title": "Perform Foundational Infrastructure Tasks in Google Cloud",
"earnDate": "Earned May 2, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900901",
"image": "https://cdn.qwiklabs.com/SOUHCWvev6HmfC5QztXJd+CkSK8+3WGWg+F/ww/fqXA="
title: "Perform Foundational Infrastructure Tasks in Google Cloud",
earnDate: "Earned May 2, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900901",
image:
"https://cdn.qwiklabs.com/SOUHCWvev6HmfC5QztXJd+CkSK8+3WGWg+F/ww/fqXA=",
},
{
"title": "Understanding Your Google Cloud Costs",
"earnDate": "Earned May 2, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900756",
"image": "https://cdn.qwiklabs.com/2GxKzUeZdj8jB1tlIej4wSVJ2V2INW5ea39KqWuRZzE="
title: "Understanding Your Google Cloud Costs",
earnDate: "Earned May 2, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900756",
image:
"https://cdn.qwiklabs.com/2GxKzUeZdj8jB1tlIej4wSVJ2V2INW5ea39KqWuRZzE=",
},
{
"title": "Build and Secure Networks in Google Cloud",
"earnDate": "Earned May 2, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900473",
"image": "https://cdn.qwiklabs.com/fUkNC8Ujw5C3fdqhXntXppEGL+upKOgvE42GWf4Oo68="
title: "Build and Secure Networks in Google Cloud",
earnDate: "Earned May 2, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900473",
image:
"https://cdn.qwiklabs.com/fUkNC8Ujw5C3fdqhXntXppEGL+upKOgvE42GWf4Oo68=",
},
{
"title": "Google Cloud Solutions I: Scaling Your Infrastructure",
"earnDate": "Earned May 2, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900095",
"image": "https://cdn.qwiklabs.com/ZJMZcere2fWYjqyr7gATsfmo9p7t2Hx/Gg0CCY3gLLU="
title: "Google Cloud Solutions I: Scaling Your Infrastructure",
earnDate: "Earned May 2, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1900095",
image:
"https://cdn.qwiklabs.com/ZJMZcere2fWYjqyr7gATsfmo9p7t2Hx/Gg0CCY3gLLU=",
},
{
"title": "Networking Fundamentals in Google Cloud ",
"earnDate": "Earned May 2, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1899984",
"image": "https://cdn.qwiklabs.com/07Ua8YRAr/1RypstXT/raoI72q+0IDzPoSsdnBfBmzY="
title: "Networking Fundamentals in Google Cloud ",
earnDate: "Earned May 2, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1899984",
image:
"https://cdn.qwiklabs.com/07Ua8YRAr/1RypstXT/raoI72q+0IDzPoSsdnBfBmzY=",
},
{
"title": "Implement DevOps in Google Cloud",
"earnDate": "Earned May 1, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1890814",
"image": "https://cdn.qwiklabs.com/RGYLtQXngVN9TmGhbWvmyCTYdky3m3T9SZr7alsMcLg="
title: "Implement DevOps in Google Cloud",
earnDate: "Earned May 1, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1890814",
image:
"https://cdn.qwiklabs.com/RGYLtQXngVN9TmGhbWvmyCTYdky3m3T9SZr7alsMcLg=",
},
{
"title": "Deploy to Kubernetes in Google Cloud",
"earnDate": "Earned May 1, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1890209",
"image": "https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc="
title: "Deploy to Kubernetes in Google Cloud",
earnDate: "Earned May 1, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1890209",
image:
"https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc=",
},
{
"title": "Set Up and Configure a Cloud Environment in Google Cloud",
"earnDate": "Earned May 1, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1889873",
"image": "https://cdn.qwiklabs.com/o/N83w0HEfVQYE3IF6A8C/BHph2rF/fkHlYZ51DWOr4="
title: "Set Up and Configure a Cloud Environment in Google Cloud",
earnDate: "Earned May 1, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1889873",
image:
"https://cdn.qwiklabs.com/o/N83w0HEfVQYE3IF6A8C/BHph2rF/fkHlYZ51DWOr4=",
},
{
"title": "DevOps Essentials",
"earnDate": "Earned Apr 27, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1866507",
"image": "https://cdn.qwiklabs.com/0kN88wm9Jn/Ts6GNut2s2RhY/2vHs3jKLbL6MxZawqA="
title: "DevOps Essentials",
earnDate: "Earned Apr 27, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1866507",
image:
"https://cdn.qwiklabs.com/0kN88wm9Jn/Ts6GNut2s2RhY/2vHs3jKLbL6MxZawqA=",
},
{
"title": "Kubernetes in Google Cloud",
"earnDate": "Earned Apr 27, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1866353",
"image": "https://cdn.qwiklabs.com/3cUZzotUhC3sWESWmiP9mofbB+cZrrX5NiKJEGZBS+4="
title: "Kubernetes in Google Cloud",
earnDate: "Earned Apr 27, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1866353",
image:
"https://cdn.qwiklabs.com/3cUZzotUhC3sWESWmiP9mofbB+cZrrX5NiKJEGZBS+4=",
},
{
"title": "Cloud Architecture",
"earnDate": "Earned Apr 27, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1863569",
"image": "https://cdn.qwiklabs.com/I1ZuP3bdHif3qBweIZrUOJGvCOLDUARPSxhcuWLy3Lk="
title: "Cloud Architecture",
earnDate: "Earned Apr 27, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1863569",
image:
"https://cdn.qwiklabs.com/I1ZuP3bdHif3qBweIZrUOJGvCOLDUARPSxhcuWLy3Lk=",
},
{
"title": "Cloud Engineering",
"earnDate": "Earned Apr 26, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862677",
"image": "https://cdn.qwiklabs.com/kuBgucU/wbX9lkaNZfxQERQoa411Wr1xJ88uoYbpgT0="
title: "Cloud Engineering",
earnDate: "Earned Apr 26, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862677",
image:
"https://cdn.qwiklabs.com/kuBgucU/wbX9lkaNZfxQERQoa411Wr1xJ88uoYbpgT0=",
},
{
"title": "Create and Manage Cloud Resources",
"earnDate": "Earned Apr 26, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862537",
"image": "https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs="
title: "Create and Manage Cloud Resources",
earnDate: "Earned Apr 26, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862537",
image:
"https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs=",
},
{
"title": "Baseline: Infrastructure",
"earnDate": "Earned Apr 26, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862458",
"image": "https://cdn.qwiklabs.com/Eg/SbOy66StYJSJgDWYLrHAMVb/28ZfyndLzHYtQPeA="
title: "Baseline: Infrastructure",
earnDate: "Earned Apr 26, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862458",
image:
"https://cdn.qwiklabs.com/Eg/SbOy66StYJSJgDWYLrHAMVb/28ZfyndLzHYtQPeA=",
},
{
"title": "Google Cloud Essentials",
"earnDate": "Earned Apr 26, 2022 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862284",
"image": "https://cdn.qwiklabs.com/xRejIPM4k6VgI8++2Nz5bFHFx8PwK0nn9oQofkJOsS4="
title: "Google Cloud Essentials",
earnDate: "Earned Apr 26, 2022 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/d541db65-d9a1-4e89-9c16-0f2f98de84a4/badges/1862284",
image:
"https://cdn.qwiklabs.com/xRejIPM4k6VgI8++2Nz5bFHFx8PwK0nn9oQofkJOsS4=",
},
{
"title": "Engineer Data in Google Cloud",
"earnDate": "Earned Oct 12, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1336298",
"image": "https://cdn.qwiklabs.com/KxYnffjiyPuh7QOen04Gtn09Y4B1Cb3YlWkwOYzCObc="
title: "Engineer Data in Google Cloud",
earnDate: "Earned Oct 12, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1336298",
image:
"https://cdn.qwiklabs.com/KxYnffjiyPuh7QOen04Gtn09Y4B1Cb3YlWkwOYzCObc=",
},
{
"title": "Insights from Data with BigQuery",
"earnDate": "Earned Oct 10, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1324551",
"image": "https://cdn.qwiklabs.com/Ob6sxQipL/04zO87+tO1xGhLBio6RiIYWAfwH+2+02g="
title: "Insights from Data with BigQuery",
earnDate: "Earned Oct 10, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1324551",
image:
"https://cdn.qwiklabs.com/Ob6sxQipL/04zO87+tO1xGhLBio6RiIYWAfwH+2+02g=",
},
{
"title": "Deploy and Manage Cloud Environments with Google Cloud",
"earnDate": "Earned Oct 10, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1322744",
"image": "https://cdn.qwiklabs.com/z/6rqOh7o7nw7hj/1J/UXN8WSHYy4Zjka1F8Jc3xMBo="
title: "Deploy and Manage Cloud Environments with Google Cloud",
earnDate: "Earned Oct 10, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1322744",
image:
"https://cdn.qwiklabs.com/z/6rqOh7o7nw7hj/1J/UXN8WSHYy4Zjka1F8Jc3xMBo=",
},
{
"title": "Build and Secure Networks in Google Cloud",
"earnDate": "Earned Oct 8, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1300339",
"image": "https://cdn.qwiklabs.com/fUkNC8Ujw5C3fdqhXntXppEGL+upKOgvE42GWf4Oo68="
title: "Build and Secure Networks in Google Cloud",
earnDate: "Earned Oct 8, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1300339",
image:
"https://cdn.qwiklabs.com/fUkNC8Ujw5C3fdqhXntXppEGL+upKOgvE42GWf4Oo68=",
},
{
"title": "Deploy to Kubernetes in Google Cloud",
"earnDate": "Earned Oct 7, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1295426",
"image": "https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc="
title: "Deploy to Kubernetes in Google Cloud",
earnDate: "Earned Oct 7, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1295426",
image:
"https://cdn.qwiklabs.com/SFfmObf8ridNvpy2+gn/azAh3SR4tXFTBhdKpT1Ocrc=",
},
{
"title": "Set Up and Configure a Cloud Environment in Google Cloud",
"earnDate": "Earned Oct 6, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1284996",
"image": "https://cdn.qwiklabs.com/o/N83w0HEfVQYE3IF6A8C/BHph2rF/fkHlYZ51DWOr4="
title: "Set Up and Configure a Cloud Environment in Google Cloud",
earnDate: "Earned Oct 6, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1284996",
image:
"https://cdn.qwiklabs.com/o/N83w0HEfVQYE3IF6A8C/BHph2rF/fkHlYZ51DWOr4=",
},
{
"title": "Perform Foundational Infrastructure Tasks in Google Cloud",
"earnDate": "Earned Oct 4, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1267552",
"image": "https://cdn.qwiklabs.com/SOUHCWvev6HmfC5QztXJd+CkSK8+3WGWg+F/ww/fqXA="
title: "Perform Foundational Infrastructure Tasks in Google Cloud",
earnDate: "Earned Oct 4, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1267552",
image:
"https://cdn.qwiklabs.com/SOUHCWvev6HmfC5QztXJd+CkSK8+3WGWg+F/ww/fqXA=",
},
{
"title": "Integrate with Machine Learning APIs",
"earnDate": "Earned Oct 2, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1252426",
"image": "https://cdn.qwiklabs.com/h/CMZVTG3/g7X2zuSD5nF2/GTVTrwrgQ6cWd6G6THFg="
title: "Integrate with Machine Learning APIs",
earnDate: "Earned Oct 2, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1252426",
image:
"https://cdn.qwiklabs.com/h/CMZVTG3/g7X2zuSD5nF2/GTVTrwrgQ6cWd6G6THFg=",
},
{
"title": "DEPRECATED Explore Machine Learning Models with Explainable AI",
"earnDate": "Earned Sep 27, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1221140",
"image": "https://cdn.qwiklabs.com/0bSya3/5VLUuF1UhSN5g8ARZbhzm24GCBuxZ/NeuSzw="
title: "DEPRECATED Explore Machine Learning Models with Explainable AI",
earnDate: "Earned Sep 27, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1221140",
image:
"https://cdn.qwiklabs.com/0bSya3/5VLUuF1UhSN5g8ARZbhzm24GCBuxZ/NeuSzw=",
},
{
"title": "Perform Foundational Data, ML, and AI Tasks in Google Cloud",
"earnDate": "Earned Sep 26, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1212441",
"image": "https://cdn.qwiklabs.com/+fUNwBxkIaRRdkzbDGS6GW+BbMbyXO6F+Jg+3QrSXeA="
title: "Perform Foundational Data, ML, and AI Tasks in Google Cloud",
earnDate: "Earned Sep 26, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1212441",
image:
"https://cdn.qwiklabs.com/+fUNwBxkIaRRdkzbDGS6GW+BbMbyXO6F+Jg+3QrSXeA=",
},
{
"title": "Create and Manage Cloud Resources",
"earnDate": "Earned Sep 25, 2021 EDT",
"url": "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1208738",
"image": "https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs="
}
]
title: "Create and Manage Cloud Resources",
earnDate: "Earned Sep 25, 2021 EDT",
url: "https://www.cloudskillsboost.google/public_profiles/293e000c-f58c-4119-b60b-e0e7a769e61f/badges/1208738",
image:
"https://cdn.qwiklabs.com/qigZkhvg9KqENz/VGMdHGLby/UQ+hr1id2Cbp0GxSvs=",
},
];

View File

@ -7,7 +7,7 @@ function MyPortfolio({ Component, pageProps }) {
{/* <CustomCursor /> */}
<Component {...pageProps} />
</>
)
);
}
export default MyPortfolio;

View File

@ -1,27 +1,26 @@
import Document, { Html, Head, Main, NextScript } from 'next/document'
import { ServerStyleSheet } from 'styled-components'
import Nav from '../components/nav'
import Document, { Html, Head, Main, NextScript } from "next/document";
import { ServerStyleSheet } from "styled-components";
import Nav from "../components/nav";
export default class MyDocument extends Document {
static async getInitialProps(ctx) {
const sheet = new ServerStyleSheet()
const originalRenderPage = ctx.renderPage
const sheet = new ServerStyleSheet();
const originalRenderPage = ctx.renderPage;
try {
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) =>
sheet.collectStyles(<App {...props} />),
})
});
const initialProps = await Document.getInitialProps(ctx)
const initialProps = await Document.getInitialProps(ctx);
return {
...initialProps,
styles: [initialProps.styles, sheet.getStyleElement()],
}
};
} finally {
sheet.seal()
sheet.seal();
}
}
@ -38,7 +37,10 @@ export default class MyDocument extends Document {
content="bravo, bravo68web, Jyotirmoy, Bandyopadhayaya, dev, web, Full Stack Developer, DevOps, gcp, linux, server, api, rest, lpu"
/>
<meta name="language" content="EN" />
<meta name="author" content="Jyotirmoy Bandyopadhayaya | Bravo68web" />
<meta
name="author"
content="Jyotirmoy Bandyopadhayaya | Bravo68web"
/>
<meta
name="publisher"
content="Jyotirmoy Bandyopadhayaya | Bravo68web"
@ -57,6 +59,6 @@ export default class MyDocument extends Document {
<NextScript />
</body>
</Html>
)
);
}
}

View File

@ -15,13 +15,11 @@ export default handler.get(async (req, res) => {
// Writing static pages to sitemap
sitemap.write({ url: "/", changefreq: "daily", priority: 1 });
sitemap.write({ url: "/art/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/stats/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/contact/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/resume/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/about/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/vscode/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/extras/", changefreq: "daily", priority: 0.8 });
sitemap.write({ url: "/projects/", changefreq: "daily", priority: 0.8 });
sitemap.end();

View File

@ -8,8 +8,8 @@ export default function Home() {
<div>
<Head>
<title>
VS Code Extensions | Jyotirmoy Bandyopadhayaya | Full Stack Web Developer and
DevOps Engineer
VS Code Extensions | Jyotirmoy Bandyopadhayaya | Full Stack Web
Developer and DevOps Engineer
</title>
</Head>
<Nav />

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://itsmebravo.dev/</loc><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://itsmebravo.dev/art/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/stats/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/contact/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/resume/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/about/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/vscode/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/extras/</loc><changefreq>daily</changefreq><priority>0.8</priority></url></urlset>
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://itsmebravo.dev/</loc><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://itsmebravo.dev/stats/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/contact/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/resume/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/about/</loc><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://itsmebravo.dev/projects/</loc><changefreq>daily</changefreq><priority>0.8</priority></url></urlset>