-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5246773
commit f7e8113
Showing
10 changed files
with
91 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
tools-nodejs/vighnesh153-astro/firebase-seed/auth_export/accounts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"kind":"identitytoolkit#DownloadAccountResponse","users":[{"localId":"ekAHm4gvpTBjoSmvINUnt638btaM","createdAt":"1734187406426","lastLoginAt":"1735374852879","displayName":"Vighnesh Raut","photoUrl":"https://i.imgur.com/npqtdBu.png","providerUserInfo":[{"providerId":"google.com","rawId":"5762999240917570257694699278672391745578","federatedId":"5762999240917570257694699278672391745578","displayName":"Vighnesh Raut","photoUrl":"https://i.imgur.com/npqtdBu.png","email":"vighnesh.raut13@gmail.com","screenName":"vighnesh153"}],"validSince":"1735458340","email":"vighnesh.raut13@gmail.com","emailVerified":true,"disabled":false,"lastRefreshAt":"2024-12-29T07:47:05.667Z"},{"localId":"iWtBCmoWRTXg6UTQCV7ncLJPxcNO","createdAt":"1734882413806","lastLoginAt":"1734882416118","displayName":"Pikachu","photoUrl":"https://i.imgur.com/npqtdBu.png","providerUserInfo":[{"providerId":"google.com","rawId":"7759237076568892792428913761032108656749","federatedId":"7759237076568892792428913761032108656749","displayName":"Pikachu","photoUrl":"https://i.imgur.com/npqtdBu.png","email":"pikachu@pokemon.com","screenName":"Pikachu"}],"validSince":"1735458340","email":"pikachu@pokemon.com","emailVerified":true,"disabled":false}]} | ||
{"kind":"identitytoolkit#DownloadAccountResponse","users":[{"localId":"ekAHm4gvpTBjoSmvINUnt638btaM","createdAt":"1734187406426","lastLoginAt":"1735716923977","displayName":"Vighnesh Raut","photoUrl":"https://i.imgur.com/npqtdBu.png","providerUserInfo":[{"providerId":"google.com","rawId":"5762999240917570257694699278672391745578","federatedId":"5762999240917570257694699278672391745578","displayName":"Vighnesh Raut","photoUrl":"https://i.imgur.com/npqtdBu.png","email":"vighnesh.raut13@gmail.com","screenName":"vighnesh153"}],"validSince":"1735716838","email":"vighnesh.raut13@gmail.com","emailVerified":true,"disabled":false,"lastRefreshAt":"2025-01-01T07:35:23.977Z"},{"localId":"iWtBCmoWRTXg6UTQCV7ncLJPxcNO","createdAt":"1734882413806","lastLoginAt":"1734882416118","displayName":"Pikachu","photoUrl":"https://i.imgur.com/npqtdBu.png","providerUserInfo":[{"providerId":"google.com","rawId":"7759237076568892792428913761032108656749","federatedId":"7759237076568892792428913761032108656749","displayName":"Pikachu","photoUrl":"https://i.imgur.com/npqtdBu.png","email":"pikachu@pokemon.com","screenName":"Pikachu"}],"validSince":"1735716838","email":"pikachu@pokemon.com","emailVerified":true,"disabled":false}]} |
Binary file modified
BIN
+0 Bytes
(100%)
...e-seed/firestore_export/all_namespaces/all_kinds/all_namespaces_all_kinds.export_metadata
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 59 additions & 7 deletions
66
tools-nodejs/vighnesh153-astro/website/src/components/resume/ResumeContainer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,65 @@ | ||
import type { JSX } from "solid-js"; | ||
import { createSignal, type JSX, onMount } from "solid-js"; | ||
|
||
import { myPersonalizedEmail } from "@/utils"; | ||
import { ResumeLink } from "./ResumeLink"; | ||
|
||
const monthFormatter = new Intl.DateTimeFormat("en-GB", { | ||
month: "short", | ||
}); | ||
const ordinalSuffixes = new Map([ | ||
["one", "st"], | ||
["two", "nd"], | ||
["few", "rd"], | ||
["other", "th"], | ||
]); | ||
const ordinalFormatter = new Intl.PluralRules("en-US", { type: "ordinal" }); | ||
|
||
export function ResumeContainer(): JSX.Element { | ||
const [date, setDate] = createSignal(new Date()); | ||
|
||
const formattedDate = () => { | ||
const day = date().getDay(); | ||
const ordinal = ordinalSuffixes.get(ordinalFormatter.select(day)); | ||
const month = monthFormatter.format(date()); | ||
const year = date().getFullYear(); | ||
|
||
return `${day}${ordinal} ${month} ${year}`; | ||
}; | ||
|
||
onMount(() => { | ||
setDate(new Date()); | ||
}); | ||
|
||
return ( | ||
<div class="w-full h-full bg-primary"> | ||
<h1>Vighnesh Raut</h1> | ||
<p>Pikachu!</p> | ||
<a href="https://vighnesh153.dev" class="underline text-[blue]"> | ||
My website | ||
</a> | ||
<div class="w-full h-full bg-[#f5e5e5] text-secondary flex flex-col"> | ||
{/* Header */} | ||
<p class="pt-5 ml-auto pr-14 w-fit text-xs text-[#aaa] font-extralight"> | ||
Snapshot Taken on {formattedDate()} | ||
</p> | ||
<h1 class="mt-2 text-center text-5xl">Vighnesh Raut</h1> | ||
<p class="mt-2 text-sm text-center"> | ||
Email:{" "} | ||
<ResumeLink | ||
href={`mailto:${myPersonalizedEmail}`} | ||
text={myPersonalizedEmail} | ||
/> | ||
</p> | ||
<p class="mt-0 text-center text-sm"> | ||
<ResumeLink | ||
href="https://vighnesh153.dev" | ||
text="vighnesh153.dev" | ||
/> | ||
</p> | ||
<hr class="mt-2 border-[#999]" /> | ||
|
||
<div class="flex-grow flex [&>div]:pt-2 "> | ||
<div class="resume-column-1 border-2 border-primary basis-1/3"> | ||
hello | ||
</div> | ||
<div class="resume-column-2 border-2 border-primary flex-grow"> | ||
hello | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
10 changes: 10 additions & 0 deletions
10
tools-nodejs/vighnesh153-astro/website/src/components/resume/ResumeLink.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { JSX } from "solid-js"; | ||
|
||
export type ResumeLinkProps = { | ||
href: string; | ||
text: string; | ||
}; | ||
|
||
export function ResumeLink(props: ResumeLinkProps): JSX.Element { | ||
return <a class="text-[royalblue]" href={props.href}>{props.text}</a>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
tools-nodejs/vighnesh153-astro/website/src/utils/content/emails.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const myPersonalizedEmail = "me@vighnesh153.dev"; | ||
export const myPersonalizedEmail = "pikachu@vighnesh153.dev"; | ||
export const myGmailEmail = "vighnesh.raut13@gmail.com"; | ||
export const myGoogleEmail = "rvighnesh@google.com"; |