Skip to content
View zavan's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report zavan

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

  1. zavan.github.io zavan.github.io Public

    Personal webpage

    HTML

  2. followers2csv followers2csv Public

    Save the followers of a Twitter account to a CSV file.

    JavaScript 1

  3. monetus-fia-bot monetus-fia-bot Public

    A Telegram bot to track the performance of the Monetus FIA investment fund.

    JavaScript 1 1

  4. Import system timezones to MySQL and... Import system timezones to MySQL and configure its default timezone with Ansible
    1
    vars:
    2
      timezone: America/Sao_Paulo
    3
    
                  
    4
    - name: Get current MySQL timezone
    5
      become: yes
  5. Listening to the YouTube Embed Ifram... Listening to the YouTube Embed Iframe time change events without polling player.getCurrentTime()
    1
    // Load the IFrame Player API code asynchronously.
    2
    var tag = document.createElement("script");
    3
    
                  
    4
    tag.src = "https://www.youtube.com/iframe_api";
    5
    var firstScriptTag = document.getElementsByTagName("script")[0];
  6. Pure JS MM/DD input masking Pure JS MM/DD input masking
    1
    <input id="input-id" placeholder="MM/DD" maxlength="5">
    2
    
                  
    3
    <script src="./mmdd_mask.js"></script>
    4
    
                  
    5
    <script>