Skip to content

Instantly share code, notes, and snippets.

View at-the-vr's full-sized avatar
🎮
Love Gaming Nonstop

Atharva at-the-vr

🎮
Love Gaming Nonstop
View GitHub Profile
@at-the-vr
at-the-vr / settings.json
Last active February 23, 2025 05:11
MY VSCode Settings
{
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Houston",
"editor.fontSize": 17,
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "MesloLGM Nerd Font, 'Courier New', monospace",
"editor.minimap.renderCharacters": false,
"editor.minimap.autohide": true,
"editor.rulers": [80],
"editor.fontFamily": "Cascadia Code, 'Courier New', monospace",
@at-the-vr
at-the-vr / extensions.json
Last active November 24, 2023 18:19
My VSCode Extensions
{
"extensions": [
"esbenp.prettier-vscode",
"ritwickdey.liveserver",
"ecmel.vscode-html-css",
"hollowtree.vue-snippets",
"dbaeumer.vscode-eslint",
"dsznajder.es7-react-js-snippets",
"coenraads.disableligatures",
"donjayamanne.githistory",
@at-the-vr
at-the-vr / profile.md
Last active February 23, 2025 05:12
My Terminal Profile
@at-the-vr
at-the-vr / docs-issue-8692.md
Last active July 7, 2024 03:20
Docs Issue #8692

Link: withastro/docs#8692

For 2nd Code Snippet - followed by So then I tried this, but that doesn't work either:

---
import type { MarkdownLayoutProps } from 'astro';

type LayoutProps = {
  title: string;
}
@at-the-vr
at-the-vr / login__tests.js
Last active November 26, 2024 02:12
Facebook Login Page Test Cases
// Since Facebook Login Page is essentially a Form element
// asking for User Email/Contact and Password
// The test cases can include UI Element, Input Field and A11y based Validations
// For some ease, the input fields are ID'd as email, pass and loginbutton
// Verify that the email/phone input field is present and enabled
it('should display the email/phone input field', () => {
expect(document.querySelector('#email')).not.toBeNull();
});