Skip to content

Instantly share code, notes, and snippets.

View AniruddhaAdak's full-sized avatar
🪄
Creating

ANIRUDDHA ADAK AniruddhaAdak

🪄
Creating
View GitHub Profile
@AniruddhaAdak
AniruddhaAdak / TO-DO-APP.jsx
Created March 23, 2025 14:05
Description: A classic app to manage tasks. Key Features:Add, edit, and delete tasks. Mark tasks as completed with a checkbox. Display tasks in a simple list.
import React, { useState, useEffect, useRef } from 'react';
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Checkbox } from "@/components/ui/checkbox"
import { Trash2, Edit, CheckCircle, Circle, XCircle } from 'lucide-react';
import { cn } from "@/lib/utils"
import { motion, AnimatePresence } from 'framer-motion';
interface Todo {
id: string;
@AniruddhaAdak
AniruddhaAdak / ManusBackendPrompt.md
Last active March 12, 2025 09:57
20 advanced prompts for backend web development challenge using Manus ai.

Advanced Backend Development Prompts

This repository contains 20 advanced prompts for backend web development challenges. These prompts are crafted to push the boundaries of technical expertise and creativity, focusing on complex, real-world problems in backend systems. Each prompt includes a title and a detailed description of the task, making them ideal for developers, researchers, or anyone looking to explore cutting-edge backend development concepts.

How to Use

Use these prompts to:

  • Challenge your problem-solving skills.
  • Explore advanced backend development techniques.
  • Inspire innovative projects or solutions.