sass/
|
|– base/
| |– _reset.scss # Reset/normalize
| |– _typography.scss # Typography rules
| ... # Etc…
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# This file represents the PNG file structure and its chunks | |
# Based on the PNG file format specification: https://www.w3.org/TR/PNG/ | |
# NB: Some chunks are incomplete, feel free to complete them | |
#TODO: complete some chunks | |
PNG_SIGNATURE: bytes = b'\x89PNG\r\n\x1a\n' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @param int $timeout - max process execution time in seconds until it is terminated | |
**/ | |
function execute($cmd, $stdin = null, $timeout = 600) | |
{ | |
$this->log->debug("executing: " . $cmd . " ". $stdin); | |
$cmd = str_replace("\n", "", $cmd); | |
$cmd = str_replace("\r", "", $cmd); |