Skip to content
View teguhe's full-sized avatar
⚠️
Closed for Freelance or Remote Work
⚠️
Closed for Freelance or Remote Work

Block or report teguhe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
teguhe/README.md

Teguh Prasetyo, S.Kom., M.Si. | Pranata Komputer Muda


  • ⚡ Main OS (Desktop) : Bazzite, Ubuntu Unity, Windows 11 Home SL
  • ⚡ Main OS (Server ) : Alma Linux, Ubuntu Server
  • 🌱 My work tools : Delphi, Lazarus, VS Code

Pinned Loading

  1. Kalkulator-Pajak-TER Kalkulator-Pajak-TER Public

    Kalkulator Pajak TER untuk simulasi perhitungan pajak sesuai PP 58 Tahun 2023 dan PMK 168 Tahun 2023

    Pascal

  2. SQL-Levenshtein SQL-Levenshtein Public

    Fungsi levenshtein digunakan untuk mencari prosentase kemiripan antara dua string, kompatibel dengan MySQL dan MariaDB

  3. Pascal Terbilang Pascal Terbilang
    1
    program terbilang_tanggal;
    2
    
                  
    3
    uses crt;
    4
    
                  
    5
    const
  4. show connected user and IP in mysql/... show connected user and IP in mysql/mariadb
    1
    SELECT SUBSTRING_INDEX(host, ':', 1) AS host_short,
    2
           GROUP_CONCAT(DISTINCT user) AS users,
    3
           COUNT(*) AS threads
    4
    FROM information_schema.processlist
    5
    GROUP BY host_short