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
| package tests; | |
| import delta.Delta; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import static org.junit.Assert.*; | |
| /** | |
| * Created by efik |
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
| // ==UserScript== | |
| // @name CzatRepajr | |
| // @version 1.0 | |
| // @author Magic | |
| // @include /^httpsv:\/\/(www\.)?forum\.miroslawzelent\.pl(\/)?((?!chat).)*$/ | |
| // ==/UserScript== | |
| (function (h, s, m, c) { | |
| //var PATH = 'http://localhost:81/czatrepajr/' | |
| var PATH = 'http://chat.syntax-shell.me/' |
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
| <form enctype="multipart/form-data" action="" method="post"> | |
| <input type="file" name="photo"/><br/> | |
| <input type="submit" value="Wyślij"/> | |
| </form> | |
| <?php | |
| if($_SERVER["REQUEST_METHOD"] !== "POST" ){ | |
| exit; |
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 Repository | |
| { | |
| public: | |
| template <typename _Resource = ServiceInterface> | |
| bool create(const string& resourceId_); | |
| template <typename _Resource = ServiceInterface> | |
| _Resource& get(const string& resourceId_); | |
| void release(const string& resourceId_); |
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 | |
| ini_set("display_errors", 1); | |
| error_reporting(E_ALL); | |
| session_start(); | |
| $_SESSION['name'] = implode("", range("A", "Z", 3) ); | |
| $_SESSION['time'] = time(); | |
| // end script |
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
| #include "ServiceInterface.h" | |
| #include <vector> | |
| #include <map> | |
| class Container { | |
| private: | |
| std::map<const std::string, ServiceInterface *> container; | |
| public: |
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
| /* | |
| © 2015 Krzysztof Pazdur. | |
| Licencja MIT. | |
| Skyrpt ułatwiający życie moderatorom. | |
| Ukrywa pozostałe odpwoiedzi / komentarze do pytań / odpowiedzi. | |
| */ | |
| // ==UserScript== | |
| // @name New Userscript |
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
| /* | |
| © 2015 Krzysztof Pazdur. | |
| Licencja MIT. | |
| Skyrpt ułatwiający życie moderatorom. | |
| Kasuje wszystkie tematy w panelu moderatora. | |
| */ | |
| // ==UserScript== | |
| // @name New Userscript |
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 Container implements ContainerAware { | |
| /** @var ArrayObject */ | |
| private $storage; | |
| /** | |
| * Get value from Container | |
| * @param key |
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 | |
| /** | |
| * Created by PhpStorm. | |
| * User: efik | |
| * Date: 21.11.15 | |
| * Time: 18:47 | |
| */ | |
| $container = new ArrayObject(); |