| Kavram | Bir Cümleyle | Nerede Yaşar | Ne Zaman Tetiklenir |
|---|---|---|---|
| Rules | AI'ın nasıl davranacağını belirler | .cursor/rules/ |
Her zaman / otomatik / agent kararıyla / manuel |
| Commands | Tekrar eden prompt'ları kısayola bağlar | .cursor/commands/ |
Kullanıcı /komut yazınca |
| Skills | AI'a alan uzmanlığı öğretir | .cursor/skills/ |
Agent gerekli gördüğünde otomatik yükler |
| Subagents | Paralel çalışan uzman agent'lar | .cursor/agents/ |
Agent delege ettiğinde veya manuel çağrıda |
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
| public class HomeController : AbpController | |
| { | |
| private static readonly DateTime StartupTime = DateTime.UtcNow; | |
| private static readonly Stopwatch Stopwatch = Stopwatch.StartNew(); | |
| public ActionResult Index() | |
| { | |
| return Redirect("~/swagger"); | |
| } |
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
| { | |
| "data": { | |
| "plan": { | |
| "id": 16, | |
| "created_at": "2025-01-19T17:02:08.818763+03:00", | |
| "updated_at": "2025-01-19T17:02:08.818763+03:00", | |
| "deleted_at": null, | |
| "name": "plan 1", | |
| "start_point": { | |
| "latitude": 40.748817, |
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
| import React, { useEffect } from "react"; | |
| import { useOne, useResourceParams, useInvalidate, HttpError, useCustomMutation } from "@refinedev/core"; | |
| import { SheetHeader, SheetTitle } from "@app/components/sheet"; | |
| import { Sheet, SheetContent } from "@app/components/sheet"; | |
| import type { CreateOrUpdateProfileRequest, ErrorResponseDto, ProfileEntity } from "@app/api"; | |
| import { Button } from "@app/@shadcn/ui/button"; |
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
| import { plainToClass } from 'class-transformer'; | |
| import { PromptEntity } from '@app/modules/prisma/prompt.entity'; | |
| import { AdminEntity } from '@app/modules/prisma/admin.entity'; | |
| import { ProfileEntity } from '@app/modules/prisma/profile.entity'; | |
| import { UserEntity } from '@app/modules/prisma/user.entity'; | |
| type Constructor<T = {}> = new (...args: any[]) => T; | |
| function WithClassMapping<T extends Constructor>(Base: T) { |
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
| package main | |
| import ( | |
| "github.com/gofiber/fiber/v2" | |
| "github.com/gofiber/fiber/v2/log" | |
| "gorm.io/driver/postgres" | |
| "gorm.io/gorm" | |
| "gorm.io/gorm/clause" | |
| "gorm.io/gorm/logger" | |
| ) |
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
| release_type=$1 | |
| version="" | |
| if [ -z "$release_type" ]; then | |
| release_type="--patch" | |
| fi | |
| if [ "$release_type" = "--major" ]; then | |
| release_type="major" | |
| elif [ "$release_type" = "--minor" ]; then |
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
| { | |
| "airports": [ | |
| { | |
| "refCode": "SAW", | |
| "city": "İstanbul Anadolu", | |
| "name": "Sabiha Gökçen Havalimanı - İstanbul Anadolu" | |
| }, | |
| { | |
| "refCode": "IST", | |
| "city": "İstanbul Avrupa", |
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
| asdasdasd |
NewerOlder