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
Internet Explorer: nastavení vyhledávání přes Google: | |
1. | |
-> nastavení (ozubený kolečko) | |
-> "Spravovat doplňky" | |
-> "Poskytovatelé vyhledávání" | |
2. pokud tam je "Google" tak tenhle bod přeskočit | |
-> "Vhyledat další poskytovatele hledání..." | |
-> najít "Google Search" |
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
from turtle import forward, left, right, exitonclick | |
for i in range(6): | |
for j in range(7): | |
forward(40) | |
left(60) | |
right(120) | |
exitonclick() |
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
<html> | |
<head> | |
<title>Moje stránky</title> | |
<style> | |
.moje-menu { | |
display: flex; | |
justify-content: space-around; | |
} | |
.muj-obsah { |
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 | |
$item1 = 99; | |
$item2 = 199; | |
$item3 = 57; | |
$credits = 355; | |
$profit = new \Money\Money($total, new \Money\Currency('')); | |
list($discount1, $discount2, $discount3) = $profit->allocate([ |
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 | |
error_reporting(E_ALL & ~E_NOTICE); | |
$jmeno = htmlspecialchars($_GET['jmeno']); | |
if (!$jmeno) { | |
$jmeno = 'Kitty'; | |
} | |
$r = rand(0, 255); |
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
INSERT INTO redirects SET type = 3, `from` = 'filtry\\[zeme\\]', `to` = 'filtry[oblast]', created = NOW(); |
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 declare(strict_types = 1); | |
namespace Slevomat\Number; | |
class NumberToWordTranslator extends \Consistence\Object | |
{ | |
public function translate(int $number): string | |
{ | |
$word = $this->translateSpecial($number); |
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 | |
$rule = $argv[1] ?? null; | |
$initial = $argv[2] ?? null; | |
$cellsCount = 64; | |
$loop = false; | |
$loopSteps = 50; | |
function randInitial($cellsCount) { |
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 | |
/** | |
* Case-insensitive realpath() | |
* @param string $path | |
* @return string|false | |
*/ | |
function realpathi($path) | |
{ | |
$me = __METHOD__; |
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 | |
namespace LazyDataMapper; | |
use Nette\Caching\IStorage; | |
use Nette\Caching\Cache as NetteCache; | |
class Cache implements IExternalCache | |
{ |
NewerOlder