Skip to content

Instantly share code, notes, and snippets.

View kelvinpraises's full-sized avatar
🦍
Working...

kelvinpraises

🦍
Working...
View GitHub Profile
import React, { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
const items = [
"Community",
"NFT Marketplace",
"Partnerships",
"Events",
"Blog",
]; // Add more or remove but always try to make it odd or adjust the visibility from the css below
@kelvinpraises
kelvinpraises / fix-dyld-missing-symbol-called-errors-on-m1-macs.md
Created August 7, 2023 19:44 — forked from adrienjoly/fix-dyld-missing-symbol-called-errors-on-m1-macs.md
Fix `dyld[]: missing symbol called` errors when running Node.js programs on M1 Macs

Problem

If you're getting this kind of error when running Node.js programs with binary dependencies that don't support M1 yet, e.g.:

$ yarn test
dyld[51175]: missing symbol called
dyld[51176]: missing symbol called
@kelvinpraises
kelvinpraises / package.json
Created January 10, 2023 22:54 — forked from kim3er/package.json
TypeScript package with ES Module and CommonJS support
{
"name": "example-proj",
"version": "0.0.1",
"description": "",
"exports": {
"./*": {
"import": "./js/*.js",
"require": "./js/*.cjs"
}
},
@kelvinpraises
kelvinpraises / README.md
Created December 24, 2022 10:32 — forked from Tynael/README.md
How to use npx to run gist based scripts