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 | |
namespace Dnp\DnpPlugins\ImageProcessing; | |
use TYPO3\CMS\Core\Http\RequestFactory; | |
use TYPO3\CMS\Core\Log\LogManager; | |
use TYPO3\CMS\Core\Resource; | |
use TYPO3\CMS\Core\Resource\Processing\ImageCropScaleMaskTask; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; |
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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://composer.typo3.org/" | |
} | |
], | |
"name": "…", | |
"description": "…", | |
"license": "propiertary", |
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 node | |
var fs = require("fs"); | |
var tv = fs.readFileSync("siol.m3u", "UTF-8").split("\n\n"); | |
var tags = []; | |
var iptvs = []; | |
var channels = []; | |
function trim(s) { | |
s = s.replace(/(^\s*)|(\s*$)/gi,""); |