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
| <!DOCTYPE html> | |
| <html lang="cs"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Kontrolní seznam časosběru</title> | |
| <style> | |
| /* Prusa-inspired and modern color variables */ | |
| :root { | |
| --prusa-red: #E30613; |
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 | |
| /** | |
| * Plugin Name: SSH Remote Test | |
| */ | |
| add_action( 'admin_init', 'ssh_remote_test', 1 ); | |
| function ssh_remote_test() { |
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
| imports: | |
| # .... | |
| - { resource: services/session.yml } | |
| framework: | |
| # .... | |
| session: | |
| handler_id: session.handler.memcached |
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 | |
| $changeParameters = [ | |
| "vyrobce" => "Canon", | |
| "garance_tisku" => "5000 stran", | |
| "kompatibilita" => "Canon XYZ" | |
| ]; | |
| $input = "Vysoce kvalitní toner určený pro laserové tiskárny[ [vyrobce]][ s garancí tisku [garance_tisku] při 5% pokrytí][ a kompatibilní s [kompatibilita]]."; | |
| /* | |
| -> typ zapisu vztupního textu: |
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 | |
| /** | |
| * This program is free software. It comes without any warranty, to | |
| * the extent permitted by applicable law. You can redistribute it | |
| * and/or modify it under the terms of the Do What The Fuck You Want | |
| * To Public License, Version 2, as published by Sam Hocevar. See | |
| * http://sam.zoy.org/wtfpl/COPYING for more details. | |
| */ | |
| /** |