Ay: Ağustos 2012

  • banka iban kodları

    Turkey 26 5n,17c TRkk BBBB BXCC CCCC CCCC CCCC CC B = National bank code
    X = Reserved for future use (currently “0”)
    C = Account number
    kk kontrol kodu

    ABN AMRO BANK N.V.-88
    ADABANK A.S.-100
    AK ULUSLARARASI BANKASI A.S.-107
    AKBANK T.A.S.-46-AL BARAKA TURK OZEL FINANS KUR.A.S.-203
    ALTERNATİFBANK A.S.-124
    ANADOLU FİNANS KURUMU A.S.-206
    ANADOLUBANK A.S.-135
    ARAP TÜRK BANKASI A.S.-91
    ASYA FİNANS KURUMU A.S.-208
    BANCA DI ROMA S.P.A.-87
    BANKEUROPA BANKASI A.S.-103
    BAYINDIRBANK A.S.-29
    C KREDI VE KALKINMA BANKASI A.S.
    142-CALYON BANK T.A.S.-121
    CITIBANK A.S.-92
    ÇALIK YATIRIM BANKASI A.S.-143
    DENIZ BANK A.S.-134
    DEUTSCHE BANK A.S.-115
    DİLER YATIRIM BANKASI A.S.-138
    FAMILY FINANS KURUMU A.S.-204
    FINANSBANK A.S.-111
    GSD YATIRIM BANKASI A.S.-139
    HALK BANKASI-12
    HSBC BANK A.S.-123
    IMKB TAKAS VE SAKLAMA BANKASI-132
    İLLER BANKASI-4
    JP MORGAN CHASE BANK NA MERK COL.OH-98
    KOÇBANK A.S.-93
    KUVEYT TÜRK EVKAF FINANS KURUMU A.S-205
    MNG BANK A.S.-108-NUROL YATIRIM BANKASI A.S.-141
    OYAK BANK A.S.-99
    SOCIETE GENERALE-122-ŞEKERBANK T.A.S.-59
    T.C.MERKEZ BANKASI A.Ş.-1
    T.DIŞ TICARET_BANKASI A.S.-71
    T.EKONOMİ BANKASI A.S.-32
    T.GARANTİ BANKASI A.S.-62
    T.IHRACAT KREDI BANKASI A.S.-16
    T.IS BANKASI A.S.-64
    T.KALKINMA BANKASI A.S.-17
    T.SINAİ KALK. BANKASI A.S.-14
    T.VAKIFLAR BANKASI T.A.O.-15
    TAIB YATIRIMBANK A.S.-116
    TC ZIRAAT BANKASI-10
    TEKFENBANK A.S.-125
    TEKSTIL BANKASI A.S.-109
    TURKISHBANK-96
    WESTDEUTSCHE LANDESBANK GIROZENTRAL-106
    YAPI VE KREDI BANKASI A.S.-67

  • mp4 dosyaların içinden mp3 çıkarma

    @ECHO OFF
    REM ########################################################################
    REM # A Windows XP cmd.com script to batch convert mp4 files to mp3. #
    REM # #
    REM # Created by DieselDragon on 10th Nov 2010CE, derived from a copyright #
    REM # (C) 2008CE work of Andrew Boden found at #
    REM # http://wiki.videolan.org/How_to_Batch_Encode #
    REM # Changed, cited and redistributed under the GNU GPL as detailed below #
    REM # #
    REM # This program is free software: you can redistribute it and/or modify #
    REM # it under the terms of the GNU General Public License as published by #
    REM # the Free Software Foundation, either version 3 of the License, or #
    REM # (at your option) any later version. #
    REM # #
    REM # This program is distributed in the hope that it will be useful, #
    REM # but WITHOUT ANY WARRANTY; without even the implied warranty of #
    REM # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
    REM # GNU General Public License for more details. #
    REM # #
    REM # You should have received a copy of the GNU General Public License #
    REM # along with this program. If not, see .#
    REM # #
    REM # Version 1.10 (Derivative – DieselDragon, November 2010CE) #
    REM # Uses VideoLAN VLC 1.1.4 (www.videolan.org) #
    REM # Gracefully handles commas and apostrophes in file names. #
    REM # Not aware of any other characters needing graceful handling. #
    REM # 128kbps encoding with 44100 sampling. #
    REM ########################################################################

    FOR /R %%G IN (*.mp4) DO (CALL :SUB_VLC “%%G”)
    FOR /R %%G IN (*.mp4.mp*) DO (CALL :SUB_RENAME “%%G”)
    GOTO :eof

    :SUB_VLC
    SET _firstbit=%1
    SET _qt=”
    CALL SET _newnm=%%_firstbit:%_qt%=%%
    SET _commanm=%_newnm:,=_COMMA_%
    REM echo %_commanm%

    ECHO Transcoding %1
    REM Here’s where the actual transcoding/conversion happens. The next line
    REM fires off a command to VLC.exe with the relevant arguments:
    CALL “C:\Program Files\VideoLAN\VLC\vlc” -I dummy -v %1 :sout=#transcode{vcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100}:standard{access=”file”,mux=dummy,dst=”%_commanm%.mp3″} vlc://quit

    REM Having no SLEEP-esque command, we have to trick DOS/Windows into pausing
    REM for a bit between encode ops – To give the host OS a chance to do what it
    REM needs to – Via clever use of the PING utility:
    REM (Thanks to http://www.computing.net/answers/programming/dos-command-for-wait-5-seconds/11192.html for the tip! :-)
    PING -n 1 -w 5000 1.1.1.1 > NUL
    GOTO :eof

    :SUB_RENAME
    SET _origfnm=%1
    SET _endbit=%_origfnm:*.mp4=%
    CALL SET _newfilenm=%%_origfnm:.mp4%_endbit%=.mp3%%
    SET _newfilenm=%_newfilenm:_COMMA_=,%
    COPY %1 %_newfilenm%
    DEL %1
    GOTO :eof

    :eof
    REM My own little addition to prevent the batch window from “vanishing” without
    REM trace at the end of execution, as if a critical error had occurred.
    PAUSE