summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
committermakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
commitd7d3480eb4f086710868e6576091e56b5aeca1af (patch)
tree6c0247b2a80f4817fb3bd66f2c1ee149b5081cd5 /kachelmann
parent596c29972408c83a3e83bb3eb369734bd87d4f7b (diff)
parent99e498d97132f02dc9c62544046da00ab20017cb (diff)
emergency merge
Diffstat (limited to 'kachelmann')
-rw-r--r--kachelmann/Makefile8
-rwxr-xr-xkachelmann/conditions7
-rwxr-xr-xkachelmann/conditions.pl7
3 files changed, 22 insertions, 0 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile
new file mode 100644
index 00000000..7fa3ec2d
--- /dev/null
+++ b/kachelmann/Makefile
@@ -0,0 +1,8 @@
+.PHONY: infect
+INSTALL_DIR = /root/bin/
+infect:
+ mkdir -p /tmp/kachelmann/
+ cp conditions ${INSTALL_DIR}
+ mv ${INSTALL_DIR}conditions ${INSTALL_DIR}kachelmann
+ chmod +x ${INSTALL_DIR}kachelmann
+
diff --git a/kachelmann/conditions b/kachelmann/conditions
new file mode 100755
index 00000000..1a798e42
--- /dev/null
+++ b/kachelmann/conditions
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+use XML::Simple;
+system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml");
+my $xml = new XML::Simple;
+my $data = $xml->XMLin("/tmp/kachelmann/weather.xml");
+my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n";
+system("espeak -v de \"$sentence\"");
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl
new file mode 100755
index 00000000..6d8b5541
--- /dev/null
+++ b/kachelmann/conditions.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+use XML::Simple;
+system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml");
+my $xml = new XML::Simple;
+my $data = $xml->XMLin("/tmp/kachelmann/weather.xml");
+my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n";
+system("espeak \"$sentence\"");