├── .eslintrc.json ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── profilebadge │ │ └── page.js ├── fonts │ └── Product Sans Regular.ttf └── components │ ├── TableBody.js │ ├── Speedometer.js │ ├── TableRow.js │ ├── BadgeComponent.js │ ├── Table.Index.js │ ├── DownloadBadge.js │ └── Uploadpage.js ├── jsconfig.json ├── next.config.js ├── postcss.config.js ├── public ├── assets │ ├── cloudLg.png │ ├── gdscfavi.png │ ├── template.png │ ├── webpage.png │ ├── gdsc-logo.png │ ├── gdsc-uvpce.png │ ├── googleLogo.png │ └── Screenshot 2023-09-12 191408.png ├── next.svg └── data.json ├── .gitignore ├── package.json ├── tailwind.config.js └── README.md /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/cloudLg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/cloudLg.png -------------------------------------------------------------------------------- /public/assets/gdscfavi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/gdscfavi.png -------------------------------------------------------------------------------- /public/assets/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/template.png -------------------------------------------------------------------------------- /public/assets/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/webpage.png -------------------------------------------------------------------------------- /public/assets/gdsc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/gdsc-logo.png -------------------------------------------------------------------------------- /public/assets/gdsc-uvpce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/gdsc-uvpce.png -------------------------------------------------------------------------------- /public/assets/googleLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/googleLogo.png -------------------------------------------------------------------------------- /src/fonts/Product Sans Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/src/fonts/Product Sans Regular.ttf -------------------------------------------------------------------------------- /public/assets/Screenshot 2023-09-12 191408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDSC-UVPCE/Google-Cloud-Study-Jams/HEAD/public/assets/Screenshot 2023-09-12 191408.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | * { 6 | user-select: none; 7 | } 8 | 9 | .uploadSec { 10 | box-shadow: 0px 0px 21px 0px rgba(118, 159, 255, 0.3); 11 | } 12 | 13 | .completion { 14 | animation-name: progressrate; 15 | animation-delay: 0.5s; 16 | animation-duration: 2s; 17 | animation-fill-mode: forwards; 18 | } 19 | 20 | @keyframes progressrate { 21 | 0% { 22 | width: 0%; 23 | } 24 | 25 | 100% { 26 | width: 100%; 27 | } 28 | 29 | 30 | 31 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gdsc_cloudevent_leaderboard", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@vercel/analytics": "^1.0.2", 13 | "autoprefixer": "10.4.15", 14 | "eslint": "8.49.0", 15 | "eslint-config-next": "13.4.19", 16 | "html2canvas": "^1.4.1", 17 | "next": "13.4.19", 18 | "postcss": "8.4.29", 19 | "react": "18.2.0", 20 | "react-dom": "18.2.0", 21 | "tailwindcss": "3.3.3" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/components/TableBody.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import TableRow from './TableRow' 3 | 4 | 5 | function TableBody({ Participationdata, 6 | setParticipationdata }) { 7 | // console.log(Participationdata) 8 | 9 | 10 | return ( 11 | 12 | {Participationdata.length > 0 ? Participationdata.map((participant, index) => { 13 | 14 | return 15 | }) :
No Data Found
} 16 | 17 | ) 18 | } 19 | 20 | export default TableBody -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | screens: { 10 | 'mob': {'min': '300px', 'max': '900px'}, 11 | }, 12 | extend: { 13 | backgroundImage: { 14 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 15 | 'gradient-conic': 16 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 17 | }, 18 | }, 19 | }, 20 | plugins: [], 21 | } 22 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | import { Analytics } from '@vercel/analytics/react'; 4 | 5 | 6 | const inter = Inter({ subsets: ['latin'] }); 7 | 8 | export const metadata = { 9 | title: "GDSC UVPCE", 10 | image: "https://raw.githubusercontent.com/fenilmodi00/GCCP-Jams/main/public/assets/Screenshot%202023-09-12%20191408.png", 11 | type: "website", 12 | description: "This is the leaderboard for the GDSC UVPCE GCCP Jams.", 13 | keywords: ["gccp", "jams", "uvpce", "gdscuvpce"], 14 | robots: "index,follow", 15 | 16 | // "og:title": "GDSC UVPCE GCCP Leaderboard", 17 | // "og:image": "https://raw.githubusercontent.com/fenilmodi00/GCCP-Jams/main/public/assets/Screenshot%202023-09-12%20191408.png", 18 | // "og:description": "This is the leaderboard for the GDSC UVPCE GCCP Jams.", 19 | // "twitter:card": "summary_large_image", 20 | // "twitter:title": "GDSC UVPCE GCCP Leaderboard", 21 | // "twitter:description": "This is the leaderboard for the GDSC UVPCE GCCP Jams.", 22 | // "twitter:image": "https://raw.githubusercontent.com/fenilmodi00/GCCP-Jams/main/public/assets/Screenshot%202023-09-12%20191408.png", 23 | // "twitter:site": "@gdscuvpce" 24 | // 25 | 26 | 27 | } 28 | 29 | export default function RootLayout({ children }) { 30 | return ( 31 | 32 | 33 | 34 | 35 | 36 | 37 | {children} 38 | 39 | 40 | 41 | 42 | ) 43 | } 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Google Cloud Study Jams Leaderboard 3 | 4 | ## Getting Started 5 | 6 | To start developing or running this project locally, follow these steps: 7 | 8 | 1. Clone the repository to your local machine: 9 | 10 | ```bash 11 | git clone https://github.com/GDSC-UVPCE/Google-Cloud-Study-Jams.git 12 | ``` 13 | 14 | 2. Navigate to the project directory: 15 | 16 | ```bash 17 | cd Google-Cloud-Study-Jams 18 | ``` 19 | 20 | 3. Initialize npm: 21 | 22 | ```bash 23 | npm install 24 | ``` 25 | 26 | 4. Start the project locally: 27 | 28 | ```bash 29 | npm run dev 30 | ``` 31 | 32 | ![image](https://github.com/fenilmodi00/GCCP-Jams/assets/85280060/75f262e7-da90-4a89-b966-67b3ade7746f) 33 | 34 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 35 | 36 | ## Updating Data 37 | 38 | To update the data used by your project, follow these steps: 39 | 40 | 1. Locate the `public/data.json` file in your project directory. You can access it [here](https://github.com/GDSC-UVPCE/GCCP-Jams/blob/main/public/data.json). 41 | 42 | 2. Replace the contents of `data.json` with your own JSON data. You can manually edit the file or use a tool to generate the JSON data from other sources. 43 | 44 | 3. Save the changes to `data.json`. 45 | 46 | That's it! Your project should now use the updated data. 47 | 48 | ### how to convert CSV data to JSON 49 | 1. Download file in CSV format 50 | 51 | 52 | ![image](https://github.com/fenilmodi00/Google-Cloud-Study-Jams/assets/85280060/74856652-2f81-4bd1-921f-9ccbfd7ad10a) 53 | 2. upload file CSV to this website 54 | 55 | [https://csvjson.com/csv2json] 56 | ![image](https://github.com/fenilmodi00/Google-Cloud-Study-Jams/assets/85280060/4ae6b46a-6d6d-48e0-8c52-27d9c6b2a21f) 57 | 3. Convert data 58 | 59 | 60 | ![image](https://github.com/fenilmodi00/Google-Cloud-Study-Jams/assets/85280060/a62d1cdd-c9ea-435f-9ca9-10effa05087f) 61 | 7. Copy all converted JSON data 62 | 63 | 64 | ![image](https://github.com/fenilmodi00/Google-Cloud-Study-Jams/assets/85280060/e7cbf853-ab15-412d-8877-37abd3f7a89c) 65 | 9. paste JSON data into public/data.json file 66 | 67 | 68 | ## Contributors 69 | 70 | Contributions are welcome! 71 |
72 | 73 |
74 | 75 |
76 |
77 | -------------------------------------------------------------------------------- /src/components/Speedometer.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | import React, { useEffect, useState } from 'react'; 4 | 5 | function Speedometer({ completion }) { 6 | const [animationValue, setAnimationValue] = useState(0); 7 | 8 | useEffect(() => { 9 | // Animate the speedometer when 'completion' prop changes 10 | const animationDuration = 2000; // You can adjust the duration 11 | let startValue = 0; 12 | const endValue = completion; 13 | 14 | const animationInterval = setInterval(() => { 15 | if (startValue >= endValue) { 16 | clearInterval(animationInterval); 17 | } else { 18 | startValue += 1; 19 | setAnimationValue(startValue); 20 | } 21 | }, (animationDuration / (endValue - startValue)) * 1); 22 | 23 | return () => { 24 | clearInterval(animationInterval); 25 | }; 26 | }, [completion]); 27 | 28 | return ( 29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | 38 |
39 | 40 | 46 | 47 | 51 | 52 | 53 |
54 |
55 |

56 | {animationValue > 40 57 | ? animationValue > 60 58 | ? animationValue > 80 59 | ? 'Outstanding' 60 | : 'Level 1' 61 | : 'Level 2' 62 | : 'Level 3'} 63 |

64 |

{`${animationValue}`}

65 |
66 |
67 | ); 68 | } 69 | 70 | export default Speedometer; 71 | -------------------------------------------------------------------------------- /src/components/TableRow.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | function TableRow({ participant }) { 4 | // console.log(participant) 5 | return ( 6 | 7 | {participant["Student Name"]} 8 | {participant["Total Completions of both Pathways"] == "Yes"?'🏅':''} 9 | 10 | 11 | {/* {participant["Student Email"]} */} 12 | 13 | 14 |
20 | {participant["Redemption Status"] == "Yes" ? "Done" : "Error !"} 21 |
22 | 23 | 24 | 25 |
32 | {participant["Institution"] == 33 | "U. V. Patel College of Engineering - Mehsana" 34 | ? "UVPCE" 35 | : "Other"} 36 |
37 | 38 | 39 | 40 | 41 |
47 | {participant["Total Completions of both Pathways"] == "Yes" 48 | ? "Yes" 49 | : "No !"} 50 |
51 | 52 | 53 | 54 | {participant["# of Courses Completed"]} 55 | 56 | 57 | 58 | {participant["# of Skill Badges Completed"]} 59 | 60 | 61 | 62 | {participant["# of GenAI Game Completed"]} 63 | 64 | 65 | 66 | {/* 67 | {participant["Enrolment Date & Time"]} 68 | */} 69 | 70 | {/* {participant["Enrolment Status"]} */} 71 | 72 | {/* 73 | {participant["Google Cloud Skills Boost Profile URL"]} 74 | */} 75 | 76 | 77 | 78 | 79 | ); 80 | } 81 | 82 | export default TableRow; 83 | -------------------------------------------------------------------------------- /src/components/BadgeComponent.js: -------------------------------------------------------------------------------- 1 | // components/BadgeComponent.js 2 | 3 | import React, { Component } from 'react'; 4 | import gdgImage from '@/assets/img/badge.png'; 5 | 6 | 7 | class BadgeComponent extends Component { 8 | constructor(props) { 9 | super(props); 10 | this.state = { 11 | downloadbtn: false, 12 | canvas: null, 13 | shape: "original", 14 | image: "", 15 | shapeData: "original", 16 | ctx: null, 17 | banner: null 18 | }; 19 | } 20 | 21 | componentDidMount() { 22 | document.title = "Badges | DevFest India 2023"; 23 | this.canvas = document.querySelector("canvas"); 24 | this.ctx = this.canvas.getContext("2d"); 25 | this.image = ""; 26 | this.shape = "original"; 27 | this.setState({ downloadbtn: false }); 28 | document.getElementById("download").style.visibility = "hidden"; 29 | this.banner = new Image(); 30 | this.banner.src = gdgImage; 31 | this.banner.onload = () => { 32 | this.draw(); 33 | }; 34 | } 35 | 36 | upload = (e) => { 37 | if (e && e.target.files && e.target.files[0]) { 38 | const reader = new FileReader(); 39 | reader.onload = (event) => { 40 | const img = new Image(); 41 | img.onload = () => { 42 | this.setState({ image: img }); 43 | this.draw(); 44 | }; 45 | img.src = event.target.result; 46 | }; 47 | reader.readAsDataURL(e.target.files[0]); 48 | } 49 | }; 50 | 51 | uploadImage = () => { 52 | document.querySelector("input.profile-input").click(); 53 | this.setState({ downloadbtn: true }); 54 | document.getElementById("download").style.visibility = "visible"; 55 | }; 56 | 57 | changeShape = (type) => { 58 | this.setState({ shape: type }); 59 | this.draw(); 60 | }; 61 | 62 | draw = () => { 63 | const { image, shape, canvas, ctx, banner } = this.state; 64 | if (image) { 65 | switch (shape) { 66 | case "original": { 67 | canvas.width = image.width; 68 | canvas.height = image.height; 69 | ctx.drawImage(image, 0, 0); 70 | break; 71 | } 72 | default: { 73 | canvas.width = 2500; 74 | canvas.height = 2500; 75 | const hRatio = canvas.width / image.width; 76 | const vRatio = canvas.height / image.height; 77 | const ratio = Math.max(hRatio, vRatio); 78 | const x = (canvas.width - image.width * ratio) / 2; 79 | const y = (canvas.height - image.height * ratio) / 2; 80 | ctx.drawImage( 81 | image, 82 | 0, 83 | 0, 84 | image.width, 85 | image.height, 86 | x, 87 | y, 88 | image.width * ratio, 89 | image.height * ratio 90 | ); 91 | break; 92 | } 93 | } 94 | } else { 95 | ctx.canvas.width = 2500; 96 | ctx.canvas.height = 2500; 97 | ctx.fillStyle = "#fff"; 98 | ctx.fillRect(0, 0, canvas.width, canvas.height); 99 | } 100 | const height = (banner.height / banner.width) * canvas.width; 101 | const y = canvas.height - height; 102 | const fontSize = canvas.width / 17.2; 103 | ctx.drawImage( 104 | banner, 105 | 0, 106 | 0, 107 | banner.width, 108 | banner.height, 109 | 0, 110 | y, 111 | canvas.width, 112 | height 113 | ); 114 | ctx.fillStyle = "#757575"; 115 | ctx.textAlign = "center"; 116 | ctx.textBaseline = "middle"; 117 | ctx.font = `${fontSize}px Google Sans, sans-serif`; 118 | if (shape === "circle") { 119 | ctx.globalCompositeOperation = "destination-in"; 120 | ctx.beginPath(); 121 | ctx.arc(canvas.width / 2, canvas.height / 2, canvas.height / 2, 0, Math.PI * 2); 122 | ctx.closePath(); 123 | ctx.fill(); 124 | } 125 | }; 126 | 127 | download = () => { 128 | const a = document.createElement("a"); 129 | const { canvas } = this.state; 130 | const url = canvas.toDataURL("image/png;base64"); 131 | a.download = "#DevFestIndia_badge.png"; 132 | a.href = url; 133 | a.click(); 134 | }; 135 | 136 | render() { 137 | return ( 138 |
139 |
140 | {/* Left Column */} 141 |
142 | {/* Rest of your JSX code */} 143 | {/* ... */} 144 |
145 | 146 | {/* Right Column */} 147 |
148 | {/* Rest of your JSX code */} 149 | {/* ... */} 150 |
151 |
152 |
153 | ); 154 | } 155 | } 156 | 157 | export default BadgeComponent; 158 | -------------------------------------------------------------------------------- /src/components/Table.Index.js: -------------------------------------------------------------------------------- 1 | "use client" 2 | import React, { useState, useEffect } from 'react' 3 | import TableBody from './TableBody' 4 | import dataArr from '../../public/data.json' 5 | // import Speedometer from './Speedometer'; 6 | 7 | function TableIndex() { 8 | // JSON file gone print here 9 | const imported_data = JSON.stringify(dataArr); 10 | const data = JSON.parse(imported_data); 11 | const [Participationdata, setParticipationdata] = useState([...data]); 12 | const [EligibleforSwags, setEligibleforSwags] = useState(0); 13 | 14 | 15 | 16 | const calculateTotalEligibility = () => { 17 | let total = 0; 18 | data.forEach((ele) => { 19 | ele["Total Completions of both Pathways"] == "Yes" && total++; 20 | }) 21 | setEligibleforSwags(total) 22 | } 23 | 24 | const searchname = (name) => { 25 | const newArr = []; 26 | for (let i = 0; i < data.length; i++) { 27 | let participant = data[i]["Student Name"].toLowerCase(); 28 | let match = participant.includes(name.toLowerCase()); 29 | if (match) newArr.push(data[i]); 30 | 31 | } 32 | // console.log(newArr); 33 | setParticipationdata(newArr); 34 | } 35 | 36 | 37 | useEffect(() => { 38 | calculateTotalEligibility(); 39 | }, []) 40 | 41 | 42 | return ( 43 |
44 | 45 |
46 | 47 | {/* 48 |

-: Todays News :-

49 |

Engineers Day is celebrated in India on 15th September in memory of Sir M. Visvesvaraya, a renowned Indian engineer and statesman. This day acknowledges the significant impact engineers have on innovation, technology, and the advancement of infrastructure.

50 |
*/} 51 | 52 | {/* */} 55 | 56 |
57 |
58 |

