Skip to content

Commit 2e835f1

Browse files
Implement some more cheesecakes
1 parent 047f564 commit 2e835f1

File tree

3 files changed

+76
-1
lines changed

3 files changed

+76
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<title>Addison Goolsbee - Software Engineer</title>
7+
<title>Addison Goolsbee</title>
88
<meta name="description" content="Addison Goolsbee is a software engineer in Seattle building experimental web projects and tools." />
99
<meta name="author" content="Addison Goolsbee" />
1010
<meta name="theme-color" content="#000000" />

src/utils/handlers.ts

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ export const reset = () => {
117117
} catch {
118118
// ignore
119119
}
120+
if (typeof document !== "undefined") {
121+
document.title = "Addison Goolsbee";
122+
}
120123
};
121124

122125
export const sandwich = () => {
@@ -349,3 +352,60 @@ export const cheesecake0 = async () => {
349352
setBlurbStart(blurb);
350353
setProfileImage(image);
351354
};
355+
356+
export const cheesecake1 = async () => {
357+
const name = await decryptWithPassword(
358+
"6c27cc99e035063d02d96cfffb44fce6c71a4458e7b9f6d56fcdca24238f83bb39ec9841c83c78fe956556eb2179b0e22d11b73ad101d4e705d7e89724a882b3e1d82c99e080b1",
359+
currentDecoderSecret()
360+
);
361+
const blurb = await decryptWithPassword(
362+
"b8efb9ce79af39f8258e09b656c8b277e7fa3bd987731705dfdcdffc5899a72e73d5685de494043916c9eac8f97692d2cafa691656239ec7bb7f62e76b1bb489e9d2e08a9b38282f1c0b66",
363+
currentDecoderSecret()
364+
);
365+
const image = await decryptWithPassword(
366+
"87ee071b96daeef3aafc54275c191aa75eee1c86a857061d8fb9936d18b7da7af9114e40478069f39a3d9703a8d164dc3d669a685624f8e776408565337b8d418771240527a8880ab5c5460f860239f8bbfe77b7025e1071d6283cf46824569a5642c7c248f38a155f941c",
367+
currentDecoderSecret()
368+
);
369+
setMyName(name);
370+
setBlurbStart(blurb);
371+
setProfileImage(image);
372+
};
373+
374+
export const cheesecake2 = async () => {
375+
const name = await decryptWithPassword(
376+
"998a77ddefd0557b65d58ad25d2ae37c03adb17b602ecb32f2296048bed327bb0e327b6e7c6da35c7e58a1aa4050739553c6411db15ce5a5d5a785a211",
377+
currentDecoderSecret()
378+
);
379+
const blurb = await decryptWithPassword(
380+
"75412929a23057a49c9f13d825c89646b6dcb7abb753fec04988fb4a0a3d9fb0cd8120878c8d5043a184f6316159cf780eb2a56b37e212ae22f4b1229b1eb58063a299ed82f6b5",
381+
currentDecoderSecret()
382+
);
383+
const image = await decryptWithPassword(
384+
"8eda3b574a0b37ce9af641d428cd63605a1c53c57721103adad6018ab1aa520214d4316d96c61a6a09344392864ae4d741e3e91f624c4e7c7625872df721e5ccce137c8f3f68a8583220fd84531d4070d29aea63be47739abd0c8b2434eeaa7ed76cb6c72e2397f2ffc86d",
385+
currentDecoderSecret()
386+
);
387+
setMyName(name);
388+
setBlurbStart(blurb);
389+
setProfileImage(image);
390+
if (typeof document !== "undefined") {
391+
document.title = "Slungus Slim";
392+
}
393+
};
394+
395+
export const cheesecake3 = async () => {
396+
const name = await decryptWithPassword(
397+
"2835b551a74ebc790fdd1a4ba6a79f950b8a7594bd0ff8f3a52a129355a4457bd819f677b79c1d79e28c433f1bd740c7874632ea79353fc4bf9785898b3f817e4b11",
398+
currentDecoderSecret()
399+
);
400+
const blurb = await decryptWithPassword(
401+
"65ca6c325d52d0515f898968e00bbe754a69e534192b9802568e9c7db64643e2aebfdad507b1b232244ed5ebe103a765920e27ee3587f2ca7ea2d3508a1221dae25d915ac63adddc4ae4548734a5e53e311b3f56fe6c78184d9547edde8dd32e27f82cbadaed0e3a4e65831c7dd0708bba5b14bdd68f61e595d9",
402+
currentDecoderSecret()
403+
);
404+
const image = await decryptWithPassword(
405+
"32e787c67563a0708e040b5a030c7b6a0fd78ab427455b66bcbe908a46ac1b74a107f627aae437558d3f72f4cffde3f9bfde7c118ec6231f925fdaf2340a4b01db77e2fa33ec1d9450c1f181beacb7e48590dc3d977de066fafb016842b4834137845605a4c57a800fc8e3",
406+
currentDecoderSecret()
407+
);
408+
setMyName(name);
409+
setBlurbStart(blurb);
410+
setProfileImage(image);
411+
};

src/utils/secrets.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import {
1111
waffle,
1212
cheesecake0,
1313
giveHint,
14+
cheesecake1,
15+
cheesecake2,
16+
cheesecake3,
1417
} from "./handlers";
1518
import {
1619
changelogVisible,
@@ -84,4 +87,16 @@ export const secrets: Secret[] = [
8487
hash: "624fea22c51974a45962a8d4db89ef7bed04ecf9d15961fe69a7019a69527b2f",
8588
onUnlock: () => cheesecake0(),
8689
},
90+
{
91+
hash: "1ae9c4f5336214779a8b3d7795df4d0cda049a41e92572a1da4946c0f6cfac2e",
92+
onUnlock: () => cheesecake1(),
93+
},
94+
{
95+
hash: "91c703301fe7fc4e742b8df9cee991b64cef9905639a4a6b01dfe1f71d1efeef",
96+
onUnlock: () => cheesecake2(),
97+
},
98+
{
99+
hash: "8705a499ddf1933db73ff571f09876748e36bc96e1f1128a46b1220f1fa37003",
100+
onUnlock: () => cheesecake3(),
101+
},
87102
];

0 commit comments

Comments
 (0)