Skip to content

Instantly share code, notes, and snippets.

View buraxta's full-sized avatar

Burak Güllüler buraxta

View GitHub Profile

Server log kayıtlarını sorunlu (boş array) ve sorunusuz response alma durumuna göre inceledim, inceleme sonucunu sizlerle paylaşıyorum.

Senaryo 1: "Dolu Aldığım" (Başarılı İstek)

Bu testte, tcpdump çıktısında (saat 13:03:48) şunları görüyoruz:

  1. backend'den livekit'e giden isteğin kendisi:
    13:03:48.096833 IP localhost.42468 > localhost.pss: Flags [P.]...
    POST /twirp/livekit.SIP/ListSIPOutboundTrunk HTTP/1.1
    

Host: livekit.enmdigital.com

public async Task<ServiceResult<List<SIPOutboundTrunkInfo>>> GetOutboundTrunksAsync()
{
if (!await _permissionChecker.HasPermissionAsync(PermissionConstants.Trunk.List))
{
return ServiceResult<List<SIPOutboundTrunkInfo>>.Fail("Trunk listeleme yetkiniz yok.");
}
var tenantKey = _tenantProvider.GetTenantKey();
// --- YENİ EKLENECEK TRY-CATCH ---
@buraxta
buraxta / docker-compose.yml
Created September 19, 2025 19:10
docker-compose.yml
version: "3.7"
volumes:
tiledesk-datadb:
services:
dashboard:
image: buraxtaa/tiledesk-dashboard-custom:latest
container_name: dashboard
restart: always
ports:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fenerbahçe Basketbol Altyapı Seçmeleri Sonucu - İkinci Aşama</title>
</head>
<body style="margin: 0; font-family: Arial, Helvetica, sans-serif; background-color: #002b5c; color: white; padding: 20px;">
<table width="100%" cellpadding="0" cellspacing="0" style="max-width: 600px; margin: 0 auto; background-color: #002b5c;">
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fenerbahçe Basketbol Altyapı Seçmeleri Sonucu</title>
</head>
<body style="margin: 0; font-family: Arial, Helvetica, sans-serif; background-color: #002b5c; color: white; padding: 20px;">
<table width="100%" cellpadding="0" cellspacing="0" style="max-width: 600px; margin: 0 auto; background-color: #002b5c;">
"use client";
import React, { useState, useEffect } from "react";
const ScreenSize = () => {
// Ekran boyutunu tutacak state
const [screenSize, setScreenSize] = useState("");
// Ekran boyutunu kontrol eden fonksiyon
const updateScreenSize = () => {
const width = window.innerWidth;
@buraxta
buraxta / mongoose-cheatsheet.md
Created July 17, 2024 12:02
Long and detailed cheatsheet covering various aspects of Mongoos