Skip to content

Instantly share code, notes, and snippets.

View pepakriz's full-sized avatar
🎯
Focusing

Josef Kříž pepakriz

🎯
Focusing
View GitHub Profile
{
"tag":"payRequest",
"callback":"https://www.bitlifi.com/api/lightning/lnurl/cb/501347a4-08c3-4a7f-bd29-55f5b4dd98ae",
"minSendable":1000,
"maxSendable":1000000000000,
"commentAllowed":100,
"metadata":"[[\"text/plain\",\"Payment to BitLiFi wallet\"], [\"text/long-desc\",\"Bill:\n- tohle\n- tamto\"]]",
"successAction": {
"tag": "url",
"description": "Thank you for your purchase. Here is your order details",
@pepakriz
pepakriz / recenze.md
Last active August 25, 2023 17:43
Domy Atrea - Koberovy - pasivní dřevostavba - recenze

Domy Atrea - Koberovy - pasivní dřevostavba s rekuperací - recenze

historie úprav

Protože mám podezření na shadowban ze strany google maps, mapy.cz a dalších zdrojů, uvádím zde kopii recenzí, které jsem na těchto serverech původně vystavoval.

Aktuálně také čekám na vyjádření portálu dřevoastavby.cz, kteří společnost Domy Atrea inzerují jako ověřenou, avšak z několika důvodů o nějakém prověření pochybuji. Nemám informaci o klientovi, který by byl redakcí kontaktován k doložení spokojenosti. Také existuje podivné propojení mezi partnery portálu, Centrem pasivního domu a představiteli Domů Atrea a Domy Atrea také na těchto webech často inzerují.

<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
<?php declare(strict_types = 1);
namespace Hele\Sms;
use Nette\Http\Url;
class Test
{
const URL = 'https://foo.com';
{
"event":"onPay",
"data":{
"order":{
"created":"2016-02-16 10:44:39"
},
"reservations":[
{
"slotId":"a43f8d2b-fee0-4755-90b0-c562f9c73d60"
}
<?php
/**
* This file is part of the Grido (http://grido.bugyik.cz)
*
* Copyright (c) 2011 Petr Bugyík (http://petr.bugyik.cz)
*
* For the full copyright and license information, please view
* the file license.md that was distributed with this source code.
*/
@pepakriz
pepakriz / FileResponse.send.phpt
Created August 6, 2012 11:52
Application.Responses/FileResponse.send.phpt
<?php
/**
* Test: Nette\Application\Responses\FileResponse and send.
*
* @author Josef Kříž
* @package Nette\Config
* @subpackage UnitTests
*/
@pepakriz
pepakriz / delete.php
Created July 10, 2012 19:16 — forked from hrach/delete.php
Rekurzivní smazání adresáře v Nette
<?php
$dirContent = Finder::find('*')->from($directory)->childFirst();
foreach ($dirContent as $file) {
if ($file->isDir())
@rmdir($file->getPathname());
else
@unlink($file->getPathname());
}
@pepakriz
pepakriz / ConfigBuilder.php
Created November 1, 2011 16:02
ConfigBuilder for Nette Framework
<?php
/**
* Venne:CMS (version 2.0-dev released on $WCDATE$)
*
* Copyright (c) 2011 Josef Kříž pepakriz@gmail.com
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/