- zdrojové kódy workshopu: https://github.com/pepakriz/nostr-workshop
- oficiální web nostru & dokumentace: https://nostr.com/
- dokumentace NIPs: https://github.com/nostr-protocol/nips
- přidejte se také do české signal skupiny: https://signal.group/#CjQKINgmpcoiRyF1Hx-rOetUcUfBeKE_M1iO8SSvMRDnZvOdEhCsT0roa4zGTHXAMJOtb6eY
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
{ | |
"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", |
historie úprav
- 25.8.2023 - přidána recenze od Renaty Konopkové
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í.
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
<!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> |
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 declare(strict_types = 1); | |
namespace Hele\Sms; | |
use Nette\Http\Url; | |
class Test | |
{ | |
const URL = 'https://foo.com'; |
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
{ | |
"event":"onPay", | |
"data":{ | |
"order":{ | |
"created":"2016-02-16 10:44:39" | |
}, | |
"reservations":[ | |
{ | |
"slotId":"a43f8d2b-fee0-4755-90b0-c562f9c73d60" | |
} |
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 | |
/** | |
* 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. | |
*/ |
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 | |
/** | |
* Test: Nette\Application\Responses\FileResponse and send. | |
* | |
* @author Josef Kříž | |
* @package Nette\Config | |
* @subpackage UnitTests | |
*/ |
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 | |
$dirContent = Finder::find('*')->from($directory)->childFirst(); | |
foreach ($dirContent as $file) { | |
if ($file->isDir()) | |
@rmdir($file->getPathname()); | |
else | |
@unlink($file->getPathname()); | |
} |
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 | |
/** | |
* Venne:CMS (version 2.0-dev released on $WCDATE$) | |
* | |
* Copyright (c) 2011 Josef Kříž [email protected] | |
* | |
* For the full copyright and license information, please view | |
* the file license.txt that was distributed with this source code. | |
*/ |