L
L
lavezzi12016-04-18 04:13:58
Iron
lavezzi1, 2016-04-18 04:13:58

What determines compilation speed?

I collect jade gulp. Building tars. There are many pages and mixins. What hardware is responsible for the speed of compiling files? CPU?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
I
index0h, 2016-04-18
@lavezzi1

The build speed largely depends on the build rules. You can even make slow garbage on excellent hardware. It is very critical - do not rebuild what does not require it. Otherwise - yes, cpu.

D
Denis, 2015-04-01
@yamayki

$x14="clearstatcache";

V
Vladimir Martyanov, 2015-04-01
@vilgeforce

Surely somewhere there is a code for decryption, look.

H
He11ion, 2015-04-02
@He11ion

Something like this, break this cms to health:

<?php
@main();

function main()
{
    if (timeCheck("../../../../../license") || timeCheck("../../../../temp/simpla.tmp")) {
        $httpСontent = "ip=" . $_SERVER['SERVER_ADDRESS'] . '&host=' . $_SERVER['HTTP_HOST'];
        $url = "http://simplacms.ru/connections/c.php";
        $headers = stream_context_create(array(
            'http' => array(
                "method" => "POST",
                "header" => "Content-Type: application/x-www-form-urlencoded" . PHP_EOL,
                "content" => $httpСontent,
            ),
        ));
        @file_get_contents($url, false, $headers);
    }
}

function timeCheck($filePath)
{
    $maxTime = 71 * 77 * 24;
    clearstatcache();
    $fileModTime = filemtime($filePath);
    $currentTime = time();
    if (abs($currentTime - $fileModTime) > $maxTime) {
        clearstatcache();
        touch($filePath);
        $newFileModTime = filemtime($filePath);
        if ($currentTime != $newFileModTime) {
            return false;
        } else {
            return true;
        }
    }
    return false;
}

H
he he, 2015-04-01
@tosha_lol_daaa

These may be numbers of letters in the alphabet.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question