No of Eligible
Participants for swags

59 |

{EligibleforSwags}

60 |
61 |
62 |

Total No of
Participants

63 |

{data.length}

64 |
65 |
66 | 67 |
68 |
69 |
70 | { 72 | searchname(e.target.value) 73 | }} 74 | className='bg-transparent mob:text-lg text-base outline-none w-full' type="text" name="searchbar" id="searchbar" placeholder='Search Your Name Here' /> 75 |
76 |
77 |
78 | 79 | 80 | 81 | 82 | 83 | {/* */} 84 | 85 | 86 | 87 | 88 | 89 | 90 | {/* */} 91 | {/* */} 92 | {/* */} 93 | 94 | 95 | 99 |
NameEmailRedemption StatusInstitutionCompletions of both PathwaysNo Courses CompletedNo Skill Badges CompletedGenAI Game CompletedEnroll Date & TimeEnroll. StatusProfile URL
100 | 101 |
102 | ) 103 | } 104 | 105 | export default TableIndex -------------------------------------------------------------------------------- /src/components/DownloadBadge.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import { Roboto_Mono } from 'next/font/google' 3 | const roboto = Roboto_Mono({ 4 | weight: '700', 5 | subsets: ['latin'], 6 | display: 'swap', 7 | }) 8 | 9 | import html2canvas from 'html2canvas' 10 | import Image from 'next/image' 11 | import Link from 'next/link'; 12 | import Script from 'next/script'; 13 | const DownloadBadge = ({ Imgdata, setImgdata, setProgress, Username, setUsername }) => { 14 | const [Adjustment, setAdjustment] = useState(false); 15 | const [Download, setDownload] = useState(false); 16 | const [ChangePhoto, setChangePhoto] = useState(false); 17 | 18 | 19 | 20 | return ( 21 |
22 | {Download &&
Downloading ...
} 23 | 24 |
25 |
26 | {!Adjustment &&

{Username}

} 27 |
28 | your Image 29 |
30 | {!Adjustment && template} 37 | 38 |
39 |
40 | 41 | 42 |
43 |
44 | { 46 | console.log(e.target.checked); 47 | setAdjustment((val) => { 48 | return !val; 49 | }); 50 | 51 | }} 52 | className='hidden peer/adjust' type="checkbox" name="option" id="adjust" /> 53 | 54 |
55 |
56 | { 58 | console.log(e.target.checked); 59 | 60 | setChangePhoto((val) => { 61 | return !val; 62 | }); 63 | 64 | window.location.reload(); 65 | 66 | }} 67 | className="hidden peer/changePhoto" type="checkbox" name="option" id="changePhoto" /> 68 | 69 |
70 |
71 | { 73 | setAdjustment(false); 74 | setDownload(true); 75 | setTimeout(() => { 76 | const cvs = document.querySelector('.photo'); 77 | 78 | html2canvas(cvs).then(function (canvas) { 79 | // document.body.appendChild(canvas); 80 | const downloadLink = document.createElement('a'); 81 | downloadLink.href = canvas.toDataURL('image/jpg'); 82 | downloadLink.download = `GdscUvpceCommunity.png`; 83 | downloadLink.click(); 84 | setDownload(false); 85 | }).catch((err) => { 86 | console.log(err) 87 | setDownload(false); 88 | 89 | }); 90 | 91 | }, 1000); 92 | 93 | }} 94 | className="hidden peer/download" type="checkbox" name="option" id="download" /> 95 | 96 |
97 |
98 | 99 | 100 | 101 | {/*

Choose Your Badge

102 |
103 | 104 | 114 | 115 |
*/} 116 | 117 | 118 |
119 | ) 120 | } 121 | 122 | export default DownloadBadge -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- 1 | import Image from 'next/image' 2 | import Script from 'next/script'; 3 | import Link from 'next/link' 4 | // import BadgeComponent from '../components/BadgeComponent'; 5 | import TableIndex from "@/components/Table.Index"; 6 | export default function Home() { 7 | 8 | return ( 9 | <> 10 | 11 | 51 | 89 |
90 | Create Badge 91 |
92 | 93 | {/*
94 | 95 |
*/} 96 | 97 | 98 | 99 |
Devloped By CodingArpan & Fenil Modi
100 | 101 | ) 102 | } 103 | -------------------------------------------------------------------------------- /src/components/Uploadpage.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | function Uploadpage({ Progress, setProgress, PhotoDetails, setPhotoDetails, Imgdata, setImgdata, Username, setUsername }) { 4 | 5 | const animateprogressbar = () => { 6 | const start = setInterval(() => { 7 | setProgress((val) => { 8 | if (val >= 100) { 9 | clearInterval(start) 10 | return 100; 11 | } 12 | return val + 25; 13 | }) 14 | }, 500); 15 | } 16 | function printFile(file) { 17 | const reader = new FileReader(); 18 | reader.onload = (evt) => { 19 | setImgdata(evt.target.result); 20 | console.log(evt.target.result); 21 | }; 22 | reader.readAsDataURL(file); 23 | } 24 | 25 | const getPhotoDetails = (e) => { 26 | console.log(e.target.files[0]); 27 | const details = { 28 | name: e.target.files[0].name, 29 | size: e.target.files[0].size, 30 | } 31 | printFile(e.target.files[0]); 32 | 33 | setPhotoDetails(details); 34 | animateprogressbar(); 35 | } 36 | 37 | return ( 38 | <> 39 |
40 |
41 |

Create

42 |

Profile Badge

43 |
44 | 45 | { 46 | console.log(e.target.value); 47 | setUsername(e.target.value); 48 | }} 49 | className='relative block m-auto w-full max-w-md px-4 py-2 bg-blue-50 placeholder:text-blue-300 outline-none rounded-full' type="text" name="user" id="user" placeholder='Enter Your Name' /> 50 | {(Username == '') &&

Please Enter Your Name

} 51 | 99 | 100 |
101 | 102 | 103 | { 105 | console.log("first"); 106 | if (Username != '') { 107 | getPhotoDetails(e); 108 | }else{ 109 | alert("Please Enter Your Name"); 110 | } 111 | }} 112 | className='hidden' type="file" name="upload" id="upload" accept=".png, .jpg, .jpeg" /> 113 | 114 | 115 | 116 | ) 117 | } 118 | 119 | export default Uploadpage -------------------------------------------------------------------------------- /src/app/profilebadge/page.js: -------------------------------------------------------------------------------- 1 | 'use client' 2 | import React, { useState, useEffect } from 'react' 3 | import Image from 'next/image' 4 | import Uploadpage from '@/components/Uploadpage'; 5 | import DownloadBadge from '@/components/DownloadBadge'; 6 | function Profilebadge() { 7 | const [Progress, setProgress] = useState(0); 8 | const [Username, setUsername] = useState(""); 9 | const [PhotoDetails, setPhotoDetails] = useState({ 10 | name: '', size: '' 11 | }); 12 | const [Imgdata, setImgdata] = useState(""); 13 | 14 | return ( 15 |
16 | 17 |
18 |
me
19 |

20 | Google Cloud STUDY JAMS 23 - 24 21 |

22 |
23 | 24 | 25 | {!(Progress === 100) && 35 | } 36 | { 37 | (Progress === 100) && 44 | } 45 | 46 | 47 |
48 | {!(Progress === 100) &&
49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 |
} 65 |
Devloped By Arpan Das
66 |
67 |
68 | ) 69 | } 70 | 71 | export default Profilebadge; -------------------------------------------------------------------------------- /public/data.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Student Name": "Fenil Modi", 4 | "Student Email": "youpri2033@gmail.com", 5 | "Institution": "U. V. Patel College of Engineering - Mehsana", 6 | "Enrolment Date & Time": "Fri Sep 01 2023 20:07:23 GMT+0530 (GMT+05:30)", 7 | "Enrolment Status": "All Good", 8 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/343d4eb7-72fa-489f-9456-aea9f51064bd", 9 | "# of Courses Completed": "4", 10 | "# of Skill Badges Completed": "4", 11 | "# of GenAI Game Completed": "1", 12 | "Total Completions of both Pathways": "Yes", 13 | "Redemption Status": "Yes" 14 | }, 15 | { 16 | "Student Name": "Sureliya Venish Girishbhai", 17 | "Student Email": "venishsureliya50@gmail.com", 18 | "Institution": "U. V. Patel College of Engineering - Mehsana", 19 | "Enrolment Date & Time": "Fri Sep 01 2023 19:07:39 GMT+0530 (GMT+05:30)", 20 | "Enrolment Status": "All Good", 21 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7baebd28-7a30-4d4b-b720-f185ec5d0641", 22 | "# of Courses Completed": "4", 23 | "# of Skill Badges Completed": "4", 24 | "# of GenAI Game Completed": "1", 25 | "Total Completions of both Pathways": "Yes", 26 | "Redemption Status": "Yes" 27 | }, 28 | { 29 | "Student Name": "Saurabh Boghani", 30 | "Student Email": "saurabhboghani@gmail.com", 31 | "Institution": "U. V. Patel College of Engineering - Mehsana", 32 | "Enrolment Date & Time": "Fri Sep 01 2023 19:25:17 GMT+0530 (GMT+05:30)", 33 | "Enrolment Status": "All Good", 34 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/e1a378ea-6848-487a-8b76-4f26f563fabc", 35 | "# of Courses Completed": "4", 36 | "# of Skill Badges Completed": "4", 37 | "# of GenAI Game Completed": "1", 38 | "Total Completions of both Pathways": "Yes", 39 | "Redemption Status": "Yes" 40 | }, 41 | { 42 | "Student Name": "Patel Anshkumar Hitendrabhai", 43 | "Student Email": "ansgp0533@gmail.com", 44 | "Institution": "U. V. Patel College of Engineering - Mehsana", 45 | "Enrolment Date & Time": "Fri Sep 01 2023 19:31:00 GMT+0530 (GMT+05:30)", 46 | "Enrolment Status": "All Good", 47 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ea01c2f3-2215-4321-b41f-395adf22b491", 48 | "# of Courses Completed": "4", 49 | "# of Skill Badges Completed": "4", 50 | "# of GenAI Game Completed": "1", 51 | "Total Completions of both Pathways": "Yes", 52 | "Redemption Status": "Yes" 53 | }, 54 | { 55 | "Student Name": "Vriddhi Jigar Shah", 56 | "Student Email": "annuvi.shah85@gmail.com", 57 | "Institution": "U. V. Patel College of Engineering - Mehsana", 58 | "Enrolment Date & Time": "Fri Sep 01 2023 19:31:24 GMT+0530 (GMT+05:30)", 59 | "Enrolment Status": "All Good", 60 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/a353a32d-29ef-45c1-8ef9-185ec0510c91", 61 | "# of Courses Completed": "4", 62 | "# of Skill Badges Completed": "4", 63 | "# of GenAI Game Completed": "1", 64 | "Total Completions of both Pathways": "Yes", 65 | "Redemption Status": "Yes" 66 | }, 67 | { 68 | "Student Name": "Patel Rohan Hitendrabhai", 69 | "Student Email": "rohanpatel0421@gmail.com", 70 | "Institution": "U. V. Patel College of Engineering - Mehsana", 71 | "Enrolment Date & Time": "Fri Sep 01 2023 19:34:21 GMT+0530 (GMT+05:30)", 72 | "Enrolment Status": "All Good", 73 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/61361587-c438-430e-8345-43e4e10e4b0a", 74 | "# of Courses Completed": "4", 75 | "# of Skill Badges Completed": "4", 76 | "# of GenAI Game Completed": "1", 77 | "Total Completions of both Pathways": "Yes", 78 | "Redemption Status": "Yes" 79 | }, 80 | { 81 | "Student Name": "Patel Tirth Pareshkumar", 82 | "Student Email": "tirthp292003@gmail.com", 83 | "Institution": "U. V. Patel College of Engineering - Mehsana", 84 | "Enrolment Date & Time": "Fri Sep 01 2023 19:34:43 GMT+0530 (GMT+05:30)", 85 | "Enrolment Status": "All Good", 86 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/0f50eb96-e2a3-4d04-9fb3-dbf1dcf85169", 87 | "# of Courses Completed": "4", 88 | "# of Skill Badges Completed": "4", 89 | "# of GenAI Game Completed": "1", 90 | "Total Completions of both Pathways": "Yes", 91 | "Redemption Status": "Yes" 92 | }, 93 | { 94 | "Student Name": "Patel Jimilkumar Hitendrakumar", 95 | "Student Email": "jimilpatel2019@gmail.com", 96 | "Institution": "U. V. Patel College of Engineering - Mehsana", 97 | "Enrolment Date & Time": "Fri Sep 01 2023 19:37:04 GMT+0530 (GMT+05:30)", 98 | "Enrolment Status": "All Good", 99 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/29232412-3b80-4037-8ab8-84bf1b67f9be", 100 | "# of Courses Completed": "4", 101 | "# of Skill Badges Completed": "4", 102 | "# of GenAI Game Completed": "1", 103 | "Total Completions of both Pathways": "Yes", 104 | "Redemption Status": "Yes" 105 | }, 106 | { 107 | "Student Name": "Shreya Patel", 108 | "Student Email": "shreyaspatel21@gnu.ac.in", 109 | "Institution": "U. V. Patel College of Engineering - Mehsana", 110 | "Enrolment Date & Time": "Fri Sep 01 2023 19:40:50 GMT+0530 (GMT+05:30)", 111 | "Enrolment Status": "All Good", 112 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/a4d1178f-0a3f-43d7-988a-e5504d7725bf", 113 | "# of Courses Completed": "4", 114 | "# of Skill Badges Completed": "4", 115 | "# of GenAI Game Completed": "1", 116 | "Total Completions of both Pathways": "Yes", 117 | "Redemption Status": "Yes" 118 | }, 119 | { 120 | "Student Name": "Manthan Aniruddh Mehta", 121 | "Student Email": "mmanthan780@gmail.com", 122 | "Institution": "U. V. Patel College of Engineering - Mehsana", 123 | "Enrolment Date & Time": "Fri Sep 01 2023 19:43:18 GMT+0530 (GMT+05:30)", 124 | "Enrolment Status": "All Good", 125 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5eae9415-3670-4deb-89ce-3efc5069e893", 126 | "# of Courses Completed": "4", 127 | "# of Skill Badges Completed": "4", 128 | "# of GenAI Game Completed": "1", 129 | "Total Completions of both Pathways": "Yes", 130 | "Redemption Status": "Yes" 131 | }, 132 | { 133 | "Student Name": "PARMAR ARYAN SATISHKUMAR", 134 | "Student Email": "aryangxly007@gmail.com", 135 | "Institution": "U. V. Patel College of Engineering - Mehsana", 136 | "Enrolment Date & Time": "Fri Sep 01 2023 19:43:56 GMT+0530 (GMT+05:30)", 137 | "Enrolment Status": "All Good", 138 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8eaed4f4-1aa8-4a7d-ba2d-6a5be328e3e6", 139 | "# of Courses Completed": "4", 140 | "# of Skill Badges Completed": "4", 141 | "# of GenAI Game Completed": "1", 142 | "Total Completions of both Pathways": "Yes", 143 | "Redemption Status": "Yes" 144 | }, 145 | { 146 | "Student Name": "Meha Nileshkumar Bhatt", 147 | "Student Email": "mehabhatt2003@gmail.com", 148 | "Institution": "U. V. Patel College of Engineering - Mehsana", 149 | "Enrolment Date & Time": "Fri Sep 01 2023 19:44:10 GMT+0530 (GMT+05:30)", 150 | "Enrolment Status": "All Good", 151 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/b71f0996-1bf6-4436-b244-feb914678ae8", 152 | "# of Courses Completed": "4", 153 | "# of Skill Badges Completed": "4", 154 | "# of GenAI Game Completed": "1", 155 | "Total Completions of both Pathways": "Yes", 156 | "Redemption Status": "Yes" 157 | }, 158 | { 159 | "Student Name": "Amit Goswami", 160 | "Student Email": "amitgoswami698@gmail.com", 161 | "Institution": "U. V. Patel College of Engineering - Mehsana", 162 | "Enrolment Date & Time": "Fri Sep 01 2023 19:45:38 GMT+0530 (GMT+05:30)", 163 | "Enrolment Status": "All Good", 164 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/12b8fc2c-d6cc-4304-9365-12b18d15d91b", 165 | "# of Courses Completed": "4", 166 | "# of Skill Badges Completed": "4", 167 | "# of GenAI Game Completed": "1", 168 | "Total Completions of both Pathways": "Yes", 169 | "Redemption Status": "Yes" 170 | }, 171 | { 172 | "Student Name": "Patel Sujal Jayeshbhai", 173 | "Student Email": "sujalpatel1882@gmail.com", 174 | "Institution": "U. V. Patel College of Engineering - Mehsana", 175 | "Enrolment Date & Time": "Fri Sep 01 2023 19:47:48 GMT+0530 (GMT+05:30)", 176 | "Enrolment Status": "All Good", 177 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/91f439c8-1920-428b-a1a6-1e083ce526cd", 178 | "# of Courses Completed": "4", 179 | "# of Skill Badges Completed": "4", 180 | "# of GenAI Game Completed": "1", 181 | "Total Completions of both Pathways": "Yes", 182 | "Redemption Status": "Yes" 183 | }, 184 | { 185 | "Student Name": "Soha Mohmedhusen Maknojia", 186 | "Student Email": "sohamaknoh@gmail.com", 187 | "Institution": "U. V. Patel College of Engineering - Mehsana", 188 | "Enrolment Date & Time": "Fri Sep 01 2023 19:48:53 GMT+0530 (GMT+05:30)", 189 | "Enrolment Status": "All Good", 190 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c0cf06a6-ea9f-443c-87f9-774c8acba6ad", 191 | "# of Courses Completed": "4", 192 | "# of Skill Badges Completed": "4", 193 | "# of GenAI Game Completed": "1", 194 | "Total Completions of both Pathways": "Yes", 195 | "Redemption Status": "Yes" 196 | }, 197 | { 198 | "Student Name": "RUCHI JITENDRA PATEL", 199 | "Student Email": "patelruchi2830@gmail.com", 200 | "Institution": "U. V. Patel College of Engineering - Mehsana", 201 | "Enrolment Date & Time": "Fri Sep 01 2023 19:50:00 GMT+0530 (GMT+05:30)", 202 | "Enrolment Status": "All Good", 203 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ad5b970e-2979-4da9-8f50-cb25965927b6", 204 | "# of Courses Completed": "4", 205 | "# of Skill Badges Completed": "4", 206 | "# of GenAI Game Completed": "1", 207 | "Total Completions of both Pathways": "Yes", 208 | "Redemption Status": "Yes" 209 | }, 210 | { 211 | "Student Name": "Reet Shah", 212 | "Student Email": "shahreet65@gmail.com", 213 | "Institution": "U. V. Patel College of Engineering - Mehsana", 214 | "Enrolment Date & Time": "Fri Sep 01 2023 19:51:48 GMT+0530 (GMT+05:30)", 215 | "Enrolment Status": "All Good", 216 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d1bfa2ef-a8bc-41cf-8b51-fe3b25b23cce", 217 | "# of Courses Completed": "4", 218 | "# of Skill Badges Completed": "4", 219 | "# of GenAI Game Completed": "1", 220 | "Total Completions of both Pathways": "Yes", 221 | "Redemption Status": "Yes" 222 | }, 223 | { 224 | "Student Name": "NISARG PATEL", 225 | "Student Email": "nisjp.14@gmail.com", 226 | "Institution": "U. V. Patel College of Engineering - Mehsana", 227 | "Enrolment Date & Time": "Fri Sep 01 2023 19:53:24 GMT+0530 (GMT+05:30)", 228 | "Enrolment Status": "All Good", 229 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d9cba745-b272-4e3e-aeba-dd6dbef0c6c0", 230 | "# of Courses Completed": "4", 231 | "# of Skill Badges Completed": "4", 232 | "# of GenAI Game Completed": "1", 233 | "Total Completions of both Pathways": "Yes", 234 | "Redemption Status": "Yes" 235 | }, 236 | { 237 | "Student Name": "Mesvaniya Ashish Sanjaybhai", 238 | "Student Email": "mesvaniyaashish@gmail.com", 239 | "Institution": "U. V. Patel College of Engineering - Mehsana", 240 | "Enrolment Date & Time": "Fri Sep 01 2023 19:55:15 GMT+0530 (GMT+05:30)", 241 | "Enrolment Status": "All Good", 242 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c2459fc6-4044-4d36-ab01-ef21dcaf94d5", 243 | "# of Courses Completed": "4", 244 | "# of Skill Badges Completed": "4", 245 | "# of GenAI Game Completed": "1", 246 | "Total Completions of both Pathways": "Yes", 247 | "Redemption Status": "Yes" 248 | }, 249 | { 250 | "Student Name": "Preet Shah", 251 | "Student Email": "preetshah0707@gmail.com", 252 | "Institution": "U. V. Patel College of Engineering - Mehsana", 253 | "Enrolment Date & Time": "Fri Sep 01 2023 19:57:58 GMT+0530 (GMT+05:30)", 254 | "Enrolment Status": "All Good", 255 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7724f4c5-f5ee-48d2-b303-7c77ef6bee7e", 256 | "# of Courses Completed": "4", 257 | "# of Skill Badges Completed": "4", 258 | "# of GenAI Game Completed": "1", 259 | "Total Completions of both Pathways": "Yes", 260 | "Redemption Status": "Yes" 261 | }, 262 | { 263 | "Student Name": "ARDESHNA PALAK", 264 | "Student Email": "palakardeshna@gmail.com", 265 | "Institution": "U. V. Patel College of Engineering - Mehsana", 266 | "Enrolment Date & Time": "Fri Sep 01 2023 20:00:17 GMT+0530 (GMT+05:30)", 267 | "Enrolment Status": "All Good", 268 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/a26167ac-7a45-4a1e-9016-59198a235fc6", 269 | "# of Courses Completed": "4", 270 | "# of Skill Badges Completed": "4", 271 | "# of GenAI Game Completed": "1", 272 | "Total Completions of both Pathways": "Yes", 273 | "Redemption Status": "Yes" 274 | }, 275 | { 276 | "Student Name": "Viradiya Kashish Mukeshbhai", 277 | "Student Email": "kashishviradiya@gmail.com", 278 | "Institution": "U. V. Patel College of Engineering - Mehsana", 279 | "Enrolment Date & Time": "Fri Sep 01 2023 20:02:53 GMT+0530 (GMT+05:30)", 280 | "Enrolment Status": "All Good", 281 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/bf75336c-8dd8-4906-9549-76f73c96464a", 282 | "# of Courses Completed": "4", 283 | "# of Skill Badges Completed": "4", 284 | "# of GenAI Game Completed": "1", 285 | "Total Completions of both Pathways": "Yes", 286 | "Redemption Status": "Yes" 287 | }, 288 | { 289 | "Student Name": "SHAILESH KUMAR SINGH PARMAR", 290 | "Student Email": "shaileshkumarsingh988@gmail.com", 291 | "Institution": "U. V. Patel College of Engineering - Mehsana", 292 | "Enrolment Date & Time": "Fri Sep 01 2023 20:03:36 GMT+0530 (GMT+05:30)", 293 | "Enrolment Status": "All Good", 294 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7cca11c8-3aad-462f-b328-f59858792000", 295 | "# of Courses Completed": "4", 296 | "# of Skill Badges Completed": "4", 297 | "# of GenAI Game Completed": "1", 298 | "Total Completions of both Pathways": "Yes", 299 | "Redemption Status": "Yes" 300 | }, 301 | { 302 | "Student Name": "Jagya Vishal Ravi", 303 | "Student Email": "vishaljagya1103@gmail.com", 304 | "Institution": "U. V. Patel College of Engineering - Mehsana", 305 | "Enrolment Date & Time": "Fri Sep 01 2023 20:03:51 GMT+0530 (GMT+05:30)", 306 | "Enrolment Status": "All Good", 307 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7d79f506-f9dc-4945-a250-78b5b21ff837", 308 | "# of Courses Completed": "4", 309 | "# of Skill Badges Completed": "4", 310 | "# of GenAI Game Completed": "1", 311 | "Total Completions of both Pathways": "Yes", 312 | "Redemption Status": "Yes" 313 | }, 314 | { 315 | "Student Name": "Krishna Chitlangia", 316 | "Student Email": "krishnachitlangia24@gmail.com", 317 | "Institution": "U. V. Patel College of Engineering - Mehsana", 318 | "Enrolment Date & Time": "Fri Sep 01 2023 20:06:35 GMT+0530 (GMT+05:30)", 319 | "Enrolment Status": "All Good", 320 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7f4df1a4-94e8-4ab2-9c58-c9de430d637f", 321 | "# of Courses Completed": "4", 322 | "# of Skill Badges Completed": "4", 323 | "# of GenAI Game Completed": "1", 324 | "Total Completions of both Pathways": "Yes", 325 | "Redemption Status": "Yes" 326 | }, 327 | { 328 | "Student Name": "Patel Yakshkumar Jitendrabhai", 329 | "Student Email": "yakshkumarpatel22@gnu.ac.in", 330 | "Institution": "U. V. Patel College of Engineering - Mehsana", 331 | "Enrolment Date & Time": "Fri Sep 01 2023 20:08:56 GMT+0530 (GMT+05:30)", 332 | "Enrolment Status": "All Good", 333 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5a43b31d-b4fb-4f36-8540-cbb29650007d", 334 | "# of Courses Completed": "4", 335 | "# of Skill Badges Completed": "4", 336 | "# of GenAI Game Completed": "1", 337 | "Total Completions of both Pathways": "Yes", 338 | "Redemption Status": "Yes" 339 | }, 340 | { 341 | "Student Name": "Gill Gurpreet Kaur", 342 | "Student Email": "gillgurpreetk68@gmail.com", 343 | "Institution": "U. V. Patel College of Engineering - Mehsana", 344 | "Enrolment Date & Time": "Fri Sep 01 2023 20:15:23 GMT+0530 (GMT+05:30)", 345 | "Enrolment Status": "All Good", 346 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/3c2f7e75-c6a8-47a2-b545-ef566d8974f1", 347 | "# of Courses Completed": "4", 348 | "# of Skill Badges Completed": "4", 349 | "# of GenAI Game Completed": "1", 350 | "Total Completions of both Pathways": "Yes", 351 | "Redemption Status": "Yes" 352 | }, 353 | { 354 | "Student Name": "Mohit Assudani", 355 | "Student Email": "assudanimohit2006@gmail.com", 356 | "Institution": "U. V. Patel College of Engineering - Mehsana", 357 | "Enrolment Date & Time": "Fri Sep 01 2023 20:16:42 GMT+0530 (GMT+05:30)", 358 | "Enrolment Status": "All Good", 359 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/38c82fb8-6cdc-4219-bff0-6dce9761126f", 360 | "# of Courses Completed": "4", 361 | "# of Skill Badges Completed": "4", 362 | "# of GenAI Game Completed": "1", 363 | "Total Completions of both Pathways": "Yes", 364 | "Redemption Status": "Yes" 365 | }, 366 | { 367 | "Student Name": "Modi Priyansh Mehulkumar", 368 | "Student Email": "dipalmodi33@gmail.com", 369 | "Institution": "U. V. Patel College of Engineering - Mehsana", 370 | "Enrolment Date & Time": "Fri Sep 01 2023 20:17:18 GMT+0530 (GMT+05:30)", 371 | "Enrolment Status": "All Good", 372 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/61399665-d083-463b-bbc3-2cb54cd445bb", 373 | "# of Courses Completed": "4", 374 | "# of Skill Badges Completed": "4", 375 | "# of GenAI Game Completed": "1", 376 | "Total Completions of both Pathways": "Yes", 377 | "Redemption Status": "Yes" 378 | }, 379 | { 380 | "Student Name": "Makadiya Kaushal Jayeshkumar", 381 | "Student Email": "kaushalmakadiyagnu@gmail.com", 382 | "Institution": "U. V. Patel College of Engineering - Mehsana", 383 | "Enrolment Date & Time": "Fri Sep 01 2023 20:18:45 GMT+0530 (GMT+05:30)", 384 | "Enrolment Status": "All Good", 385 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/9989536c-8c94-4274-94a3-469809d44b69", 386 | "# of Courses Completed": "4", 387 | "# of Skill Badges Completed": "4", 388 | "# of GenAI Game Completed": "1", 389 | "Total Completions of both Pathways": "Yes", 390 | "Redemption Status": "Yes" 391 | }, 392 | { 393 | "Student Name": "Gandhi Dhruv Jitendrakumar", 394 | "Student Email": "dhruvgandhi1212345@gmail.com", 395 | "Institution": "U. V. Patel College of Engineering - Mehsana", 396 | "Enrolment Date & Time": "Fri Sep 01 2023 20:30:37 GMT+0530 (GMT+05:30)", 397 | "Enrolment Status": "All Good", 398 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1f43d951-c00e-44bb-bf51-5aec09addccc", 399 | "# of Courses Completed": "4", 400 | "# of Skill Badges Completed": "4", 401 | "# of GenAI Game Completed": "1", 402 | "Total Completions of both Pathways": "Yes", 403 | "Redemption Status": "Yes" 404 | }, 405 | { 406 | "Student Name": "Munjapara Bhakti Shaileshbhai", 407 | "Student Email": "bhaktimunjapara@gmail.com", 408 | "Institution": "U. V. Patel College of Engineering - Mehsana", 409 | "Enrolment Date & Time": "Fri Sep 01 2023 20:47:28 GMT+0530 (GMT+05:30)", 410 | "Enrolment Status": "All Good", 411 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5830e179-dd62-4773-8a6b-fdd2ee9ee924", 412 | "# of Courses Completed": "4", 413 | "# of Skill Badges Completed": "4", 414 | "# of GenAI Game Completed": "1", 415 | "Total Completions of both Pathways": "Yes", 416 | "Redemption Status": "Yes" 417 | }, 418 | { 419 | "Student Name": "Guru Tulsibhai Patel", 420 | "Student Email": "gurupatel279@gmail.com", 421 | "Institution": "U. V. Patel College of Engineering - Mehsana", 422 | "Enrolment Date & Time": "Fri Sep 01 2023 20:49:47 GMT+0530 (GMT+05:30)", 423 | "Enrolment Status": "All Good", 424 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/066e62f0-379b-4aa8-8348-ff65afb4b515", 425 | "# of Courses Completed": "4", 426 | "# of Skill Badges Completed": "4", 427 | "# of GenAI Game Completed": "1", 428 | "Total Completions of both Pathways": "Yes", 429 | "Redemption Status": "Yes" 430 | }, 431 | { 432 | "Student Name": "Krishna Yogeshkumar Joshi", 433 | "Student Email": "kyjoshi03@gmail.com", 434 | "Institution": "U. V. Patel College of Engineering - Mehsana", 435 | "Enrolment Date & Time": "Fri Sep 01 2023 21:00:36 GMT+0530 (GMT+05:30)", 436 | "Enrolment Status": "All Good", 437 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5685c692-efee-4894-927d-ca75ea6f2ce0", 438 | "# of Courses Completed": "4", 439 | "# of Skill Badges Completed": "4", 440 | "# of GenAI Game Completed": "1", 441 | "Total Completions of both Pathways": "Yes", 442 | "Redemption Status": "Yes" 443 | }, 444 | { 445 | "Student Name": "Vedant Satishbhai pansuriya", 446 | "Student Email": "vedant15708@gmail.com", 447 | "Institution": "U. V. Patel College of Engineering - Mehsana", 448 | "Enrolment Date & Time": "Fri Sep 01 2023 21:06:34 GMT+0530 (GMT+05:30)", 449 | "Enrolment Status": "All Good", 450 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/88f99f6a-c9e0-413b-94f1-7ec165995210", 451 | "# of Courses Completed": "4", 452 | "# of Skill Badges Completed": "4", 453 | "# of GenAI Game Completed": "1", 454 | "Total Completions of both Pathways": "Yes", 455 | "Redemption Status": "Yes" 456 | }, 457 | { 458 | "Student Name": "Javiya Shreya Jayeshbhai", 459 | "Student Email": "shreyajaviya@gmail.com", 460 | "Institution": "U. V. Patel College of Engineering - Mehsana", 461 | "Enrolment Date & Time": "Fri Sep 01 2023 21:08:32 GMT+0530 (GMT+05:30)", 462 | "Enrolment Status": "All Good", 463 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f8ae7c28-26d4-4fcf-8a4b-ac504a487174", 464 | "# of Courses Completed": "4", 465 | "# of Skill Badges Completed": "4", 466 | "# of GenAI Game Completed": "1", 467 | "Total Completions of both Pathways": "Yes", 468 | "Redemption Status": "Yes" 469 | }, 470 | { 471 | "Student Name": "Vedant A Patel", 472 | "Student Email": "ved1305patel@gmail.com", 473 | "Institution": "U. V. Patel College of Engineering - Mehsana", 474 | "Enrolment Date & Time": "Fri Sep 01 2023 21:13:22 GMT+0530 (GMT+05:30)", 475 | "Enrolment Status": "All Good", 476 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5e20e13d-0c35-4b2f-8861-935c8a2fc98b", 477 | "# of Courses Completed": "4", 478 | "# of Skill Badges Completed": "4", 479 | "# of GenAI Game Completed": "1", 480 | "Total Completions of both Pathways": "Yes", 481 | "Redemption Status": "Yes" 482 | }, 483 | { 484 | "Student Name": "Sarthak Joshi", 485 | "Student Email": "esportsgame05@gmail.com", 486 | "Institution": "U. V. Patel College of Engineering - Mehsana", 487 | "Enrolment Date & Time": "Fri Sep 01 2023 21:19:40 GMT+0530 (GMT+05:30)", 488 | "Enrolment Status": "All Good", 489 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/9b5aa582-d07f-4aa7-a45d-0cc119980484", 490 | "# of Courses Completed": "4", 491 | "# of Skill Badges Completed": "4", 492 | "# of GenAI Game Completed": "1", 493 | "Total Completions of both Pathways": "Yes", 494 | "Redemption Status": "Yes" 495 | }, 496 | { 497 | "Student Name": "Raj Vishnubhai Patel", 498 | "Student Email": "rvpatel0603@gmail.com", 499 | "Institution": "U. V. Patel College of Engineering - Mehsana", 500 | "Enrolment Date & Time": "Fri Sep 01 2023 21:22:57 GMT+0530 (GMT+05:30)", 501 | "Enrolment Status": "All Good", 502 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5e44ebc0-7667-4534-bc2d-720986f785e5", 503 | "# of Courses Completed": "4", 504 | "# of Skill Badges Completed": "4", 505 | "# of GenAI Game Completed": "1", 506 | "Total Completions of both Pathways": "Yes", 507 | "Redemption Status": "Yes" 508 | }, 509 | { 510 | "Student Name": "Jay Manojkumar Gandhi", 511 | "Student Email": "jaygandhi2003@gmail.com", 512 | "Institution": "U. V. Patel College of Engineering - Mehsana", 513 | "Enrolment Date & Time": "Fri Sep 01 2023 21:24:37 GMT+0530 (GMT+05:30)", 514 | "Enrolment Status": "All Good", 515 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1f7baf1f-6771-4436-98a8-37df29ed6b17", 516 | "# of Courses Completed": "4", 517 | "# of Skill Badges Completed": "4", 518 | "# of GenAI Game Completed": "1", 519 | "Total Completions of both Pathways": "Yes", 520 | "Redemption Status": "Yes" 521 | }, 522 | { 523 | "Student Name": "Jay Bhatt", 524 | "Student Email": "jaybhatt22@gnu.ac.in", 525 | "Institution": "U. V. Patel College of Engineering - Mehsana", 526 | "Enrolment Date & Time": "Fri Sep 01 2023 21:32:58 GMT+0530 (GMT+05:30)", 527 | "Enrolment Status": "All Good", 528 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/838309e1-63a1-442b-a963-58fa4d0989ef", 529 | "# of Courses Completed": "4", 530 | "# of Skill Badges Completed": "4", 531 | "# of GenAI Game Completed": "1", 532 | "Total Completions of both Pathways": "Yes", 533 | "Redemption Status": "Yes" 534 | }, 535 | { 536 | "Student Name": "Khushi Nilesh Ganatra", 537 | "Student Email": "khushiganatra79@gmail.com", 538 | "Institution": "U. V. Patel College of Engineering - Mehsana", 539 | "Enrolment Date & Time": "Fri Sep 01 2023 22:00:49 GMT+0530 (GMT+05:30)", 540 | "Enrolment Status": "All Good", 541 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/48b2bfe4-c488-4a41-8d1a-97b8b406c360", 542 | "# of Courses Completed": "4", 543 | "# of Skill Badges Completed": "4", 544 | "# of GenAI Game Completed": "1", 545 | "Total Completions of both Pathways": "Yes", 546 | "Redemption Status": "Yes" 547 | }, 548 | { 549 | "Student Name": "Akbarhusain Ambaliyasana", 550 | "Student Email": "akbarhusainas7@gmail.com", 551 | "Institution": "U. V. Patel College of Engineering - Mehsana", 552 | "Enrolment Date & Time": "Sat Sep 02 2023 10:07:35 GMT+0530 (GMT+05:30)", 553 | "Enrolment Status": "All Good", 554 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/e21edfc6-80fc-44c0-9f00-182e55ccabb3", 555 | "# of Courses Completed": "4", 556 | "# of Skill Badges Completed": "4", 557 | "# of GenAI Game Completed": "1", 558 | "Total Completions of both Pathways": "Yes", 559 | "Redemption Status": "Yes" 560 | }, 561 | { 562 | "Student Name": "Tirth Sureshbhai Panchal", 563 | "Student Email": "tirthpanchal2825@gmail.com", 564 | "Institution": "U. V. Patel College of Engineering - Mehsana", 565 | "Enrolment Date & Time": "Sat Sep 02 2023 10:27:13 GMT+0530 (GMT+05:30)", 566 | "Enrolment Status": "All Good", 567 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/80d405bf-3072-47a7-8f4c-4b1b17a6ced3", 568 | "# of Courses Completed": "4", 569 | "# of Skill Badges Completed": "4", 570 | "# of GenAI Game Completed": "1", 571 | "Total Completions of both Pathways": "Yes", 572 | "Redemption Status": "Yes" 573 | }, 574 | { 575 | "Student Name": "Patel Dharmik Jayeshkumar", 576 | "Student Email": "dharmikpatel049@gmail.com", 577 | "Institution": "U. V. Patel College of Engineering - Mehsana", 578 | "Enrolment Date & Time": "Sat Sep 02 2023 10:28:55 GMT+0530 (GMT+05:30)", 579 | "Enrolment Status": "All Good", 580 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/92698089-b7fb-49d5-8774-7218940ced06", 581 | "# of Courses Completed": "4", 582 | "# of Skill Badges Completed": "4", 583 | "# of GenAI Game Completed": "1", 584 | "Total Completions of both Pathways": "Yes", 585 | "Redemption Status": "Yes" 586 | }, 587 | { 588 | "Student Name": "Pulkid Mewada", 589 | "Student Email": "m.pulkid@gmail.com", 590 | "Institution": "U. V. Patel College of Engineering - Mehsana", 591 | "Enrolment Date & Time": "Sat Sep 02 2023 10:30:32 GMT+0530 (GMT+05:30)", 592 | "Enrolment Status": "All Good", 593 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5f4d7ed7-37a9-4ac6-b62b-9bede39cf65b", 594 | "# of Courses Completed": "4", 595 | "# of Skill Badges Completed": "4", 596 | "# of GenAI Game Completed": "1", 597 | "Total Completions of both Pathways": "Yes", 598 | "Redemption Status": "Yes" 599 | }, 600 | { 601 | "Student Name": "Hemang bodana", 602 | "Student Email": "hemangbodana123@gmail.com", 603 | "Institution": "U. V. Patel College of Engineering - Mehsana", 604 | "Enrolment Date & Time": "Sat Sep 02 2023 10:31:49 GMT+0530 (GMT+05:30)", 605 | "Enrolment Status": "All Good", 606 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8b74bc90-4ba7-4f63-871f-af6cc3387b21", 607 | "# of Courses Completed": "4", 608 | "# of Skill Badges Completed": "4", 609 | "# of GenAI Game Completed": "1", 610 | "Total Completions of both Pathways": "Yes", 611 | "Redemption Status": "Yes" 612 | }, 613 | { 614 | "Student Name": "Kushal Ravindrakumar Gupta", 615 | "Student Email": "kushalguptaclg21@gmail.com", 616 | "Institution": "U. V. Patel College of Engineering - Mehsana", 617 | "Enrolment Date & Time": "Sat Sep 02 2023 10:36:00 GMT+0530 (GMT+05:30)", 618 | "Enrolment Status": "All Good", 619 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/fb04c993-49d1-409d-bceb-61e506763c01", 620 | "# of Courses Completed": "4", 621 | "# of Skill Badges Completed": "4", 622 | "# of GenAI Game Completed": "1", 623 | "Total Completions of both Pathways": "Yes", 624 | "Redemption Status": "Yes" 625 | }, 626 | { 627 | "Student Name": "MODI BHAVY HARSHADKUMAR", 628 | "Student Email": "bbb403368@gmail.com", 629 | "Institution": "U. V. Patel College of Engineering - Mehsana", 630 | "Enrolment Date & Time": "Sat Sep 02 2023 10:37:08 GMT+0530 (GMT+05:30)", 631 | "Enrolment Status": "All Good", 632 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/495c9302-91f9-419c-93d8-f142faa41ab7", 633 | "# of Courses Completed": "4", 634 | "# of Skill Badges Completed": "4", 635 | "# of GenAI Game Completed": "1", 636 | "Total Completions of both Pathways": "Yes", 637 | "Redemption Status": "Yes" 638 | }, 639 | { 640 | "Student Name": "Parth Raval", 641 | "Student Email": "parthpraval05@gmail.com", 642 | "Institution": "U. V. Patel College of Engineering - Mehsana", 643 | "Enrolment Date & Time": "Sat Sep 02 2023 10:39:37 GMT+0530 (GMT+05:30)", 644 | "Enrolment Status": "All Good", 645 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/bff4f40e-e11e-4217-be80-fae80a5e92e0", 646 | "# of Courses Completed": "4", 647 | "# of Skill Badges Completed": "4", 648 | "# of GenAI Game Completed": "1", 649 | "Total Completions of both Pathways": "Yes", 650 | "Redemption Status": "Yes" 651 | }, 652 | { 653 | "Student Name": "Rithvik Rao Juvvadi", 654 | "Student Email": "rithvikraojuvvadi@gmail.com", 655 | "Institution": "U. V. Patel College of Engineering - Mehsana", 656 | "Enrolment Date & Time": "Sat Sep 02 2023 10:40:12 GMT+0530 (GMT+05:30)", 657 | "Enrolment Status": "All Good", 658 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d8f9216b-2747-4f05-afcb-75135974b382", 659 | "# of Courses Completed": "4", 660 | "# of Skill Badges Completed": "4", 661 | "# of GenAI Game Completed": "1", 662 | "Total Completions of both Pathways": "Yes", 663 | "Redemption Status": "Yes" 664 | }, 665 | { 666 | "Student Name": "HARSHPAL SINGH SOLANKI", 667 | "Student Email": "harshpalsinghsolanki@gmail.com", 668 | "Institution": "U. V. Patel College of Engineering - Mehsana", 669 | "Enrolment Date & Time": "Sat Sep 02 2023 10:40:57 GMT+0530 (GMT+05:30)", 670 | "Enrolment Status": "All Good", 671 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/edbd7a3f-d8a4-4368-b9bd-1c2439a346b4", 672 | "# of Courses Completed": "4", 673 | "# of Skill Badges Completed": "4", 674 | "# of GenAI Game Completed": "1", 675 | "Total Completions of both Pathways": "Yes", 676 | "Redemption Status": "Yes" 677 | }, 678 | { 679 | "Student Name": "Gaurav Akabari", 680 | "Student Email": "gauravakbari007@gmail.com", 681 | "Institution": "U. V. Patel College of Engineering - Mehsana", 682 | "Enrolment Date & Time": "Sat Sep 02 2023 10:44:02 GMT+0530 (GMT+05:30)", 683 | "Enrolment Status": "All Good", 684 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/81ba5333-9a56-4bf2-94bb-7537ead84dfe", 685 | "# of Courses Completed": "4", 686 | "# of Skill Badges Completed": "4", 687 | "# of GenAI Game Completed": "1", 688 | "Total Completions of both Pathways": "Yes", 689 | "Redemption Status": "Yes" 690 | }, 691 | { 692 | "Student Name": "PATEL JAY PRAVINBHAI", 693 | "Student Email": "pateljayp.j.2003@gmail.com", 694 | "Institution": "U. V. Patel College of Engineering - Mehsana", 695 | "Enrolment Date & Time": "Sat Sep 02 2023 10:44:38 GMT+0530 (GMT+05:30)", 696 | "Enrolment Status": "All Good", 697 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d78c9c56-e1e9-43d8-b666-2256a1bd0748", 698 | "# of Courses Completed": "4", 699 | "# of Skill Badges Completed": "4", 700 | "# of GenAI Game Completed": "1", 701 | "Total Completions of both Pathways": "Yes", 702 | "Redemption Status": "Yes" 703 | }, 704 | { 705 | "Student Name": "Hill Soni", 706 | "Student Email": "hillsoni8104@gmail.com", 707 | "Institution": "U. V. Patel College of Engineering - Mehsana", 708 | "Enrolment Date & Time": "Sat Sep 02 2023 10:46:18 GMT+0530 (GMT+05:30)", 709 | "Enrolment Status": "All Good", 710 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/335c542c-75c4-4187-9309-89edf84c72a9", 711 | "# of Courses Completed": "4", 712 | "# of Skill Badges Completed": "4", 713 | "# of GenAI Game Completed": "1", 714 | "Total Completions of both Pathways": "Yes", 715 | "Redemption Status": "Yes" 716 | }, 717 | { 718 | "Student Name": "Modi Krish Pareshkumar", 719 | "Student Email": "krishpmodi@gmail.com", 720 | "Institution": "U. V. Patel College of Engineering - Mehsana", 721 | "Enrolment Date & Time": "Sat Sep 02 2023 10:47:03 GMT+0530 (GMT+05:30)", 722 | "Enrolment Status": "All Good", 723 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/2b49e37c-067c-40c3-8054-a61e4c49ed70", 724 | "# of Courses Completed": "4", 725 | "# of Skill Badges Completed": "4", 726 | "# of GenAI Game Completed": "1", 727 | "Total Completions of both Pathways": "Yes", 728 | "Redemption Status": "Yes" 729 | }, 730 | { 731 | "Student Name": "Meet Nilesh Panchal", 732 | "Student Email": "meetnpanchal04@gmail.com", 733 | "Institution": "U. V. Patel College of Engineering - Mehsana", 734 | "Enrolment Date & Time": "Sat Sep 02 2023 10:47:22 GMT+0530 (GMT+05:30)", 735 | "Enrolment Status": "All Good", 736 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/516f8992-6708-4a0f-9bd4-15e9ac4643ef", 737 | "# of Courses Completed": "4", 738 | "# of Skill Badges Completed": "4", 739 | "# of GenAI Game Completed": "1", 740 | "Total Completions of both Pathways": "Yes", 741 | "Redemption Status": "Yes" 742 | }, 743 | { 744 | "Student Name": "Shivam Sharma", 745 | "Student Email": "shivasharmarag@gmail.com", 746 | "Institution": "U. V. Patel College of Engineering - Mehsana", 747 | "Enrolment Date & Time": "Sat Sep 02 2023 10:48:02 GMT+0530 (GMT+05:30)", 748 | "Enrolment Status": "All Good", 749 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/3eb6ab5e-29ac-44cd-b044-ad91bd3106f9", 750 | "# of Courses Completed": "4", 751 | "# of Skill Badges Completed": "4", 752 | "# of GenAI Game Completed": "1", 753 | "Total Completions of both Pathways": "Yes", 754 | "Redemption Status": "Yes" 755 | }, 756 | { 757 | "Student Name": "Dev brahmbhatt", 758 | "Student Email": "dev.brahmbhatt01@gmail.com", 759 | "Institution": "U. V. Patel College of Engineering - Mehsana", 760 | "Enrolment Date & Time": "Sat Sep 02 2023 10:48:37 GMT+0530 (GMT+05:30)", 761 | "Enrolment Status": "All Good", 762 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/849f95f7-6ca4-444c-a564-e964ec2c5cf7", 763 | "# of Courses Completed": "4", 764 | "# of Skill Badges Completed": "4", 765 | "# of GenAI Game Completed": "1", 766 | "Total Completions of both Pathways": "Yes", 767 | "Redemption Status": "Yes" 768 | }, 769 | { 770 | "Student Name": "ISHAN KUMRA", 771 | "Student Email": "ishankumra13579@gmail.com", 772 | "Institution": "U. V. Patel College of Engineering - Mehsana", 773 | "Enrolment Date & Time": "Sat Sep 02 2023 10:51:03 GMT+0530 (GMT+05:30)", 774 | "Enrolment Status": "All Good", 775 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/30373131-0660-4c8b-b251-a48a7d18cb3c", 776 | "# of Courses Completed": "4", 777 | "# of Skill Badges Completed": "4", 778 | "# of GenAI Game Completed": "1", 779 | "Total Completions of both Pathways": "Yes", 780 | "Redemption Status": "Yes" 781 | }, 782 | { 783 | "Student Name": "PATEL VANSH KAUSHIKBHAI", 784 | "Student Email": "vanshpatel2724@gmail.com", 785 | "Institution": "U. V. Patel College of Engineering - Mehsana", 786 | "Enrolment Date & Time": "Sat Sep 02 2023 10:51:43 GMT+0530 (GMT+05:30)", 787 | "Enrolment Status": "All Good", 788 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/b3f78876-8f85-411a-9135-8d6ee6b00f75", 789 | "# of Courses Completed": "4", 790 | "# of Skill Badges Completed": "4", 791 | "# of GenAI Game Completed": "1", 792 | "Total Completions of both Pathways": "Yes", 793 | "Redemption Status": "Yes" 794 | }, 795 | { 796 | "Student Name": "Marvin Narendrakumar Patel", 797 | "Student Email": "marvinpatel0628@gmail.com", 798 | "Institution": "U. V. Patel College of Engineering - Mehsana", 799 | "Enrolment Date & Time": "Sat Sep 02 2023 10:54:16 GMT+0530 (GMT+05:30)", 800 | "Enrolment Status": "All Good", 801 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/9d141a23-def0-4cc1-a462-d2820c5828ef", 802 | "# of Courses Completed": "4", 803 | "# of Skill Badges Completed": "4", 804 | "# of GenAI Game Completed": "1", 805 | "Total Completions of both Pathways": "Yes", 806 | "Redemption Status": "Yes" 807 | }, 808 | { 809 | "Student Name": "Patel Mahavir Manubhai", 810 | "Student Email": "patelmahavir20102003@gmail.com", 811 | "Institution": "U. V. Patel College of Engineering - Mehsana", 812 | "Enrolment Date & Time": "Sat Sep 02 2023 10:56:15 GMT+0530 (GMT+05:30)", 813 | "Enrolment Status": "All Good", 814 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/58445820-27c0-4f0a-8835-f5e334f6125f", 815 | "# of Courses Completed": "4", 816 | "# of Skill Badges Completed": "4", 817 | "# of GenAI Game Completed": "1", 818 | "Total Completions of both Pathways": "Yes", 819 | "Redemption Status": "Yes" 820 | }, 821 | { 822 | "Student Name": "Harsh Sunibhai Shah", 823 | "Student Email": "harshsshah2001@gmail.com", 824 | "Institution": "U. V. Patel College of Engineering - Mehsana", 825 | "Enrolment Date & Time": "Sat Sep 02 2023 11:07:50 GMT+0530 (GMT+05:30)", 826 | "Enrolment Status": "All Good", 827 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c5f9b089-ecbd-4acc-997a-8e20c07a4c85", 828 | "# of Courses Completed": "4", 829 | "# of Skill Badges Completed": "4", 830 | "# of GenAI Game Completed": "1", 831 | "Total Completions of both Pathways": "Yes", 832 | "Redemption Status": "Yes" 833 | }, 834 | { 835 | "Student Name": "PATEL BHAVYKUMAR KETANBHAI", 836 | "Student Email": "bhavykumarpatel21@gnu.ac.in", 837 | "Institution": "U. V. Patel College of Engineering - Mehsana", 838 | "Enrolment Date & Time": "Sat Sep 02 2023 11:09:17 GMT+0530 (GMT+05:30)", 839 | "Enrolment Status": "All Good", 840 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f2971367-ec68-4bf9-96bd-b4733dc4b7bd", 841 | "# of Courses Completed": "4", 842 | "# of Skill Badges Completed": "4", 843 | "# of GenAI Game Completed": "1", 844 | "Total Completions of both Pathways": "Yes", 845 | "Redemption Status": "Yes" 846 | }, 847 | { 848 | "Student Name": "Khush Bharatbhai Patel", 849 | "Student Email": "khushbpatel21@gnu.ac.in", 850 | "Institution": "U. V. Patel College of Engineering - Mehsana", 851 | "Enrolment Date & Time": "Sat Sep 02 2023 11:11:11 GMT+0530 (GMT+05:30)", 852 | "Enrolment Status": "All Good", 853 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/6ab15749-6bc7-4c67-b6e7-339f1f59dcbb", 854 | "# of Courses Completed": "4", 855 | "# of Skill Badges Completed": "4", 856 | "# of GenAI Game Completed": "1", 857 | "Total Completions of both Pathways": "Yes", 858 | "Redemption Status": "Yes" 859 | }, 860 | { 861 | "Student Name": "Patel dhruv Vasantkumar", 862 | "Student Email": "Dhruvvpatel21@gnu.ac.in", 863 | "Institution": "U. V. Patel College of Engineering - Mehsana", 864 | "Enrolment Date & Time": "Sat Sep 02 2023 11:11:35 GMT+0530 (GMT+05:30)", 865 | "Enrolment Status": "All Good", 866 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/956720ca-bf19-4685-9bb8-40e4a36bc185", 867 | "# of Courses Completed": "4", 868 | "# of Skill Badges Completed": "4", 869 | "# of GenAI Game Completed": "1", 870 | "Total Completions of both Pathways": "Yes", 871 | "Redemption Status": "Yes" 872 | }, 873 | { 874 | "Student Name": "Vachhani Rupin Rajeshbhai", 875 | "Student Email": "vachhanirupin@gmail.com", 876 | "Institution": "U. V. Patel College of Engineering - Mehsana", 877 | "Enrolment Date & Time": "Sat Sep 02 2023 11:12:37 GMT+0530 (GMT+05:30)", 878 | "Enrolment Status": "All Good", 879 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/9031a2cc-162b-44c7-8a81-2f09bda6a58a", 880 | "# of Courses Completed": "4", 881 | "# of Skill Badges Completed": "4", 882 | "# of GenAI Game Completed": "1", 883 | "Total Completions of both Pathways": "Yes", 884 | "Redemption Status": "Yes" 885 | }, 886 | { 887 | "Student Name": "PATEL SMIT ASHOKKUMAR", 888 | "Student Email": "2001smitpatel@gmail.com", 889 | "Institution": "U. V. Patel College of Engineering - Mehsana", 890 | "Enrolment Date & Time": "Sat Sep 02 2023 11:13:41 GMT+0530 (GMT+05:30)", 891 | "Enrolment Status": "All Good", 892 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/2ca4fb48-f04e-4d86-afef-cef3455a6510", 893 | "# of Courses Completed": "4", 894 | "# of Skill Badges Completed": "4", 895 | "# of GenAI Game Completed": "1", 896 | "Total Completions of both Pathways": "Yes", 897 | "Redemption Status": "Yes" 898 | }, 899 | { 900 | "Student Name": "Prajapati Abhay Rajabhai", 901 | "Student Email": "abhaykumarprajapati22@gnu.ac.in", 902 | "Institution": "U. V. Patel College of Engineering - Mehsana", 903 | "Enrolment Date & Time": "Sat Sep 02 2023 11:17:45 GMT+0530 (GMT+05:30)", 904 | "Enrolment Status": "All Good", 905 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/b11579f2-6097-4a2d-b639-6f2cdb25341b", 906 | "# of Courses Completed": "4", 907 | "# of Skill Badges Completed": "4", 908 | "# of GenAI Game Completed": "1", 909 | "Total Completions of both Pathways": "Yes", 910 | "Redemption Status": "Yes" 911 | }, 912 | { 913 | "Student Name": "Gandha Kalpesh Shailesh Bhai", 914 | "Student Email": "kalpeshgandha2003@gmail.com", 915 | "Institution": "U. V. Patel College of Engineering - Mehsana", 916 | "Enrolment Date & Time": "Sat Sep 02 2023 11:23:14 GMT+0530 (GMT+05:30)", 917 | "Enrolment Status": "All Good", 918 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/62f0c273-567d-4103-980d-079b4401bc73", 919 | "# of Courses Completed": "4", 920 | "# of Skill Badges Completed": "4", 921 | "# of GenAI Game Completed": "1", 922 | "Total Completions of both Pathways": "Yes", 923 | "Redemption Status": "Yes" 924 | }, 925 | { 926 | "Student Name": "Krishil K Patel", 927 | "Student Email": "krishilpatel0011@gmail.com", 928 | "Institution": "U. V. Patel College of Engineering - Mehsana", 929 | "Enrolment Date & Time": "Sat Sep 02 2023 11:25:19 GMT+0530 (GMT+05:30)", 930 | "Enrolment Status": "All Good", 931 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5292b352-600f-484b-a925-92bc9d8a28c6", 932 | "# of Courses Completed": "4", 933 | "# of Skill Badges Completed": "4", 934 | "# of GenAI Game Completed": "1", 935 | "Total Completions of both Pathways": "Yes", 936 | "Redemption Status": "Yes" 937 | }, 938 | { 939 | "Student Name": "Kanishka Khandelwal", 940 | "Student Email": "kanishkakhandelwal.22@gmail.com", 941 | "Institution": "U. V. Patel College of Engineering - Mehsana", 942 | "Enrolment Date & Time": "Fri Sep 01 2023 19:52:38 GMT+0530 (GMT+05:30)", 943 | "Enrolment Status": "All Good", 944 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f40af5c0-acb2-4f0e-b34b-62748178e35b", 945 | "# of Courses Completed": "4", 946 | "# of Skill Badges Completed": "4", 947 | "# of GenAI Game Completed": "1", 948 | "Total Completions of both Pathways": "Yes", 949 | "Redemption Status": "Yes" 950 | }, 951 | { 952 | "Student Name": "Chirantan Bhardwaj", 953 | "Student Email": "chirantanbhardwaj@gmail.com", 954 | "Institution": "U. V. Patel College of Engineering - Mehsana", 955 | "Enrolment Date & Time": "Fri Sep 01 2023 19:45:45 GMT+0530 (GMT+05:30)", 956 | "Enrolment Status": "All Good", 957 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f1282964-2b04-4d8c-8dc3-450f89a4c7fa", 958 | "# of Courses Completed": "4", 959 | "# of Skill Badges Completed": "4", 960 | "# of GenAI Game Completed": "1", 961 | "Total Completions of both Pathways": "Yes", 962 | "Redemption Status": "Yes" 963 | }, 964 | { 965 | "Student Name": "Vipul solanki", 966 | "Student Email": "vipulsolanki2112005@gmail.com", 967 | "Institution": "U. V. Patel College of Engineering - Mehsana", 968 | "Enrolment Date & Time": "Fri Sep 01 2023 20:10:28 GMT+0530 (GMT+05:30)", 969 | "Enrolment Status": "All Good", 970 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d872878e-2542-4b66-88bb-dd4cb4c39347", 971 | "# of Courses Completed": "4", 972 | "# of Skill Badges Completed": "4", 973 | "# of GenAI Game Completed": "1", 974 | "Total Completions of both Pathways": "Yes", 975 | "Redemption Status": "Yes" 976 | }, 977 | { 978 | "Student Name": "Suthar Rutul Narayanbhai", 979 | "Student Email": "rutulsuthar2018@gmail.com", 980 | "Institution": "U. V. Patel College of Engineering - Mehsana", 981 | "Enrolment Date & Time": "Fri Sep 01 2023 19:34:02 GMT+0530 (GMT+05:30)", 982 | "Enrolment Status": "All Good", 983 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ec866568-3a7a-4709-9e79-bdb2079f1167", 984 | "# of Courses Completed": "4", 985 | "# of Skill Badges Completed": "4", 986 | "# of GenAI Game Completed": "1", 987 | "Total Completions of both Pathways": "Yes", 988 | "Redemption Status": "Yes" 989 | }, 990 | { 991 | "Student Name": "Charvin Maheshbhai Khanpara", 992 | "Student Email": "charvinkhanpara04@gmail.com", 993 | "Institution": "U. V. Patel College of Engineering - Mehsana", 994 | "Enrolment Date & Time": "Fri Sep 01 2023 20:24:20 GMT+0530 (GMT+05:30)", 995 | "Enrolment Status": "All Good", 996 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8d7e32d9-b991-42fb-9efc-272a128975ba", 997 | "# of Courses Completed": "4", 998 | "# of Skill Badges Completed": "4", 999 | "# of GenAI Game Completed": "1", 1000 | "Total Completions of both Pathways": "Yes", 1001 | "Redemption Status": "Yes" 1002 | }, 1003 | { 1004 | "Student Name": "Thakkar Nikhilkumar Rameshbhai", 1005 | "Student Email": "narutopoke7890@gmail.com", 1006 | "Institution": "U. V. Patel College of Engineering - Mehsana", 1007 | "Enrolment Date & Time": "Sat Sep 02 2023 11:22:50 GMT+0530 (GMT+05:30)", 1008 | "Enrolment Status": "All Good", 1009 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/fa0e2b06-51d3-46f1-8fe4-76504c31771c", 1010 | "# of Courses Completed": "4", 1011 | "# of Skill Badges Completed": "4", 1012 | "# of GenAI Game Completed": "1", 1013 | "Total Completions of both Pathways": "Yes", 1014 | "Redemption Status": "Yes" 1015 | }, 1016 | { 1017 | "Student Name": "Bhakti parsaniya", 1018 | "Student Email": "parsaniyabhakti29@gmail.com", 1019 | "Institution": "U. V. Patel College of Engineering - Mehsana", 1020 | "Enrolment Date & Time": "Sat Sep 02 2023 11:05:42 GMT+0530 (GMT+05:30)", 1021 | "Enrolment Status": "All Good", 1022 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8dd022fb-b0d0-43bd-b649-3af3507b5832", 1023 | "# of Courses Completed": "4", 1024 | "# of Skill Badges Completed": "4", 1025 | "# of GenAI Game Completed": "1", 1026 | "Total Completions of both Pathways": "Yes", 1027 | "Redemption Status": "Yes" 1028 | }, 1029 | { 1030 | "Student Name": "Vaishnav Smit Jayantibhai", 1031 | "Student Email": "smitvaishnav007@gmail.com", 1032 | "Institution": "U. V. Patel College of Engineering - Mehsana", 1033 | "Enrolment Date & Time": "Fri Sep 01 2023 20:21:48 GMT+0530 (GMT+05:30)", 1034 | "Enrolment Status": "All Good", 1035 | "Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/da47dbbb-17d6-4502-a95e-401ea42a6a20", 1036 | "# of Courses Completed": "4", 1037 | "# of Skill Badges Completed": "4", 1038 | "# of GenAI Game Completed": "1", 1039 | "Total Completions of both Pathways": "Yes", 1040 | "Redemption Status": "Yes" 1041 | } 1042 | ] 1043 | --------------------------------------------------------------------------------