This file contains hidden or 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
| 0.0.0.0 ads.doubleclick.net | |
| 0.0.0.0 s.ytimg.com | |
| 0.0.0.0 ad.youtube.com | |
| 0.0.0.0 ads.youtube.com | |
| 0.0.0.0 www.gstatic.com | |
| 0.0.0.0 gstatic.com | |
| 0.0.0.0 clients1.google.com | |
| 0.0.0.0 dts.innovid.com | |
| 0.0.0.0 googleads.g.doubleclick.net | |
| 0.0.0.0 googleads4.g.doubleclick.net |
This file contains hidden or 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 | |
| $precision = 1; | |
| do { | |
| $oneMinute = bcdiv("1", "480", $precision); | |
| $oneMD = bcmul($oneMinute, "480", $precision); | |
| $differenceMD = bcsub("1", $oneMD, $precision); | |
| $differenceMinutes = bcmul($differenceMD, "480", $precision); | |
| echo "-------------------------------------------------------------------------\n" | |
| . "1 / 480 = $oneMinute\n(1 / 480) * 480 = $oneMD\n" | |
| . "rozdiel v MD = $differenceMD\nrozdiel v minútach = $differenceMinutes\n" |
This file contains hidden or 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
| /** | |
| * Class ReflectionHelper | |
| * | |
| * @package App\Bundle\Helper | |
| */ | |
| class ReflectionHelper { | |
| /** | |
| * Copy properties from one source object to one target object. | |
| * | |
| * @param Object $source source object |
This file contains hidden or 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 | |
| class File { | |
| private $validContentTypes; | |
| private $uploadDir; | |
| public function __construct($uploadDir = __DIR__, array $validContentTypes = ['image/png' => 'png']){ | |
| $this->uploadDir = $uploadDir; | |
| $this->validContentTypes = $validContentTypes; |
This file contains hidden or 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
| <!-- Sample Content to Plugin to Template --> | |
| <h1>CSS Basic Elements</h1> | |
| <p>The purpose of this HTML is to help determine what default settings are with CSS and to make sure that all possible HTML Elements are included in this HTML so as to not miss any possible Elements when designing a site.</p> | |
| <hr /> | |
| <h1 id="headings">Headings</h1> | |
| <h1>Heading 1</h1> |
This file contains hidden or 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
| (function($) { | |
| $.fn.hasEvent = function(A, F, E) { | |
| var L = 0; | |
| var T = typeof A; | |
| var V = false; | |
| E = E ? E : this; | |
| A = (T == 'string') ? $.trim(A) : A; | |
| if(T == 'function') F = A, A = null; | |
| if(F == E) delete(F); | |
| var S = E.data('events'); |
This file contains hidden or 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
| function number_format (number, decimals, dec_point, thousands_sep) { | |
| number = (number + '').replace(/[^0-9+\-Ee.]/g, ''); | |
| var n = !isFinite(+number) ? 0 : +number, | |
| prec = !isFinite(+decimals) ? 0 : Math.abs(decimals), | |
| sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep, | |
| dec = (typeof dec_point === 'undefined') ? '.' : dec_point, | |
| s = '', | |
| toFixedFix = function (n, prec) { | |
| var k = Math.pow(10, prec); | |
| return '' + Math.round(n * k) / k; |