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
# show.html.haml, pouziva haml | |
%h1= t("configurations.show.title") | |
.info | |
#address | |
%label= School.human_attribute_name("address") | |
= @school.address | |
#name | |
%label= School.human_attribute_name("name") | |
= @school.name |
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
/* Tyto tri ulohy tvori prvni bodovanou praci! | |
Vypracovat doma, odevzdat do pondeli do 5ti do rana | |
1. Nactete text z klavesnice, ulozte do souboru ve | |
Windows 1250 | |
2. Nactete soubor (viz vysee) a vypiste na | |
obrazovku | |
3. fopen umi pracovat i s unicode - vyzkousime |
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 <stdio.h> | |
#include <sys/types.h> | |
#include <semaphore.h> | |
#include <pthread.h> | |
#include <sys/wait.h> | |
sem_t writer_semafor; | |
sem_t reader_semafor; | |
char *buffer; | |
NewerOlder