Yutaro Koizumi
2025-09-30
A Frontend Night to Know the Respective Merits of Next.js vs Nuxt
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| import type { Component } from "vue"; | |
| import { | |
| memo, | |
| useEffect, | |
| useLayoutEffect, | |
| useMemo, | |
| useRef, | |
| useState, | |
| useCallback, |
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| import type { Component } from "vue"; | |
| import { | |
| memo, | |
| useEffect, | |
| useLayoutEffect, | |
| useMemo, | |
| useRef, | |
| useState, | |
| useCallback, |
| #!/bin/bash | |
| # Default values | |
| PORT=22 | |
| WITH_PASSPHRASE=false | |
| # Parse CLI arguments | |
| while [[ "$#" -gt 0 ]]; do | |
| case $1 in | |
| --server-name) |
| #!/bin/bash | |
| # Default values | |
| SSH_ENABLE=false | |
| SSH_PORT=22 | |
| SSH_ALLOW_FROM="" | |
| RESET=false | |
| # Args parsing | |
| while [[ "$#" -gt 0 ]]; do |
| #!/bin/bash | |
| # Variables | |
| USERNAME="myuser" | |
| SSH_PORT=22 | |
| EDIT_SSH_PORT=false | |
| SSHD_CONFIG="/etc/ssh/sshd_config" | |
| BACKUP_CONFIG="${SSHD_CONFIG}.bak_$(date +%Y%m%d%H%M%S)" | |
| # Args parsing |
| import { | |
| defineConfig, | |
| presetIcons, | |
| presetTypography, | |
| presetWind3, | |
| transformerDirectives, | |
| transformerVariantGroup, | |
| } from 'unocss'; | |
| export default defineConfig({ |
I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.
The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:
flowchart TD| 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 |
| import argparse | |
| import json | |
| import logging | |
| import os | |
| import re | |
| import shutil | |
| from concurrent.futures import ProcessPoolExecutor, as_completed | |
| from dataclasses import dataclass | |
| from datetime import datetime | |
| from typing import Any, Callable, Dict, List, Literal, Optional, Tuple |