1 | <?php |
---|
2 | $seiten_id = 'news'; |
---|
3 | $version = '$Id: news.php 599 2014-07-07 07:03:38Z sven $'; |
---|
4 | $titel = "What's new?"; |
---|
5 | |
---|
6 | $neues_menu = <<< MENU |
---|
7 | |
---|
8 | - titel: "Art: Notes on digital" |
---|
9 | text: "German art" |
---|
10 | link: "#June_2014" |
---|
11 | |
---|
12 | - titel: "Facit papertape device" |
---|
13 | text: "IBM1130" |
---|
14 | link: "#May_2014" |
---|
15 | |
---|
16 | - titel: "IBM 1130" |
---|
17 | text: "" |
---|
18 | link: "#January_2014" |
---|
19 | |
---|
20 | -titel: "IBM 514" |
---|
21 | text: "Reproducing Punch" |
---|
22 | link: "#December_2013" |
---|
23 | |
---|
24 | - titel: "Gamma 55 is up und running" |
---|
25 | text: "" |
---|
26 | link: "#September_2013" |
---|
27 | |
---|
28 | - titel: "Punch-Card-Music" |
---|
29 | text: "Technique and art" |
---|
30 | link: "#Mai_2013" |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | MENU; |
---|
35 | // ende der menue-Eintraege |
---|
36 | |
---|
37 | if(!require("../lib/technikum29.php")) return; |
---|
38 | ?> |
---|
39 | |
---|
40 | <h2>What's new?</h2> |
---|
41 | |
---|
42 | <p>This is a news feed for the recent changes on our homepage. The latest |
---|
43 | posts are on top.</p> |
---|
44 | |
---|
45 | <ul class="news-feed news-ng"> |
---|
46 | |
---|
47 | <li><a href="/de/kommunikationstechnik/faxtechnik.php#decoder"> |
---|
48 | <h3>July 2014</h3> |
---|
49 | <img src="/shared/photos/kommunikationstechnik/telegrafenalphabet.jpg" width="153" height="144" /> |
---|
50 | <em>A historic 5-bit character decoder</em> from the university. Here it is used as a decryption engine in our experimental workshop. |
---|
51 | </a></li> |
---|
52 | |
---|
53 | <li><a href="http://www.kunst-stoff.fr/tresorraum/wir-die-iborgs/"> |
---|
54 | <h3>June 2014</h3> |
---|
55 | <img src="/shared/photos/rechnertechnik/tuebingen.jpg" width="153" height="149" /> |
---|
56 | Our Cardpunch IBM029 were on jorney: For some time, it were part of an art installation in Tübingen (Baden-Wüttemberg, near Stuttgart). |
---|
57 | |
---|
58 | </a></li> |
---|
59 | |
---|
60 | |
---|
61 | <li><a href="/en/computer/ibm1130.php#1130"> |
---|
62 | <h3>May 2014</h3> |
---|
63 | <img src="/shared/photos/rechnertechnik/facit4000.jpg" width="352" height="137" /> |
---|
64 | Periphery of the 1130: Facit tape devices |
---|
65 | </a></li> |
---|
66 | |
---|
67 | <li><a href="/en/computer/ibm1130.php#ibm1130"> |
---|
68 | <h3>January 2014</h3> |
---|
69 | <img src="/shared/photos/rechnertechnik/ibm-1130.jpg" alt="IBM 1130" width="225" height="194" /> |
---|
70 | A new callenge: IBM 1130 Mainframe |
---|
71 | </a></li> |
---|
72 | |
---|
73 | <li><a href="/en/computer/punchcard.php#reproducing"> |
---|
74 | <h3>December 2013</h3> |
---|
75 | <img src="/shared/photos/rechnertechnik/ibm-514.jpg" alt="IBM 514" width="225" height="195" /> |
---|
76 | Recruit: A large IBM reproducing punch from the early days of computing |
---|
77 | </a></li> |
---|
78 | |
---|
79 | <li><a href="/en/computer/gamma55.php#ge-55"> |
---|
80 | <h3>September 2013</h3> |
---|
81 | <img src="/shared/photos/rechnertechnik/leser617.jpg" alt="Lochkartenleser" width="241" height="149" /> |
---|
82 | Success! The BULL GAMMA 55 is up and running! An historical moment. |
---|
83 | </a></li> |
---|
84 | |
---|
85 | </ul> |
---|
86 | |
---|
87 | |
---|
88 | |
---|