3 col grid

.grid-row {
  display: grid;
  grid-template-columns: 42px repeat(2, minmax(0, 1fr)); /*first col fixed, rest 2 col equal*/
}

cari alacak verecek detay çalışma

SELECT 
CLCARD.LOGICALREF,
    CLCARD.CODE AS [CARİ KODU],
    CLCARD.DEFINITION_ AS [CARİ ÜNVANI],
    -- Vadesi bugün veya geçmiş olanların NET bakiyesi (PAYTRANS üzerinden)
    (SELECT ROUND(SUM(
        CASE WHEN SIGN = 0 THEN TOTAL -- Borç ise (Fatura vb)
             WHEN SIGN = 1 THEN -TOTAL -- Alacak ise (Ödeme vb)
             ELSE 0 END), 2)
     FROM LG_050_01_PAYTRANS 
     WHERE CARDREF = CLCARD.LOGICALREF 
       AND CANCELLED = 0 
       AND DATE_ <= GETDATE() -- Gerçe

cari listesi filtreli


SELECT 
LOGICALREF,
    CODE AS [Kodu],
    DEFINITION_ AS [Firma Ünvanı],
    REPLACE(REPLACE(ADDR1, CHAR(13)+CHAR(10), ' '), CHAR(10), ' ') AS [Adres1],
    REPLACE(REPLACE(ADDR2, CHAR(13)+CHAR(10), ' '), CHAR(10), ' ') AS [Adres2],
    DISTRICT AS [İlçe],
    CITY AS [İl],
    COUNTRY AS [Ülke],
    TELNRS1 AS [Tlf1],
    TELNRS2 AS [Tlf2],
    FAXNR AS [Fax],
    POSTCODE AS [Posta Kodu],
    INCHARGE AS [İlgili Kişi],
    EMAILADDR AS [E Posta],
    TCKNO AS [Tc Kimlik No],

cari için alacak verecek listesi

  --SPI2026000000008

  SELECT *  FROM [LOGODB].[dbo].[LG_050_01_STFICHE] (NOLOCK) where FICHENO LIKE 'EIM2025%' 
  
  SELECT *  FROM [LOGODB].[dbo].LG_500_CLCARD (NOLOCK) where CODE='120.01.018'

  
  select 
  cari.CODE as CariKodu,
  item.CODE as StokKodu,
  [LG_500_01_STLINE].AMOUNT,
  [LG_500_01_STLINE].* from [dbo].[LG_500_01_STLINE]  (NOLOCK) 
  JOIN [dbo].[LG_500_ITEMS] item on item.LOGICALREF = [LG_500_01_STLINE].STOCKREF
  JOIN [dbo].[LG_500_CLCARD] cari on cari.LOGICALREF

subs_mp4

폴더 안에 있는 모든 .mp4 파일에 대해 자막을 다 뽑아버리고 싶을 때 쓰는 반복문 한 줄입니다.
echo 'function subs_mp4() {
    # 1. 경로를 ~/whisper.cpp 로 고정 (찾기 기능 제거)
    local wd="$HOME/whisper.cpp"

    # 2. 폴더 존재 확인
    if [ ! -d "$wd" ]; then
        echo "❌ 오류: $wd 폴더가 없습니다."
        return 1
    fi

    # 3. 실행 파일(main)이 없으면 자동으로 만들기 (Auto-Repair)
    if [ ! -f "$wd/main" ]; then
        echo "⚠️ 실행 파일(main)이 없어 자동으로 생성합니다..."
        curr_dir=$(pwd)
        cd "$wd" && make
        cd "$curr_dir"
        echo "✅ 실행 파일 생성 완료!"
    fi

    # 4. MP4 파일 반복 처리
    ech

irsaliye çalışması

  --SPI2026000000008

  SELECT *  FROM [LOGODB].[dbo].[LG_050_01_STFICHE] (NOLOCK) where FICHENO LIKE 'EIM2025%' 
  
  SELECT *  FROM [LOGODB].[dbo].LG_500_CLCARD (NOLOCK) where CODE='120.01.018'

  
  select 
  cari.CODE as CariKodu,
  item.CODE as StokKodu,
  [LG_500_01_STLINE].AMOUNT,
  [LG_500_01_STLINE].* from [dbo].[LG_500_01_STLINE]  (NOLOCK) 
  JOIN [dbo].[LG_500_ITEMS] item on item.LOGICALREF = [LG_500_01_STLINE].STOCKREF
  JOIN [dbo].[LG_500_CLCARD] cari on cari.LOGICALREF

Legit WU Transfer Bug MoneyGram Transfer CC Fullz PayPal Transfer CashApp Transfer Apple Pay Transfer Skrill Transfer..


_______ JEANSON ANCHETA_______

💻💸 Fresh Logs Pricing 💸💻
🔐 UK Logs / Clean Bank Drops (GBP)
💰 10K GBP = $250
💰 12K GBP = $300
💰 16K GBP = $350
💰 20K GBP = $500
💰 30K GBP = $800

🛡️ Verified • HQ Access • Fast Delivery
💬 DM for escrow or direct 🔥
WESTERN UNION / MONEY GRAM/BANKS LOGINS/BANK TRANFERS/PAYPAL TRANSFERS WORLDWIDE/CASHAPP/ZELLLE/APPLE PAY/SKRILL/VENMO TRANSFER
Telegram:@JeansonCarder     
Group: https://t.me/+2__ynBAtFP00M2Fk                 
Group: https://t.me/+CsF2t7HvV_ljMmU8


Y

st.session_state

"""
Complete st.session_state Tutorial App
This app demonstrates ALL use cases of st.session_state with interactive examples.
"""

import streamlit as st
import pandas as pd
from datetime import datetime, timedelta
import random

# ============================================================================
# PAGE CONFIGURATION
# ============================================================================
st.set_page_config(
    page_title="Session State Tutorial",
    page_icon="

1161. Maximum Level Sum of a Binary Tree

Given the root of a binary tree, the level of its root is 1, the level of its children is 2, and so on. Return the smallest level x such that the sum of all the values of nodes at level x is maximal.
/**
 * Definition for a binary tree node.
 * function TreeNode(val, left, right) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 * }
 */
/**
 * @param {TreeNode} root
 * @return {number}
 */
var maxLevelSum = function(root) {
    // Edge case: if the tree is empty (not typical for this problem)
    if (!root) return 0;

    // Queue for BFS - start with the root
    const queue = [root]

 

html template

# Option 1: Modern Vibrant Gradient (Sunset Orange to Pink)
st.markdown("""
<div style='
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFA07A 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
'>
    <h2 style='
        color: white;
        font-weight: bold;
        margin: 0;
        font-size: 28px;
        l

Animated Rotating Headlines

A better way to animate your headlines that goes beyond the standard way that we do it. https://www.youtube.com/watch?v=SEoEtsA3epY https://learn.websquadron.co.uk/codes/#text-rotate
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />

<!-- Carousel -->
<div class="swiper looping-words">
  <div class="swiper-wrapper">
    <div class="swiper-slide">Get noticed fast</div>
    <div class="swiper-slide">Win more leads</div>
    <div class="swiper-slide">Sell with ease</div>
    <div class="swiper-slide">Build real trust</div>
    <div class="swiper-slide">Grow every day</div>
  </div>
</div>

<!-- Swiper Scripts -->
<script sr

Full-Stack AI & Automation Suite

This template deploys a comprehensive ecosystem for building and hosting private AI agents and workflows: - **Workflow Engine:** n8n backed by a PostgreSQL 16 database. - **Local LLM Host:** Ollama configured with NVIDIA GPU passthrough for high-performance local inference. - **Web Interface:** Open WebUI for interacting with Ollama models and managing chats. - **Security:** Cloudflare Tunnel (cloudflared) to expose services safely without opening firewall ports. - **Maintenance:** Watchtower to keep all images updated automatically. _Prerequisites: Requires an .env file for credentials (Postgres, n8n encryption, Cloudflare token) and NVIDIA Container Toolkit for GPU support._
services:
  postgres:
    image: postgres:16-alpine
    container_name: n8n-postgress
    restart: unless-stopped
    environment:
      - POSTGRES_USER=${POSTGRES_USER}
      - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
      - POSTGRES_DB=${POSTGRES_DB}
    volumes:
      - ./postgres_data:/var/lib/postgresql/data

  n8n:
    image: n8nio/n8n:latest
    container_name: n8n
    restart: unless-stopped
    environment:
      - DB_TYPE=postgresdb
      - DB_POSTGRESDB_DATABASE=${POSTGRES_DB}
      - 

how to create and initialize a string array

package main

import "fmt"

func main() {
	fruits := [4]string{"Apple", "Banana", "Orange", "Grapes"}
	fmt.Println("Fruits array:", fruits)
}

how to print text in the terminal in goland?

// import fmt #format package
// fmt.Println

package main

import "fmt"

func main() {
	var numbers [5]int
	fmt.Println("Default values in an integer array:", numbers)
}

Css Color: from var

/*
https://jsbin.com/setohiqiwe/edit?html,css,output
*/

:root {
	--color: red;
}

.a, .b, .c {
	margin: 1rem;
	padding: 0.55rem;
}


.a {
	background: hsl(from var(--color) h s 90%);
}

.b {
	background: hsl(from var(--color) h s calc(l + 40));
}

.c {
	background: hsl(from var(--color) h s l / 0.2);
}




/*

Converted to HSL, red is hsl(0 100% 50%), thus:

Setting l to 90%,
Is just hsl(0 100% 90%).

Adding 40 to l,
Add the l components together:
hsl(0 100% (50% + 40%)) → hsl(0 100% 90%)

Chan

Get-IniContent

function Get-IniContent ($filePath) {
    $ini = @{}
    switch -regex -file $FilePath {
        "^\[(.+)\]" {
            # Section
            $section = $matches[1]
            $ini[$section] = @{}
            $CommentCount = 0
        }
        "^(;.*)$" {
            # Comment
            $CommentCount++
            $name = "Comment$($CommentCount)"
            $value = $matches[1]
            $ini[$section][$name] = $value
        }
        "(.+?)\s*=(.*)" {
            #