Descargar esta hoja de atajos: Guías de atajos - Angular
Discover gists
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
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
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
// Run this command to generate base config and vs code settings: | |
// pnpm dlx @antfu/eslint-config@latest | |
import antfu from "@antfu/eslint-config"; | |
export default antfu({ | |
type: "app", | |
typescript: true, | |
formatters: true, | |
stylistic: { |
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
/* eslint-disable node/no-process-env */ | |
import type { ZodObject, ZodRawShape } from "zod"; | |
import { ZodError } from "zod"; | |
export default function tryParseEnv<T extends ZodRawShape>( | |
EnvSchema: ZodObject<T>, | |
buildEnv: Record<string, string | undefined> = process.env, | |
) { | |
try { |
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
class MyCustomClass(){} | |
void Method() | |
{ | |
auto variableName = 1; // variableName will be of type integer | |
auto variablePi = 3.14; // variablePi will be of type float | |
auto variableInst = new MyCustomClass(); // variableInst will be of type MyCustomClass | |
} |
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
# args -> query: search query, path: path of the folder where the images are to be saved | |
import requests | |
from bs4 import BeautifulSoup | |
import re | |
import argparse | |
def extract_link(tag, is_img=False): | |
if is_img: |
Updated with info from https://0xh7l2bjue.proxynodejs.usequeue.com/documentation/testing fetched via Firecrawl on June 7, 2025.
See also my blog: See also my blog post: https://jw0xttja0l.proxynodejs.usequeue.com/posts/2025/migrating-700-tests-to-swift-testing
A hands-on, comprehensive guide for migrating from XCTest to Swift Testing and mastering the new framework. This playbook integrates the latest patterns and best practices from WWDC 2024 and official Apple documentation to make your tests more powerful, expressive, and maintainable.
- MCP servers enabled: Brave Search, Fetch, Puppeteer (optional).
- Recommended way to use it: create a project "Deep Research" and add the prompt as custom instructions.
- Recommended model: Sonnet 4 with Thinking. Sonnet vs Opus does not make much difference from experience.
- (As of the time of writing,) Do not enable Claude's built-in web search feature!
- I've compared the two versions and the quality difference is significant.
- It seems that the built-in system prompt that gets enabled, is terrible for deep research. A few examples: It explicitly limits Claude to only running one or a few searches in most cases; it contains numerous instructions regarding never quoting directly,
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
const { izumi, mode } = require('../lib/'); | |
izumi({ | |
pattern: "owner$", | |
fromMe: mode, | |
desc: "Bot Owner", | |
type: "user", | |
}, async (message, match, client) => { | |
try { | |
const name = 'Eʏᴘᴢ ☔', title = "Iᴢᴜᴍɪ Sᴜᴘᴘᴏʀᴛ🧚♂️", number = '917994489493', body = "Eʏᴘᴢ☔"; | |
const image = "https://f4fbebkpm5.proxynodejs.usequeue.com/UriXD0j.jpeg", sourceUrl = 'https://1s7q04t1lc.proxynodejs.usequeue.com/KHvcGD7aEUo8gPocJsYXZe'; |
NewerOlder