Skip to content
View flangofas's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report flangofas

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. JS: Convert Milliseconds to days? mi... JS: Convert Milliseconds to days? minutes? seconds? or all!
    1
    function convertMiliseconds(miliseconds, format) {
    2
      var days, hours, minutes, seconds, total_hours, total_minutes, total_seconds;
    3
      
    4
      total_seconds = parseInt(Math.floor(miliseconds / 1000));
    5
      total_minutes = parseInt(Math.floor(total_seconds / 60));
  2. Search for specific type files under... Search for specific type files under specific directories using RecursiveFilterIterator
    1
    <?php
    2
     
    3
    $obj =  new FileFinder($argv[1]);
    4
    $obj->setFileType(array_slice($argv, 2));
    5
    $obj->setExcludingDirectories(array('test1'));
  3. slimphp/Slim slimphp/Slim Public

    Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.

    PHP 11.8k 1.9k

  4. slimphp/Slim-Skeleton slimphp/Slim-Skeleton Public

    Slim Framework 4 Skeleton Application

    PHP 1.6k 476