Please note: See character.construction/emoji-categories for more up-to-date listings.
๐ ๐ ๐ ๐คฃ ๐ ๐ ๐
๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฅฐ ๐ ๐ ๐
| import { defineEventHandler, getRequestHeader, readBody } from 'h3' | |
| import { transformContent } from '@nuxt/content/transformers' | |
| // @ts-expect-error Missing imports | |
| import { useStorage, useRuntimeConfig } from '#imports' | |
| export default defineEventHandler(async (event) => { | |
| const secret = getRequestHeader(event, 'X-Gitlab-Token') | |
| const body = await readBody(event) | |
| const commits = body.commits | |
| const config = useRuntimeConfig() |
| // remoteScript.js | |
| (function() { | |
| // Define a global function | |
| window.remoteFunction = function() { | |
| console.log('Remote function called!'); | |
| // You can add more functionality here | |
| }; | |
| // Optionally, you can define more functions or objects | |
| window.anotherRemoteFunction = function(message) { |
| export const shades = [ | |
| 50, | |
| ...Array.from({ length: 9 }).map((_, i) => (i + 1) * 100), | |
| 950, | |
| ]; | |
| export const makeVariable = ({ fallbackValue, name, shade, withVar }) => { | |
| const variable = `--${name}-${shade}`; | |
| const value = fallbackValue ? variable + ", " + fallbackValue : variable; | |
| return withVar ? `var(${value})` : variable; |
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| import type { Component } from "vue"; | |
| import { | |
| memo, | |
| useEffect, | |
| useLayoutEffect, | |
| useMemo, | |
| useRef, | |
| useState, | |
| useCallback, |
Please note: See character.construction/emoji-categories for more up-to-date listings.
๐ ๐ ๐ ๐คฃ ๐ ๐ ๐
๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฅฐ ๐ ๐ ๐
| #!/bin/bash | |
| # Install Agent Skills | |
| # This script installs custom skills for AI coding agents using the Vercel skills CLI | |
| set -e | |
| # Default agents to install for | |
| AGENTS=("codex" "claude-code" "pi" "opencode") | |
| SCOPE="${1:-global}" |