- znakový systém
- sloužící k dorozuívání mezi lidmi
- k vyjádření libovolného obsahu vědomí
- s bohatou vnitřní strukturou
- užívaný a přijímaný v určitém společenství
- objektový jazyk x metajazyk
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
/root.crt | |
/root.key | |
/root.srl | |
/*.crt | |
/*.csr | |
/*.key | |
/*.packed.pem | |
/*.fullchain |
http://theoatmeal.com/ http://xkcd.com/ http://thedailywtf.com/ http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fpbfcomics.com%2Ffeed%2Ffeed.xml http://oglaf.com/latest/ http://this-plt-life.tumblr.com/ http://bradcolbow.com/ http://gunshowcomic.com http://wumocomicstrip.com/strip/rss http://invisiblebread.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
#!/usr/bin/env bash | |
DIR="/Users/mikulas/Dropbox/Images/Wallpapers/wanikani" | |
DAILY="$DIR/daily/$(date '+%Y%m%d').png" | |
if [[ -e "$DAILY" ]]; then | |
echo "Already generated today" | |
exit 1 | |
fi |
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
git clone https://github.com/steida/este.git | |
cd este | |
npm install | |
npm list |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
public class Comparator { // Třída Comparator, porovnává filter a databázi | |
public static List<Applicant> compare(List<Applicant> applicants, HashMap<String, List<Integer>> filter) { | |
Map<Integer, Integer> score = new TreeMap<Integer, Integer>(); // Iaždý kandidát bude mít skóre, podle kterého řadíme | |
Integer i = 0; | |
for (Applicant a : applicants) { | |
System.out.println(a.getName() + " " + i); | |
score.put(i, 0); // Inicializace | |
i++; | |
} | |
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 | |
public function templatePrepareFilters($template) { | |
$template->registerFilter($latte = new Nette\Templates\LatteFilter()); | |
TwigMacro::register($latte->getHandler()); | |
} |
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
#!/bin/bash | |
srcLibs="/Volumes/Data/Web" | |
colorPrefix="\033[" | |
colorPostfix="\033[0m" | |
color_default="0" | |
color_red="31" | |
color_red_bold="1;31" |
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 | |
namespace Nette\Templating; | |
use Nette\Forms\Form; | |
use Nette\Utils\Strings as String; | |
use Nette\InvalidStateException; | |
use Nette\Object; | |
use Nette\Latte\DefaultMacros; |
NewerOlder