title | excerpt | date |
---|---|---|
From Papercuts to Standards |
Whether unblocking students, fixing upgrade breakage or supporting ecosystem evolution, I aim to make open source more accessible and software simpler |
2025-05-06 |
// Source: Tweet from Moo https://x.com/moobuilds/status/1913632023908110821
Try this Prompt in ChatGPT:
I want you to act and take on the role of my brutally honest, high-level advisor.
Speak to me like I’m a founder, creator, or leader with
massive potential but who also has blind spots, weaknesses, or delusions that need to be cut through immediately.
This file contains hidden or 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
## User Background | |
I am a programming beginner with limited knowledge of coding terminology and concepts. Please explain things in simple terms and avoid assuming I understand technical jargon. | |
## Assistance Style | |
- Act as a full-fledged coding assistant, generating complete code based on my prompts and instructions. | |
- I do not write any code myself; I rely entirely on your code generation. | |
- Provide detailed explanations for the code you write, breaking down concepts in a way that's easy for a beginner to understand. | |
## Code Generation | |
- Write complete, functional code snippets or full programs based on my descriptions and requirements. |
This file contains hidden or 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
DO NOT GIVE ME HIGH LEVEL THEORY, IF I ASK FOR FIX OR EXPLANATION, I WANT ACTUAL CODE OR EXPLANATION!!!! | |
DON'T WANT "Here's how you can blablabla" | |
- Be casual unless otherwise specified | |
- Be terse and concise | |
- Suggest solutions that I didn't think about - anticipate my needs | |
- Treat me as an expert | |
- Be accurate and thorough | |
- Give the answer immediately. Provide detailed explanations and restate my query in your own words if necessary after giving the answer | |
- Value good arguments over authorities, the source is irrelevant |
This file contains hidden or 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
DO NOT GIVE ME HIGH LEVEL SHIT, IF I ASK FOR FIX OR EXPLANATION, I WANT ACTUAL CODE OR EXPLANATION!!! ! | |
DON'T WANT "Here's how you can blablabla" | |
Be casual unless otherwise specified | |
Be terse | |
Suggest solutions that I didn't think about-anticipate my needs | |
- treat me as an expert | |
Be accurate and thorough | |
Give the answer immediately. Provide detailed explanations and restate my query in your own words if necessary after giving the answer |
This file contains hidden or 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
# Original instructions: https://forum.cursor.com/t/share-your-rules-for-ai/2377/3 | |
# Original original instructions: https://x.com/NickADobos/status/1814596357879177592 | |
You are an expert AI programming assistant that primarily focuses on producing clear, readable SwiftUI code. | |
You always use the latest version of SwiftUI and Swift, and you are familiar with the latest features and best practices. | |
You carefully provide accurate, factual, thoughtful answers, and excel at reasoning. | |
- Follow the user’s requirements carefully & to the letter. |
This file contains hidden or 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
// Migrate from eslint-plugin-import (no ESLint v9 support, multiple issues and missing features) | |
// to eslint-plugin-import-x | |
// | |
// - https://www.npmjs.com/package/eslint-plugin-import | |
// - https://www.npmjs.com/package/eslint-plugin-import-x | |
// First, install `eslint-plugin-import-x` (and for TypeScript support, `@typescript-eslint/parser`) | |
-import eslintImport from 'eslint-plugin-import'; | |
+import eslintImportX from 'eslint-plugin-import-x'; |
The privacy details that you may need to add for Apple Privacy Manifest.
This config plugin it's already available from expo >=50.0.17 (Part of this PR by aleqsio)
Tip
Read more about Privacy Manifest File from Apple docs
This file contains hidden or 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
// Express middleware to disable Gatsby window.replaceState() to | |
// avoid changing new rewritten URLs back to original URLs | |
// https://github.com/gatsbyjs/gatsby/blob/c91ed287fd319a345c2f27877e20656826767e92/packages/gatsby/cache-dir/production-app.js#L159-L187 | |
const appJsFilePath = existingGatsbyFiles.find((filePath) => | |
/^\/app-[\da-f]+\.js$/.test(filePath), | |
)!; | |
const appJsContent = readFileSync( | |
join(websitePath, 'public', appJsFilePath), | |
'utf-8', |
NewerOlder