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
{ | |
"nodes": [ | |
{ | |
"nodeId": "4", | |
"ignored": false, | |
"role": { | |
"type": "internalRole", | |
"value": "RootWebArea" | |
}, | |
"chromeRole": { |
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
/* eslint-disable @typescript-eslint/ban-ts-comment */ | |
import endent from "endent"; | |
import { type z, type ZodRawShape } from "zod"; | |
export const zpp = <Out, Def extends z.ZodTypeDef, In>( | |
schema: z.Schema<Out, Def, In> | |
) => { | |
const newFunc = (obj: z.infer<typeof schema>) => { | |
return obj; | |
}; |
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
// .eslintrc | |
{ | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"react-app", | |
"plugin:react/recommended", |
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
diff --git a/node_modules/async-redis/yarn.lock b/node_modules/async-redis/yarn.lock | |
index c5fc73d..6ba2d3a 100644 | |
--- a/node_modules/async-redis/yarn.lock | |
+++ b/node_modules/async-redis/yarn.lock | |
@@ -629,6 +629,11 @@ delayed-stream@~1.0.0: | |
version "1.0.0" | |
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | |
+denque@^1.4.1: | |
+ version "1.5.0" |
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
diff --git a/node_modules/react-push-notification/dist/notifications/Notifications.js b/node_modules/react-push-notification/dist/notifications/Notifications.js | |
index 0f14e14..c4dbf28 100644 | |
--- a/node_modules/react-push-notification/dist/notifications/Notifications.js | |
+++ b/node_modules/react-push-notification/dist/notifications/Notifications.js | |
@@ -1,12 +1,13 @@ | |
-"use strict"; | |
-var __importDefault = (this && this.__importDefault) || function (mod) { | |
- return (mod && mod.__esModule) ? mod : { "default": mod }; | |
-}; | |
-Object.defineProperty(exports, "__esModule", { value: true }); |
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 will setup the default config that @CryogenicPlanet uses across machines | |
yes | sudo apt install zsh | |
yes | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1 | |
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme" | |
source ~/.zshrc | |
echo "Setting Vim config" | |
wget https://missing.csail.mit.edu/2020/files/vimrc | |
mv vimrc ~/.vimrc | |
echo "Manually Set .zshrc theme to spaceship" |
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
The following is a conversation with an AI assistant. The assistant is helpful, creative, clever, and very friendly. | |
Human: Hello, who are you? | |
AI: I am an AI created by OpenAI. How can I help you today? | |
Human: Can you help me debug an SSL configuration error? | |
AI: Sure. What's wrong? | |
Human: When I open the website, it shows 'ERR_SSL_PROTOCOL_ERROR' | |
AI: The server's TLS configuration does not support the protocol you are trying to use. | |
Human: How do I fix that? | |
AI: Check your server's configuration. Make sure that TLSv1.0 or TLSv1.1 is supported. |
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
// Functions | |
let tweetParser = async function (tweetDom) { | |
let tweetContent = tweetDom.innerText; | |
let tweet = { | |
name: "", | |
username: "", | |
time: "", | |
content: "", | |
interaction: { | |
reply: "", |
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
#include<stdio.h> | |
#include<stdlib.h> | |
#include"ingredient_graph.c" | |
int output_check(intNode *head, intNode *checkAgainst){ | |
// Function aims to autocheck the printed outputs | |
if(head == NULL){ | |
return 1; // Failed | |
} |
NewerOlder