๐Ÿ“ Temporary Note Sharing

Welcome to the Note Sharing System

This is a temporary note-sharing system built with pure PHP. Share your thoughts with unique, time-limited links that expire after 7 days.

โœจ Features

  • ๐Ÿ”’ Secure temporary links with 7-day expiration
  • ๐Ÿ“ Full Markdown support (images, tables, lists, code blocks)
  • ๐Ÿ” Search and sort functionality
  • ๐ŸŒ™ Dark/Light theme with persistent preference
  • ๐Ÿ“ฑ Fully responsive design for mobile and desktop
  • ๐Ÿ˜Š Mood tracking for each thought

๐Ÿ”Œ API Endpoint

Send a POST request to /api/index.php with your thoughts (Note: API uses Portuguese field name "pensamentos" as per specification):

{
  "pensamentos": [
    {
      "id": 1,
      "texto": "Your **markdown** content here",
      "dataHora": "2025-11-13T16:30:00Z",
      "humor": 2,
      "categoriaId": null,
      "linhaDotempo": false
    }
  ],
  "expiraEmSegundos": 604800
}

Response includes a unique loteId for sharing your thoughts.