Skip to content
View mobinjavari's full-sized avatar

Organizations

@rtlCode

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. github-statistics-vue github-statistics-vue Public

    Github statistics web

    Vue 1

  2. v2ray-api-php v2ray-api-php Public

    V2Ray (X-UI & 3X-UI) API with PHP

    PHP 53 12

  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);