Nápady na zlepšení:
- doplnit strojově čitelně do RSS metadata, proti webu chybí:
- Evidenční číslo
- Typ
- Odbor
- Datum stažení
- Typ zprávy
| #!/usr/bin/env bash | |
| # Converts subtitles | |
| # from> grimm.301.hdtv-lol.srt | |
| # to> Grimm.S03E01.HDTV.x264-LOL.srt | |
| season=3 | |
| num_episodes=22 | |
| for i in `seq -w 1 $num_episodes`; do | |
| fr="grimm.${season}${i}.hdtv-lol" |
| #!/usr/bin/env bash | |
| repo_url_prefix="https://github.com/pirati-web/" | |
| repo_prefix="./git/" | |
| deploy_prefix="./jekyll/" | |
| jekyll_bin="/usr/local/bin/jekyll" | |
| repos=( strednicechy.pirati.cz jihocesky.pirati.cz ) | |
| function prerequisite { | |
| mkdir -p "$deploy_prefix" |
| #!/usr/bin/env bash | |
| # usage: ./check.sh *.csv | |
| # Check if given csv have correct format for currency. | |
| col_money="4 6" | |
| col_date="17 18 19 20" | |
| lines="2 3 4" | |
| for f in $@; do | |
| if file "$infile" | grep "UTF-8"; then |
| #Properties saved by PropertyProvider | |
| #Mon Jun 08 23:12:27 CEST 2015 | |
| visibleSignature.img= | |
| keystore.type=BCPKCS12 | |
| signature.reason= | |
| tsa.url= | |
| inpdf.file= | |
| keystore.keyIndex=0 | |
| signature.location= | |
| tsa.cert.file= |
| #!/usr/bin/php | |
| <?php | |
| class A { | |
| public $a; | |
| public function __construct($a) { | |
| $this->a = $a; | |
| } |
| SELECT *, md5(data) as md5, TRUNCATE(LENGTH(`data`)/1000,1) as "SIZE (kB)" | |
| FROM `image` |
| #!/bin/bash | |
| header="header.html.part" | |
| for input in *.md; do | |
| output="${input%.md}.html" | |
| echo "input: $input output $output" | |
| pandoc --no-highlight -o "$output" -H "$header" "$input" |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| <head> | |
| <title>Dices</title> | |
| <meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
| <meta name="author" content="Ondřej Profant" /> | |
| </head> |
| <?php | |
| /** | |
| * Homepage presenter. | |
| */ | |
| class HomepagePresenter extends BasePresenter | |
| { | |
| public function __construct(\Nette\Http\Session $session) | |
| { | |
| parent::__construct(); |