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
import {writeFile} from 'fs/promises'; | |
import * as cheerio from 'cheerio'; | |
// https://github.com/badgen/badgen.net/blob/main/pages/api/npm.ts#L165 | |
// https://github.com/npm/documentation/issues/1231 | |
/** | |
* Prompt: | |
* | |
* Hello! I need a well-structured Node.js script that retrieves and processes NPM package dependents with these specific requirements: |
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
import fs from 'fs/promises'; | |
/** | |
* Prompt: | |
* | |
* I need a Node.js script that interacts with the GitHub API to fetch information about my repositories. The script should: | |
* | |
* - Use the GitHub API to fetch all repositories for a specific user, separating them into own repositories and forked repositories. | |
* - For each repository, fetch the package.json file and extract the dependencies and devDependencies. | |
* - If the repository is a monorepo (contains a workspaces field in package.json), recursively search for package.json files in subdirectories, excluding certain directories. |
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
import {dedupeMixin} from '@open-wc/dedupe-mixin'; | |
/** | |
* ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg) | |
* | |
* Deeply inspired by Konnor Rogers' approach to [making Lit components morphable](https://www.konnorrogers.com/posts/2024/making-lit-components-morphable). | |
* | |
* This mixin ensures that the property is reset to its initial value when the attribute is removed. | |
* It applies to properties that have `reflect: true` and works even with those initialized as undefined, null, or false. | |
* |
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
import { html, LitElement } from 'lit'; | |
import { styles } from './styles/pe-pe-styles.css.js'; | |
// https://github.com/KonnorRogers/form-associated-helpers/blob/main/exports/mixins/lit-form-associated-mixin.js | |
/** | |
* Creates an object with a getter for properties, allowing for the dynamic creation of properties. | |
* @param {Object} props - The properties to be included in the object. | |
* @returns {Object} An object with a `properties` getter that returns a new objec. | |
*/ |
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
// @ts-nocheck | |
import path from 'node:path'; | |
import {fileURLToPath} from 'node:url'; | |
import importPlugin from 'eslint-plugin-import'; | |
import {configs as wc} from 'eslint-plugin-wc'; | |
import {configs as lit} from 'eslint-plugin-lit'; | |
import tseslint from 'typescript-eslint'; | |
import tsParser from '@typescript-eslint/parser'; | |
import html from '@html-eslint/eslint-plugin'; | |
import eslintConfigPrettier from 'eslint-config-prettier'; |
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
/** | |
* Checks if an element should be ignored. | |
* @param {Element} element - The DOM element to check. | |
* @param {Array} [exceptions=['dialog', '[popover]']] - Array of Elements to ignore when checking the element. | |
* @returns {boolean} True if the element should be ignored by a screen reader, false otherwise. | |
*/ | |
const isElementInvisible = (element, exceptions = ['dialog', '[popover]']) => { | |
if (!element || !(element instanceof HTMLElement)) { | |
return false; | |
} |
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
// https://www.abeautifulsite.net/posts/converting-a-url-object-to-a-plain-object-in-java-script/ | |
const url = new URL('https://api.chucknorris.io/jokes/random'); | |
function urlToPlainObject(url) { | |
const plainObject = {}; | |
for (const key in url) { | |
if (typeof url[key] === 'string') { | |
plainObject[key] = url[key]; |
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
import { ReactiveController, ReactiveControllerHost } from 'lit'; | |
import { | |
createContext, | |
ContextProvider, | |
ContextConsumer, | |
Context, | |
ContextType, | |
} from '@lit/context'; |
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
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('Custom Menu') | |
.addItem('Move Rows with Keyword', 'moveRowsWithKeywordToNewSheet') | |
.addToUi(); | |
} | |
function moveRowsWithKeywordToNewSheet() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var activeSheet = ss.getActiveSheet(); |
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
(prototype => { | |
if (typeof prototype.requestSubmit === 'function') { | |
return; | |
} | |
const validateSubmitter = (submitter, form) => { | |
if (!(submitter instanceof HTMLElement)) { | |
throw new TypeError('The submitter element is not of type HTMLElement'); | |
} | |
if (submitter.type !== 'submit') { |
NewerOlder