# Nyancat CLI
Nyancat rendered in your terminal.
[![Nyancats](http://i.imgur.com/snCOQl.png)](http://i.imgur.com/snCOQ.png)
## Setup
First build the C application:
make && cd src
You can run the C application standalone.
./nyancat
To use the telnet server, you need to add a configuration that runs:
nyancat -t
... to either an `inetd` or `xinetd` server. I am using `openbsd-inetd`, which you must give *both* arguments (`nyancat` and `-t`) to, which I found odd.
## Licenses, References, etc.
The original source of the Nyancat animation is [prguitarman](http://www.prguitarman.com/index.php?id=348).
The code provided here is provided under the terms of the [NCSA license](http://en.wikipedia.org/wiki/University_of_Illinois/NCSA_Open_Source_License).
'>
blob: 805038ce54c500fbd987894f5b1780f39561625a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# DVB-T Trencin (Trencin, Slovak Republic)
# Created from http://www.dvbt.towercom.sk/odbornici.php
# 2.st multiplex (commercial) - on channel 52
[CHANNEL]
DELIVERY_SYSTEM = DVBT
FREQUENCY = 722000000
BANDWIDTH_HZ = 8000000
CODE_RATE_HP = 2/3
CODE_RATE_LP = NONE
MODULATION = QAM/64
TRANSMISSION_MODE = 8K
GUARD_INTERVAL = 1/4
HIERARCHY = NONE
INVERSION = AUTO
# 3.st multiplex (public) - on channel 57
[CHANNEL]
DELIVERY_SYSTEM = DVBT
FREQUENCY = 762000000
BANDWIDTH_HZ = 8000000
CODE_RATE_HP = 2/3
CODE_RATE_LP = NONE
MODULATION = QAM/64
TRANSMISSION_MODE = 8K
GUARD_INTERVAL = 1/4
HIERARCHY = NONE
INVERSION = AUTO
|