Skip to content
View buglss's full-sized avatar
Block or Report

Block or report buglss

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
buglss/README.md

Pinned

  1. cronjo cronjo Public

    Lets you create scheduled jobs. Unlike other packages, it uses the power of the cronti package. So you don't need to master crontime expressions to create scheduled jobs.

    JavaScript

  2. node-red-crontinject node-red-crontinject Public

    It is an extended clone of core inject node with cronti package.

    HTML 2 1

  3. [TR]: Özel bir flat json'dan komplek... [TR]: Özel bir flat json'dan kompleks bir json üretir. [EN]: Generates a complex json from a specific flat json.
    1
    /**
    2
     * Flat JSON Yapısı: <json|group,key,value> 
    3
     *   group <string>: Anahtarlanmış birden fazla değeri gruplamak için kullanılan ifadedir.
    4
     *                   Eğer işaretçiye ait bir grup ise işaretçinin group değeri ve key değeri ile isimlendirilmelidir. (group.key)
    5
     *   key <string>: Anahtar ifadesidir. JSON içinde benzersiz olmalıdır.
  4. [EN] It is a function that assigns t... [EN] It is a function that assigns the specified value to a nested object according to the specified path. If the object is not sent as a parameter, a new object is created and returned. [TR] Belirtilen değeri belirtilen path'e göre nested bir objede atama yapan fonksiyondur. Eğer parametre olarak obje gönderilmezse yeni bir obje oluşturup döndürülür.
    1
    /* 
    2
     * * STRUCTURE [EN]
    3
     * - .: Character used to separate the path of Keys/Fields. (key.key.key...)
    4
     * 
    5
     * * YAPI [TR]
  5. PHP ile LDAP Kimlik Doğrulama PHP ile LDAP Kimlik Doğrulama
    1
    <?php
    2
    
                  
    3
    /*
    4
        LDAP üzerinden kimlik doğrulama yapmak için kullanılır.
    5
        Komut satırından parametre ile beslenir.
  6. [EN] The function that provides the ... [EN] The function that provides the data of the specified path from an nested object to be value. [TR] Nested bir objeden belirtilen path'e ait verinin getirilmesini sağlayan bir fonksiyondur.
    1
    /* 
    2
     * * STRUCTURE [EN]
    3
     * - .: Character used to separate the path of Keys/Fields. (key.key.key...)
    4
     * - [<number>]: The character used to return the relevant element of the Array type data.
    5
     * - >: Character used to search (find method) in Array type data.