Skip to content
View mobinjavari's full-sized avatar
😇
TEST
😇
TEST

Organizations

@telefunction

Block or report mobinjavari

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

Pinned Loading

  1. XrayTools/v2ray-api-php XrayTools/v2ray-api-php Public

    3X-UI API with PHP

    PHP 53 13

  2. github-resume github-resume Public

    GitHub Resume

    Vue 1

  3. Smart PAC File for Selective Proxy R... Smart PAC File for Selective Proxy Routing
    1
    function FindProxyForURL(url, host) {
    2
      // ==== Proxy Configuration ====
    3
      var PROXY = "PROXY 127.0.0.1:10808";  // Local proxy
    4
      var DIRECT = "DIRECT";                // No proxy, connect directly
    5
      var DEFAULT = PROXY;                  // Fallback behavior
  4. Telegram Update API Bot Telegram Update API Bot
    1
    <?php
    2
    
                  
    3
    // Read and decode incoming JSON from Telegram
    4
    $input = file_get_contents('php://input');
    5
    $update = json_decode($input, true);