From 28804ca5414d7e777acc51ff816868081e713d72 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 19 Jul 2015 11:19:26 -0400 Subject: [PATCH] Update PicoFeed --- Dockerfile | 51 +- composer.json | 2 +- scripts/docker/lighttpd.conf | 34 - vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 10 +- vendor/composer/installed.json | 12 +- .../picofeed/docs/feed-parsing.markdown | 17 +- .../picofeed/lib/PicoFeed/Parser/Atom.php | 122 +- .../picofeed/lib/PicoFeed/Parser/Item.php | 23 +- .../picofeed/lib/PicoFeed/Parser/Parser.php | 33 +- .../picofeed/lib/PicoFeed/Parser/Rss10.php | 229 +- .../picofeed/lib/PicoFeed/Parser/Rss20.php | 131 +- .../lib/PicoFeed/Parser/XmlParser.php | 62 +- .../picofeed/tests/Filter/FilterTest.php | 5 +- .../picofeed/tests/Parser/AtomParserTest.php | 461 +- .../picofeed/tests/Parser/ItemTest.php | 12 + .../picofeed/tests/Parser/ParserTest.php | 46 +- .../picofeed/tests/Parser/Rss10ParserTest.php | 367 +- .../picofeed/tests/Parser/Rss20ParserTest.php | 344 +- .../picofeed/tests/Parser/Rss91ParserTest.php | 2 +- .../picofeed/tests/Parser/XmlParserTest.php | 18 + .../picofeed/tests/Reader/ReaderTest.php | 57 +- .../tests/fixtures/allgemeine-zeitung.xml | 122 - .../fguillot/picofeed/tests/fixtures/atom.xml | 570 +- .../fixtures/atom_element_preference.xml | 38 + .../tests/fixtures/atom_empty_feed.xml | 9 + .../tests/fixtures/atom_empty_item.xml | 4 + .../picofeed/tests/fixtures/atom_extra.xml | 19 + .../atom_fallback_on_invalid_feed_values.xml | 15 + .../atom_fallback_on_invalid_item_values.xml | 28 + .../fixtures/atom_no_default_namespace.xml | 92 + .../picofeed/tests/fixtures/atom_prefixed.xml | 93 + .../picofeed/tests/fixtures/bbc_urdu.xml | 2087 ---- .../picofeed/tests/fixtures/biertaucher.xml | 7198 ----------- .../tests/fixtures/dailymail.co.uk.xml | 1328 -- .../picofeed/tests/fixtures/debug_show.xml | 1073 -- .../tests/fixtures/duesseldorf_lokalzeit.rdf | 111 - .../fixtures/fanboys.fm_episodes.all.mp3.rss | 10426 ---------------- .../geekstammtisch.de_episodes.mp3.rss | 9428 -------------- .../picofeed/tests/fixtures/googleblog.xml | 477 + .../picofeed/tests/fixtures/grotte_barbu.xml | 396 - .../picofeed/tests/fixtures/hamakor.xml | 527 - .../picofeed/tests/fixtures/radio-france.xml | 946 -- .../picofeed/tests/fixtures/rss20.xml | 300 - .../picofeed/tests/fixtures/rss_10.xml | 69 + .../fixtures/rss_10_element_preference.xml | 51 + .../tests/fixtures/rss_10_empty_channel.xml | 13 + .../tests/fixtures/rss_10_empty_feed.xml | 10 + .../tests/fixtures/rss_10_empty_item.xml | 5 + .../picofeed/tests/fixtures/rss_10_extra.xml | 25 + ...rss_10_fallback_on_invalid_feed_values.xml | 18 + ...rss_10_fallback_on_invalid_item_values.xml | 39 + .../fixtures/rss_10_no_default_namespace.xml | 69 + .../tests/fixtures/rss_10_prefixed.xml | 42 + .../picofeed/tests/fixtures/rss_20.xml | 81 + .../picofeed/tests/fixtures/rss_20_dc.xml | 18 + .../fixtures/rss_20_element_preference.xml | 69 + .../tests/fixtures/rss_20_empty_channel.xml | 12 + .../tests/fixtures/rss_20_empty_feed.xml | 9 + .../tests/fixtures/rss_20_empty_item.xml | 6 + .../picofeed/tests/fixtures/rss_20_extra.xml | 30 + ...rss_20_fallback_on_invalid_feed_values.xml | 17 + ...rss_20_fallback_on_invalid_item_values.xml | 34 + .../tests/fixtures/womensweardaily.xml | 63 - .../picofeed/tests/fixtures/youtube.xml | 979 -- .../picofeed/tests/fixtures/zoot_egkty.xml | 177 - 66 files changed, 2886 insertions(+), 36277 deletions(-) delete mode 100644 scripts/docker/lighttpd.conf delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/allgemeine-zeitung.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_element_preference.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_empty_feed.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_empty_item.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_extra.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_feed_values.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_item_values.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_no_default_namespace.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/atom_prefixed.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/bbc_urdu.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/biertaucher.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/dailymail.co.uk.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/debug_show.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/duesseldorf_lokalzeit.rdf delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/fanboys.fm_episodes.all.mp3.rss delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/geekstammtisch.de_episodes.mp3.rss create mode 100644 vendor/fguillot/picofeed/tests/fixtures/googleblog.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/grotte_barbu.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/hamakor.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/radio-france.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss20.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_element_preference.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_channel.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_feed.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_item.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_extra.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_feed_values.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_item_values.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_no_default_namespace.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_10_prefixed.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_dc.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_element_preference.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_channel.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_feed.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_item.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_extra.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_feed_values.xml create mode 100644 vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_item_values.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/womensweardaily.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/youtube.xml delete mode 100644 vendor/fguillot/picofeed/tests/fixtures/zoot_egkty.xml diff --git a/Dockerfile b/Dockerfile index 3581d3a..01e38d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,41 +1,20 @@ -FROM debian:jessie +FROM ubuntu:14.04 +MAINTAINER Frederic Guillot -ENV DEBIAN_FRONTEND noninteractive +RUN apt-get update && apt-get install -y apache2 php5 php5-sqlite git curl && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf +RUN cd /var/www && git clone --depth 1 https://github.com/miniflux/miniflux.git +RUN rm -rf /var/www/html && mv /var/www/kanboard /var/www/html +RUN chown -R www-data:www-data /var/www/html/data -RUN \ - apt-get update && \ - apt-get -y upgrade && \ - apt-get -y install \ - lighttpd \ - php5-common \ - php5-cgi \ - php5-sqlite \ - php-xml-parser \ - php5 \ - unzip \ - wget - -RUN \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - -RUN \ - cd /root && \ - wget https://github.com/miniflux/miniflux/archive/master.zip -O miniflux.zip && \ - unzip miniflux.zip -d /var/www && \ - mv /var/www/miniflux-master/* /var/www/ && \ - rm miniflux.zip && \ - rm -r /var/www/html && \ - rm -r /var/www/miniflux-master && \ - chmod +x /var/www/data - -RUN \ - chown -R www-data:www-data /var/www && \ - rm /etc/lighttpd/lighttpd.conf - -ADD \ - scripts/docker/lighttpd.conf /etc/lighttpd/lighttpd.conf +VOLUME /var/www/html/data EXPOSE 80 -CMD ["/usr/sbin/lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"] \ No newline at end of file +ENV APACHE_RUN_USER www-data +ENV APACHE_RUN_GROUP www-data +ENV APACHE_LOG_DIR /var/log/apache2 +ENV APACHE_LOCK_DIR /var/lock/apache2 +ENV APACHE_PID_FILE /var/run/apache2.pid + +CMD /usr/sbin/apache2ctl -D FOREGROUND diff --git a/composer.json b/composer.json index a3d2586..d0d6ee2 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "fguillot/simple-validator": "v0.0.3", "fguillot/json-rpc": "v0.0.3", "fguillot/picodb": "v0.0.3", - "fguillot/picofeed": "v0.1.5", + "fguillot/picofeed": "v0.1.6", "fguillot/picofarad": "dev-master" }, "autoload": { diff --git a/scripts/docker/lighttpd.conf b/scripts/docker/lighttpd.conf deleted file mode 100644 index ce7be5e..0000000 --- a/scripts/docker/lighttpd.conf +++ /dev/null @@ -1,34 +0,0 @@ -server.modules = ( - "mod_access", - "mod_fastcgi", - "mod_alias", - "mod_compress", - "mod_redirect", -# "mod_rewrite", -) - -server.document-root = "/var/www/" -server.upload-dirs = ( "/var/cache/lighttpd/uploads" ) -server.errorlog = "/var/log/lighttpd/error.log" -server.pid-file = "/var/run/lighttpd.pid" -server.username = "www-data" -server.groupname = "www-data" -server.port = 80 - - -index-file.names = ( "index.php", "index.html", "index.lighttpd.html" ) -url.access-deny = ( "~", ".inc" ) -static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) - -compress.cache-dir = "/var/cache/lighttpd/compress/" -compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" ) - -# default listening port for IPv6 falls back to the IPv4 port -include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port -include_shell "/usr/share/lighttpd/create-mime.assign.pl" -include_shell "/usr/share/lighttpd/include-conf-enabled.pl" - -fastcgi.server = ( ".php" => (( - "bin-path" => "/usr/bin/php-cgi", - "socket" => "/tmp/php.socket" - ))) \ No newline at end of file diff --git a/vendor/autoload.php b/vendor/autoload.php index 83cc24f..556cdf6 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer' . '/autoload_real.php'; -return ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52::getLoader(); +return ComposerAutoloaderInitc059b513a8543dde562d574abce226dd::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 6aefd44..4a8bfd2 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52 +class ComposerAutoloaderInitc059b513a8543dde562d574abce226dd { private static $loader; @@ -19,9 +19,9 @@ class ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52 return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitc059b513a8543dde562d574abce226dd', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitc059b513a8543dde562d574abce226dd', 'loadClassLoader')); $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -42,14 +42,14 @@ class ComposerAutoloaderInit0c3a5cd890e1e4c1b0fe3e391a8e6c52 $includeFiles = require __DIR__ . '/autoload_files.php'; foreach ($includeFiles as $file) { - composerRequire0c3a5cd890e1e4c1b0fe3e391a8e6c52($file); + composerRequirec059b513a8543dde562d574abce226dd($file); } return $loader; } } -function composerRequire0c3a5cd890e1e4c1b0fe3e391a8e6c52($file) +function composerRequirec059b513a8543dde562d574abce226dd($file) { require $file; } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 5937c42..22a6724 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -156,17 +156,17 @@ }, { "name": "fguillot/picofeed", - "version": "v0.1.5", - "version_normalized": "0.1.5.0", + "version": "v0.1.6", + "version_normalized": "0.1.6.0", "source": { "type": "git", "url": "https://github.com/fguillot/picoFeed.git", - "reference": "40dfb81ff0d578d1c1fc800a389933da47aa3dd7" + "reference": "1e89a3fd579cf3d83cc65c09047f92f81ce6a923" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/40dfb81ff0d578d1c1fc800a389933da47aa3dd7", - "reference": "40dfb81ff0d578d1c1fc800a389933da47aa3dd7", + "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/1e89a3fd579cf3d83cc65c09047f92f81ce6a923", + "reference": "1e89a3fd579cf3d83cc65c09047f92f81ce6a923", "shasum": "" }, "require": { @@ -180,7 +180,7 @@ "suggest": { "ext-curl": "PicoFeed will use cURL if present" }, - "time": "2015-07-03 00:57:06", + "time": "2015-07-12 23:33:40", "bin": [ "picofeed" ], diff --git a/vendor/fguillot/picofeed/docs/feed-parsing.markdown b/vendor/fguillot/picofeed/docs/feed-parsing.markdown index 8ab2dac..e3e43d4 100644 --- a/vendor/fguillot/picofeed/docs/feed-parsing.markdown +++ b/vendor/fguillot/picofeed/docs/feed-parsing.markdown @@ -266,29 +266,38 @@ $feed->items[0]->isRTL(); // Return true if the item langua Get raw XML tags/attributes or non standard tags for items ---------------------------------------------------------- +The getTag function returns an array with all values of matching tags. If nothing can be found, an empty array is returned. In case of errors, the return value is false. Get the original `guid` tag for RSS 2.0 feeds: ```php -echo $feed->items[0]->getTag('guid'); +$values = $feed->items[0]->getTag('guid'); +print_r ($values); ``` Get a specific attribute value: ```php -echo $feed->items[1]->getTag('category', 'term'); +$values = $feed->items[1]->getTag('category', 'term'); +print_r ($values); ``` Get value of namespaced tag: ```php -echo $feed->items[1]->getTag('wfw:commentRss'); +if (array_key_exists('wfw', $feed->items[0]->namespaces)) { + $values = $feed->items[1]->getTag('wfw:commentRss'); + print_r ($values); +} ``` Get attribute value of a namespaced tag: ```php -echo $feed->items[0]->getTag('media:content', 'url'); +if (array_key_exists('media', $feed->items[0]->namespaces)) { + $values = $feed->items[0]->getTag('media:content', 'url'); + print_r ($values); +} ``` Get the xml of the item (returns a SimpleXMLElement instance): diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php index 0e53d27..6950d9a 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php @@ -14,6 +14,13 @@ use PicoFeed\Client\Url; */ class Atom extends Parser { + /** + * Supported namespaces + */ + protected $namespaces = array( + 'atom' => 'http://www.w3.org/2005/Atom', + ); + /** * Get the path to the items XML tree * @@ -23,7 +30,8 @@ class Atom extends Parser */ public function getItemsTree(SimpleXMLElement $xml) { - return $xml->entry; + return XmlParser::getXPathResult($xml, 'atom:entry', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'entry'); } /** @@ -59,7 +67,10 @@ class Atom extends Parser */ public function findFeedDescription(SimpleXMLElement $xml, Feed $feed) { - $feed->description = (string) $xml->subtitle; + $description = XmlParser::getXPathResult($xml, 'atom:subtitle', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'subtitle'); + + $feed->description = (string) current($description); } /** @@ -71,7 +82,10 @@ class Atom extends Parser */ public function findFeedLogo(SimpleXMLElement $xml, Feed $feed) { - $feed->logo = (string) $xml->logo; + $logo = XmlParser::getXPathResult($xml, 'atom:logo', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'logo'); + + $feed->logo = (string) current($logo); } /** @@ -83,7 +97,10 @@ class Atom extends Parser */ public function findFeedIcon(SimpleXMLElement $xml, Feed $feed) { - $feed->icon = (string) $xml->icon; + $icon = XmlParser::getXPathResult($xml, 'atom:icon', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'icon'); + + $feed->icon = (string) current($icon); } /** @@ -95,7 +112,10 @@ class Atom extends Parser */ public function findFeedTitle(SimpleXMLElement $xml, Feed $feed) { - $feed->title = Filter::stripWhiteSpace((string) $xml->title) ?: $feed->getSiteUrl(); + $title = XmlParser::getXPathResult($xml, 'atom:title', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'title'); + + $feed->title = Filter::stripWhiteSpace((string) current($title)) ?: $feed->getSiteUrl(); } /** @@ -107,7 +127,10 @@ class Atom extends Parser */ public function findFeedLanguage(SimpleXMLElement $xml, Feed $feed) { - $feed->language = XmlParser::getXmlLang($this->content); + $language = XmlParser::getXPathResult($xml, '*[not(self::atom:entry)]/@xml:lang', $this->namespaces) + ?: XmlParser::getXPathResult($xml, '@xml:lang'); + + $feed->language = (string) current($language); } /** @@ -119,7 +142,10 @@ class Atom extends Parser */ public function findFeedId(SimpleXMLElement $xml, Feed $feed) { - $feed->id = (string) $xml->id; + $id = XmlParser::getXPathResult($xml, 'atom:id', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'id'); + + $feed->id = (string) current($id); } /** @@ -131,7 +157,10 @@ class Atom extends Parser */ public function findFeedDate(SimpleXMLElement $xml, Feed $feed) { - $feed->date = $this->date->getDateTime((string) $xml->updated); + $updated = XmlParser::getXPathResult($xml, 'atom:updated', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'updated'); + + $feed->date = $this->date->getDateTime((string) current($updated)); } /** @@ -144,11 +173,17 @@ class Atom extends Parser */ public function findItemDate(SimpleXMLElement $entry, Item $item, Feed $feed) { - $published = isset($entry->published) ? $this->date->getDateTime((string) $entry->published) : null; - $updated = isset($entry->updated) ? $this->date->getDateTime((string) $entry->updated) : null; + $published = XmlParser::getXPathResult($entry, 'atom:published', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'published'); + + $updated = XmlParser::getXPathResult($entry, 'atom:updated', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'updated'); + + $published = ! empty($published) ? $this->date->getDateTime((string) current($published)) : null; + $updated = ! empty($updated) ? $this->date->getDateTime((string) current($updated)) : null; if ($published === null && $updated === null) { - $item->date = $feed->getDate(); // We use the feed date if there is no date for the item + $item->date = $feed->getDate(); // We use the feed date if there is no date for the item } else if ($published !== null && $updated !== null) { $item->date = max($published, $updated); // We use the most recent date between published and updated @@ -167,11 +202,10 @@ class Atom extends Parser */ public function findItemTitle(SimpleXMLElement $entry, Item $item) { - $item->title = Filter::stripWhiteSpace((string) $entry->title); + $title = XmlParser::getXPathResult($entry, 'atom:title', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'title'); - if (empty($item->title)) { - $item->title = $item->url; - } + $item->title = Filter::stripWhiteSpace((string) current($title)) ?: $item->url; } /** @@ -184,12 +218,12 @@ class Atom extends Parser */ public function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item) { - if (isset($entry->author->name)) { - $item->author = (string) $entry->author->name; - } - else { - $item->author = (string) $xml->author->name; - } + $author = XmlParser::getXPathResult($entry, 'atom:author/atom:name', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'author/name') + ?: XmlParser::getXPathResult($xml, 'atom:author/atom:name', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'author/name'); + + $item->author = (string) current($author); } /** @@ -226,10 +260,11 @@ class Atom extends Parser */ public function findItemId(SimpleXMLElement $entry, Item $item, Feed $feed) { - $id = (string) $entry->id; + $id = XmlParser::getXPathResult($entry, 'atom:id', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'id'); - if ($id) { - $item->id = $this->generateId($id); + if (! empty($id)) { + $item->id = $this->generateId((string) current($id)); } else { $item->id = $this->generateId( @@ -266,13 +301,9 @@ class Atom extends Parser */ public function findItemLanguage(SimpleXMLElement $entry, Item $item, Feed $feed) { - $language = (string) $entry->attributes('xml', true)->{'lang'}; + $language = XmlParser::getXPathResult($entry, './/@xml:lang'); - if ($language === '') { - $language = $feed->language; - } - - $item->language = $language; + $item->language = (string) current($language) ?: $feed->language; } /** @@ -309,7 +340,10 @@ class Atom extends Parser */ private function findLink(SimpleXMLElement $xml, $rel) { - foreach ($xml->link as $link) { + $links = XmlParser::getXPathResult($xml, 'atom:link', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'link'); + + foreach ($links as $link) { if ($rel === (string) $link['rel']) { return $link; } @@ -327,19 +361,27 @@ class Atom extends Parser */ private function getContent(SimpleXMLElement $entry) { - if (isset($entry->content) && ! empty($entry->content)) { + $content = current( + XmlParser::getXPathResult($entry, 'atom:content', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'content') + ); - if (count($entry->content->children())) { - return (string) $entry->content->asXML(); - } - else { - return (string) $entry->content; + if (! empty($content) && count($content->children())) { + $xml_string = ''; + + foreach($content->children() as $child) { + $xml_string .= $child->asXML(); } + + return $xml_string; } - else if (isset($entry->summary) && ! empty($entry->summary)) { - return (string) $entry->summary; + else if (trim((string) $content) !== '') { + return (string) $content; } - return ''; + $summary = XmlParser::getXPathResult($entry, 'atom:summary', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'summary'); + + return (string) current($summary); } } diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php index d891ef4..c9dff5a 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php @@ -121,23 +121,24 @@ class Item * @access public * @param string $tag Tag name (examples: guid, media:content) * @param string $attribute Tag attribute - * @return string + * @return array|false Tag values or error */ public function getTag($tag, $attribute = '') { - // Get namespaced value - if (strpos($tag, ':') !== false) { - list(,$tag) = explode(':', $tag); - return XmlParser::getNamespaceValue($this->xml, $this->namespaces, $tag, $attribute); + // convert to xPath attribute query + if ($attribute !== '') { + $attribute = '/@'.$attribute; } - // Return attribute value - if (! empty($attribute)) { - return (string) $this->xml->{$tag}[$attribute]; + // construct query + $query = './/'.$tag.$attribute; + $elements = XmlParser::getXPathResult($this->xml, $query, $this->namespaces); + + if ($elements === false) { // xPath error + return false; } - // Return tag content - return (string) $this->xml->$tag; + return array_map(function ($element) { return (string) $element;}, $elements); } /** @@ -198,7 +199,7 @@ class Item * Get date * * @access public - * $return integer + * $return \DateTime */ public function getDate() { diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php index b2b05e1..918cdef 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php @@ -58,13 +58,21 @@ abstract class Parser protected $fallback_url = ''; /** - * XML namespaces + * XML namespaces supported by parser * * @access protected * @var array */ protected $namespaces = array(); + /** + * XML namespaces used in document + * + * @access protected + * @var array + */ + protected $used_namespaces = array(); + /** * Enable the content filtering * @@ -143,7 +151,8 @@ abstract class Parser } } - $this->namespaces = $xml->getNamespaces(true); + $this->used_namespaces = $xml->getNamespaces(true); + $xml = $this->registerSupportedNamespaces($xml); $feed = new Feed; @@ -163,9 +172,11 @@ abstract class Parser foreach ($this->getItemsTree($xml) as $entry) { + $entry = $this->registerSupportedNamespaces($entry); + $item = new Item; $item->xml = $entry; - $item->namespaces = $this->namespaces; + $item->namespaces = $this->used_namespaces; $this->findItemAuthor($xml, $entry, $item); @@ -420,6 +431,22 @@ abstract class Parser $this->grabber_ignore_urls = $urls; } + /** + * Register all supported namespaces to be used within an xpath query + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @return SimpleXMLElement + */ + public function registerSupportedNamespaces(SimpleXMLElement $xml) + { + foreach ($this->namespaces as $prefix => $ns) { + $xml->registerXPathNamespace($prefix, $ns); + } + + return $xml; + } + /** * Find the feed url * diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php index 16c66a0..32fc54e 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php @@ -3,6 +3,7 @@ namespace PicoFeed\Parser; use SimpleXMLElement; +use PicoFeed\Filter\Filter; /** * RSS 1.0 parser @@ -10,8 +11,18 @@ use SimpleXMLElement; * @author Frederic Guillot * @package Parser */ -class Rss10 extends Rss20 +class Rss10 extends Parser { + /** + * Supported namespaces + */ + protected $namespaces = array( + 'rss' => 'http://purl.org/rss/1.0/', + 'dc' => 'http://purl.org/dc/elements/1.1/', + 'content' => 'http://purl.org/rss/1.0/modules/content/', + 'feedburner' => 'http://rssnamespace.org/feedburner/ext/1.0', + ); + /** * Get the path to the items XML tree * @@ -21,19 +32,92 @@ class Rss10 extends Rss20 */ public function getItemsTree(SimpleXMLElement $xml) { - return $xml->item; + return XmlParser::getXPathResult($xml, 'rss:item', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'item'); } /** - * Find the feed date + * Find the feed url * * @access public - * @param SimpleXMLElement $xml Feed xml + * @param SimpleXMLElement $xml Feed xml * @param \PicoFeed\Parser\Feed $feed Feed object */ - public function findFeedDate(SimpleXMLElement $xml, Feed $feed) + public function findFeedUrl(SimpleXMLElement $xml, Feed $feed) { - $feed->date = $this->date->getDateTime(XmlParser::getNamespaceValue($xml->channel, $this->namespaces, 'date')); + $feed->feed_url = ''; + } + + /** + * Find the site url + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findSiteUrl(SimpleXMLElement $xml, Feed $feed) + { + $site_url = XmlParser::getXPathResult($xml, 'rss:channel/rss:link', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/link'); + + $feed->site_url = (string) current($site_url); + } + + /** + * Find the feed description + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedDescription(SimpleXMLElement $xml, Feed $feed) + { + $description = XmlParser::getXPathResult($xml, 'rss:channel/rss:description', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/description'); + + $feed->description = (string) current($description); + } + + /** + * Find the feed logo url + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedLogo(SimpleXMLElement $xml, Feed $feed) + { + $logo = XmlParser::getXPathResult($xml, 'rss:image/rss:url', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'image/url'); + + $feed->logo = (string) current($logo); + } + + /** + * Find the feed icon + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedIcon(SimpleXMLElement $xml, Feed $feed) + { + $feed->icon = ''; + } + + /** + * Find the feed title + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedTitle(SimpleXMLElement $xml, Feed $feed) + { + $title = XmlParser::getXPathResult($xml, 'rss:channel/rss:title', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/title'); + + $feed->title = Filter::stripWhiteSpace((string) current($title)) ?: $feed->getSiteUrl(); } /** @@ -45,14 +129,126 @@ class Rss10 extends Rss20 */ public function findFeedLanguage(SimpleXMLElement $xml, Feed $feed) { - $feed->language = XmlParser::getNamespaceValue($xml->channel, $this->namespaces, 'language'); + $language = XmlParser::getXPathResult($xml, 'rss:channel/dc:language', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/dc:language', $this->namespaces); + + $feed->language = (string) current($language); + } + + /** + * Find the feed id + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedId(SimpleXMLElement $xml, Feed $feed) + { + $feed->id = $feed->getFeedUrl() ?: $feed->getSiteUrl(); + } + + /** + * Find the feed date + * + * @access public + * @param SimpleXMLElement $xml Feed xml + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findFeedDate(SimpleXMLElement $xml, Feed $feed) + { + $date = XmlParser::getXPathResult($xml, 'rss:channel/dc:date', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/dc:date', $this->namespaces); + + $feed->date = $this->date->getDateTime((string) current($date)); + } + + /** + * Find the item date + * + * @access public + * @param SimpleXMLElement $entry Feed item + * @param Item $item Item object + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findItemDate(SimpleXMLElement $entry, Item $item, Feed $feed) + { + $date = XmlParser::getXPathResult($entry, 'dc:date', $this->namespaces); + + $item->date = empty($date) ? $feed->getDate() : $this->date->getDateTime((string) current($date)); + } + + /** + * Find the item title + * + * @access public + * @param SimpleXMLElement $entry Feed item + * @param \PicoFeed\Parser\Item $item Item object + */ + public function findItemTitle(SimpleXMLElement $entry, Item $item) + { + $title = XmlParser::getXPathResult($entry, 'rss:title', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'title'); + + $item->title = Filter::stripWhiteSpace((string) current($title)) ?: $item->url; + } + + /** + * Find the item author + * + * @access public + * @param SimpleXMLElement $xml Feed + * @param SimpleXMLElement $entry Feed item + * @param \PicoFeed\Parser\Item $item Item object + */ + public function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item) + { + $author = XmlParser::getXPathResult($entry, 'dc:creator', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'rss:channel/dc:creator', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/dc:creator', $this->namespaces); + + $item->author = (string) current($author); + } + + /** + * Find the item content + * + * @access public + * @param SimpleXMLElement $entry Feed item + * @param \PicoFeed\Parser\Item $item Item object + */ + public function findItemContent(SimpleXMLElement $entry, Item $item) + { + $content = XmlParser::getXPathResult($entry, 'content:encoded', $this->namespaces); + + if (trim((string) current($content)) === '') { + $content = XmlParser::getXPathResult($entry, 'rss:description', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'description'); + } + + $item->content = (string) current($content); + } + + /** + * Find the item URL + * + * @access public + * @param SimpleXMLElement $entry Feed item + * @param \PicoFeed\Parser\Item $item Item object + */ + public function findItemUrl(SimpleXMLElement $entry, Item $item) + { + $link = XmlParser::getXPathResult($entry, 'feedburner:origLink', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'rss:link', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'link'); + + $item->url = trim((string) current($link)); } /** * Genereate the item id * * @access public - * @param SimpleXMLElement $entry Feed item + * @param SimpleXMLElement $entry Feed item * @param \PicoFeed\Parser\Item $item Item object * @param \PicoFeed\Parser\Feed $feed Feed object */ @@ -67,11 +263,26 @@ class Rss10 extends Rss20 * Find the item enclosure * * @access public - * @param SimpleXMLElement $entry Feed item + * @param SimpleXMLElement $entry Feed item * @param \PicoFeed\Parser\Item $item Item object * @param \PicoFeed\Parser\Feed $feed Feed object */ public function findItemEnclosure(SimpleXMLElement $entry, Item $item, Feed $feed) { } + + /** + * Find the item language + * + * @access public + * @param SimpleXMLElement $entry Feed item + * @param \PicoFeed\Parser\Item $item Item object + * @param \PicoFeed\Parser\Feed $feed Feed object + */ + public function findItemLanguage(SimpleXMLElement $entry, Item $item, Feed $feed) + { + $language = XmlParser::getXPathResult($entry, 'dc:language', $this->namespaces); + + $item->language = (string) current($language) ?: $feed->language; + } } diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php index 65e8a7a..f4c5ae3 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php @@ -14,6 +14,16 @@ use PicoFeed\Client\Url; */ class Rss20 extends Parser { + /** + * Supported namespaces + */ + protected $namespaces = array( + 'dc' => 'http://purl.org/dc/elements/1.1/', + 'content' => 'http://purl.org/rss/1.0/modules/content/', + 'feedburner' => 'http://rssnamespace.org/feedburner/ext/1.0', + 'atom' => 'http://www.w3.org/2005/Atom' + ); + /** * Get the path to the items XML tree * @@ -23,13 +33,7 @@ class Rss20 extends Parser */ public function getItemsTree(SimpleXMLElement $xml) { - $items = array(); - - if (isset($xml->channel->item)) { - $items = $xml->channel->item; - } - - return $items; + return XmlParser::getXPathResult($xml, 'channel/item'); } /** @@ -53,7 +57,8 @@ class Rss20 extends Parser */ public function findSiteUrl(SimpleXMLElement $xml, Feed $feed) { - $feed->site_url = (string) $xml->channel->link; + $site_url = XmlParser::getXPathResult($xml, 'channel/link'); + $feed->site_url = (string) current($site_url); } /** @@ -65,7 +70,8 @@ class Rss20 extends Parser */ public function findFeedDescription(SimpleXMLElement $xml, Feed $feed) { - $feed->description = (string) $xml->channel->description; + $description = XmlParser::getXPathResult($xml, 'channel/description'); + $feed->description = (string) current($description); } /** @@ -77,9 +83,8 @@ class Rss20 extends Parser */ public function findFeedLogo(SimpleXMLElement $xml, Feed $feed) { - if (isset($xml->channel->image->url)) { - $feed->logo = (string) $xml->channel->image->url; - } + $logo = XmlParser::getXPathResult($xml, 'channel/image/url'); + $feed->logo = (string) current($logo); } /** @@ -103,7 +108,8 @@ class Rss20 extends Parser */ public function findFeedTitle(SimpleXMLElement $xml, Feed $feed) { - $feed->title = Filter::stripWhiteSpace((string) $xml->channel->title) ?: $feed->getSiteUrl(); + $title = XmlParser::getXPathResult($xml, 'channel/title'); + $feed->title = Filter::stripWhiteSpace((string) current($title)) ?: $feed->getSiteUrl(); } /** @@ -115,7 +121,8 @@ class Rss20 extends Parser */ public function findFeedLanguage(SimpleXMLElement $xml, Feed $feed) { - $feed->language = isset($xml->channel->language) ? (string) $xml->channel->language : ''; + $language = XmlParser::getXPathResult($xml, 'channel/language'); + $feed->language = (string) current($language); } /** @@ -139,8 +146,21 @@ class Rss20 extends Parser */ public function findFeedDate(SimpleXMLElement $xml, Feed $feed) { - $date = isset($xml->channel->pubDate) ? $xml->channel->pubDate : $xml->channel->lastBuildDate; - $feed->date = $this->date->getDateTime((string) $date); + $publish_date = XmlParser::getXPathResult($xml, 'channel/pubDate'); + $update_date = XmlParser::getXPathResult($xml, 'channel/lastBuildDate'); + + $published = ! empty($publish_date) ? $this->date->getDateTime((string) current($publish_date)) : null; + $updated = ! empty($update_date) ? $this->date->getDateTime((string) current($update_date)) : null; + + if ($published === null && $updated === null) { + $feed->date = $this->date->getCurrentDateTime(); // We use the current date if there is no date for the feed + } + else if ($published !== null && $updated !== null) { + $feed->date = max($published, $updated); // We use the most recent date between published and updated + } + else { + $feed->date = $updated ?: $published; + } } /** @@ -153,17 +173,9 @@ class Rss20 extends Parser */ public function findItemDate(SimpleXMLElement $entry, Item $item, Feed $feed) { - $date = XmlParser::getNamespaceValue($entry, $this->namespaces, 'date'); + $date = XmlParser::getXPathResult($entry, 'pubDate'); - if (empty($date)) { - $date = XmlParser::getNamespaceValue($entry, $this->namespaces, 'updated'); - } - - if (empty($date)) { - $date = (string) $entry->pubDate; - } - - $item->date = empty($date) ? $feed->getDate() : $this->date->getDateTime($date); + $item->date = empty($date) ? $feed->getDate() : $this->date->getDateTime((string) current($date)); } /** @@ -175,11 +187,8 @@ class Rss20 extends Parser */ public function findItemTitle(SimpleXMLElement $entry, Item $item) { - $item->title = Filter::stripWhiteSpace((string) $entry->title); - - if (empty($item->title)) { - $item->title = $item->url; - } + $title = XmlParser::getXPathResult($entry, 'title'); + $item->title = Filter::stripWhiteSpace((string) current($title)) ?: $item->url; } /** @@ -192,16 +201,12 @@ class Rss20 extends Parser */ public function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item) { - $item->author = XmlParser::getNamespaceValue($entry, $this->namespaces, 'creator'); + $author = XmlParser::getXPathResult($entry, 'dc:creator', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'author') + ?: XmlParser::getXPathResult($xml, 'channel/dc:creator', $this->namespaces) + ?: XmlParser::getXPathResult($xml, 'channel/managingEditor'); - if (empty($item->author)) { - if (isset($entry->author)) { - $item->author = (string) $entry->author; - } - else if (isset($xml->channel->webMaster)) { - $item->author = (string) $xml->channel->webMaster; - } - } + $item->author = (string) current($author); } /** @@ -213,13 +218,13 @@ class Rss20 extends Parser */ public function findItemContent(SimpleXMLElement $entry, Item $item) { - $content = XmlParser::getNamespaceValue($entry, $this->namespaces, 'encoded'); + $content = XmlParser::getXPathResult($entry, 'content:encoded', $this->namespaces); - if (trim($content) === '' && $entry->description->count() > 0) { - $content = (string) $entry->description; + if (trim((string) current($content)) === '') { + $content = XmlParser::getXPathResult($entry, 'description'); } - $item->content = $content; + $item->content = (string) current($content); } /** @@ -231,18 +236,19 @@ class Rss20 extends Parser */ public function findItemUrl(SimpleXMLElement $entry, Item $item) { - $links = array( - XmlParser::getNamespaceValue($entry, $this->namespaces, 'origLink'), - isset($entry->link) ? (string) $entry->link : '', - XmlParser::getNamespaceValue($entry, $this->namespaces, 'link', 'href'), - isset($entry->guid) ? (string) $entry->guid : '', - ); + $link = XmlParser::getXPathResult($entry, 'feedburner:origLink', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'link') + ?: XmlParser::getXPathResult($entry, 'atom:link/@href', $this->namespaces); - foreach ($links as $link) { - $link = trim($link); - if (! empty($link) && filter_var($link, FILTER_VALIDATE_URL) !== false) { + if (! empty($link)) { + $item->url = trim((string) current($link)); + } + else { + $link = XmlParser::getXPathResult($entry, 'guid'); + $link = trim((string) current($link)); + + if (filter_var($link, FILTER_VALIDATE_URL) !== false) { $item->url = $link; - break; } } } @@ -257,7 +263,7 @@ class Rss20 extends Parser */ public function findItemId(SimpleXMLElement $entry, Item $item, Feed $feed) { - $id = (string) $entry->guid; + $id = (string) current(XmlParser::getXPathResult($entry, 'guid')); if ($id) { $item->id = $this->generateId($id); @@ -280,15 +286,14 @@ class Rss20 extends Parser public function findItemEnclosure(SimpleXMLElement $entry, Item $item, Feed $feed) { if (isset($entry->enclosure)) { + $enclosure_url = XmlParser::getXPathResult($entry, 'feedburner:origEnclosureLink', $this->namespaces) + ?: XmlParser::getXPathResult($entry, 'enclosure/@url'); - $item->enclosure_url = XmlParser::getNamespaceValue($entry->enclosure, $this->namespaces, 'origEnclosureLink'); + $enclosure_type = XmlParser::getXPathResult($entry, 'enclosure/@type'); - if (empty($item->enclosure_url)) { - $item->enclosure_url = isset($entry->enclosure['url']) ? (string) $entry->enclosure['url'] : ''; - } - $item->enclosure_type = isset($entry->enclosure['type']) ? (string) $entry->enclosure['type'] : ''; - $item->enclosure_url = Url::resolve($item->enclosure_url, $feed->getSiteUrl()); + $item->enclosure_url = Url::resolve((string) current($enclosure_url), $feed->getSiteUrl()); + $item->enclosure_type = (string) current($enclosure_type); } } @@ -302,6 +307,8 @@ class Rss20 extends Parser */ public function findItemLanguage(SimpleXMLElement $entry, Item $item, Feed $feed) { - $item->language = $feed->language; + $language = XmlParser::getXPathResult($entry, 'dc:language', $this->namespaces); + + $item->language = (string) current($language) ?: $feed->language; } } diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php index d0c2f8e..15cbe77 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php @@ -236,56 +236,38 @@ class XmlParser } /** - * Get xml:lang value + * Rewrite XPath query to use namespace-uri and local-name derived from prefix * - * @static - * @access public - * @param string $xml XML string - * @return string Language + * @param string $query XPath query + * @param array $ns Prefix to namespace URI mapping + * @return string */ - public static function getXmlLang($xml) - { - $dom = self::getDomDocument($xml); + public static function replaceXPathPrefixWithNamespaceURI($query, array $ns) { + return preg_replace_callback('/([A-Z0-9]+):([A-Z0-9]+)/iu', function($matches) use($ns) { + // don't try to map the special prefix XML + if (strtolower($matches[1]) === 'xml') { + return $matches[0]; + } - if ($dom === false) { - return ''; - } - - $xpath = new DOMXPath($dom); - return $xpath->evaluate('string(//@xml:lang[1])') ?: ''; + return '*[namespace-uri()="'.$ns[$matches[1]].'" and local-name()="'.$matches[2].'"]'; + }, + $query); } /** - * Get a value from a XML namespace + * Get the result elements of a XPath query * - * @static - * @access public - * @param \SimpleXMLElement $xml XML element - * @param array $namespaces XML namespaces - * @param string $property XML tag name - * @param string $attribute XML attribute name - * @return string + * @param \SimpleXMLElement $xml XML element + * @param string $query XPath query + * @param array $ns Prefix to namespace URI mapping + * @return \SimpleXMLElement */ - public static function getNamespaceValue(SimpleXMLElement $xml, array $namespaces, $property, $attribute = '') + public static function getXPathResult(SimpleXMLElement $xml, $query, array $ns = array()) { - foreach ($namespaces as $name => $url) { - $namespace = $xml->children($namespaces[$name]); - - if (isset($namespace->$property) && $namespace->$property->count() > 0) { - - if ($attribute) { - - foreach ($namespace->$property->attributes() as $xml_attribute => $xml_value) { - if ($xml_attribute === $attribute && $xml_value) { - return (string) $xml_value; - } - } - } - - return (string) $namespace->$property; - } + if (! empty($ns)) { + $query = static::replaceXPathPrefixWithNamespaceURI($query, $ns); } - return ''; + return $xml->xpath($query); } } diff --git a/vendor/fguillot/picofeed/tests/Filter/FilterTest.php b/vendor/fguillot/picofeed/tests/Filter/FilterTest.php index 9b4077b..29cff46 100644 --- a/vendor/fguillot/picofeed/tests/Filter/FilterTest.php +++ b/vendor/fguillot/picofeed/tests/Filter/FilterTest.php @@ -37,9 +37,6 @@ class FilterTest extends PHPUnit_Framework_TestCase $data = file_get_contents('tests/fixtures/sametmax.xml'); $this->assertEquals('assertEquals('assertEquals('assertEquals('assertEquals('execute(); } - public function testFeedTitle() + public function testGetItemsTree() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertEquals('The Official Google Blog', $feed->getTitle()); + $this->assertCount(4, $feed->items); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertEquals('Example Feed', $feed->getTitle()); + $this->assertCount(4, $feed->items); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertCount(4, $feed->items); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals(array(), $feed->items); } - public function testFeedDescription() + public function testFindFeedTitle() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertEquals('Insights from Googlers into our products, technology, and the Google culture.', $feed->getDescription()); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_fallback_on_invalid_feed_values.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); + } + + public function testFindFeedDescription() + { + $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); $feed = $parser->execute(); $this->assertEquals('', $feed->getDescription()); } - public function testFeedLogo() + public function testFindFeedLogo() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); $this->assertEquals('', $feed->getLogo()); - - $parser = new Atom(file_get_contents('tests/fixtures/bbc_urdu.xml')); - $feed = $parser->execute(); - $this->assertEquals('http://www.bbc.co.uk/urdu/images/gel/rss_logo.gif', $feed->getLogo()); } - public function testFeedIcon() + public function testFindFeedIcon() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/favicon/wikipedia.ico', $feed->getIcon()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/favicon/wikipedia.ico', $feed->getIcon()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/favicon/wikipedia.ico', $feed->getIcon()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); $this->assertEquals('', $feed->getIcon()); - - $parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml')); - $feed = $parser->execute(); - $this->assertEquals('http://www.la-grange.net/favicon.png', $feed->getIcon()); } - public function testFeedUrl() + public function testFindFeedUrl() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/category/Russian-language_literature.xml', $feed->getFeedUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); // relative url + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/category/Russian-language_literature.xml', $feed->getFeedUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/category/Russian-language_literature.xml', $feed->getFeedUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/category/Russian-language_literature.xml', $feed->getFeedUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); $this->assertEquals('', $feed->getFeedUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml'), '', 'http://example.org/'); - $feed = $parser->execute(); - $this->assertEquals('http://example.org/', $feed->getFeedUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml')); - $feed = $parser->execute(); - $this->assertEquals('http://www.la-grange.net/feed.atom', $feed->getFeedUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/groovehq.xml'), '', 'http://groovehq.com/'); - $feed = $parser->execute(); - $this->assertEquals('http://groovehq.com/articles.xml', $feed->getFeedUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/hamakor.xml'), '', 'http://planet.hamakor.org.il'); - $feed = $parser->execute(); - $this->assertEquals('http://planet.hamakor.org.il/atom.xml', $feed->getFeedUrl()); } - public function testSiteUrl() + public function testFindSiteUrl() { - $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); // rel="alternate" $feed = $parser->execute(); - $this->assertEquals('http://googleblog.blogspot.com/', $feed->getSiteUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); // no rel + relative url $feed = $parser->execute(); - $this->assertEquals('http://example.org/', $feed->getSiteUrl()); + $this->assertEquals('https://feeds.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); - $parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertEquals('http://www.la-grange.net/', $feed->getSiteUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); - $parser = new Atom(file_get_contents('tests/fixtures/groovehq.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); $feed = $parser->execute(); $this->assertEquals('', $feed->getSiteUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/hamakor.xml'), '', 'http://planet.hamakor.org.il'); - $feed = $parser->execute(); - $this->assertEquals('http://planet.hamakor.org.il/', $feed->getSiteUrl()); } - public function testFeedId() + public function testFindFeedId() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertEquals('tag:blogger.com,1999:blog-10861780', $feed->getId()); + $this->assertEquals('urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83', $feed->getId()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertEquals('urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6', $feed->getId()); + $this->assertEquals('urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83', $feed->getId()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83', $feed->getId()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getId()); } - public function testFeedDate() + public function testFindFeedDate() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertEquals(1360148333, $feed->getDate()->getTimestamp(), '', 1); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertEquals(1071340202, $feed->getDate()->getTimestamp(), '', 1); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); - $parser = new Atom(file_get_contents('tests/fixtures/duesseldorf_lokalzeit.rdf')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); $feed = $parser->execute(); - $this->assertEquals('2015-01-05', $feed->getDate()->format('Y-m-d')); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->getDate()->getTimestamp(), 1); } - public function testFeedLanguage() + public function testFindFeedLanguage() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); + $this->assertEquals('ru', $feed->getLanguage()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_extra.xml')); + $feed = $parser->execute(); + $this->assertEquals('ru', $feed->getLanguage()); + + // do not use lang from entry or descendant of entry + $parser = new Atom('</entry></feed>'); + $feed = $parser->execute(); $this->assertEquals('', $feed->getLanguage()); - $this->assertEquals('', $feed->items[0]->getLanguage()); - $parser = new Atom(file_get_contents('tests/fixtures/bbc_urdu.xml')); + // do not use lang from entry or descendant of entry (prefixed) + $parser = new Atom('<feed xmlns:atom="http://www.w3.org/2005/Atom"><atom:entry xml:lang="ru"><atom:title xml:lang="ru"/></atom:entry></feed>'); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('ur', $feed->getLanguage()); - $this->assertEquals('ur', $feed->items[0]->getLanguage()); + $this->assertEquals('', $feed->getLanguage()); - $parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('fr', $feed->getLanguage()); - $this->assertEquals('fr', $feed->items[0]->getLanguage()); + $this->assertEquals('ru', $feed->getLanguage()); - $parser = new Atom(file_get_contents('tests/fixtures/hamakor.xml'), '', 'http://planet.hamakor.org.il'); + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); $feed = $parser->execute(); - $this->assertEquals('he', $feed->getLanguage()); + $this->assertEquals('ru', $feed->getLanguage()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getLanguage()); } - public function testItemId() + public function testFindItemId() { - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('3841e5cf232f5111fc5841e9eba5f4b26d95e7d7124902e0f7272729d65601a6', $feed->items[0]->getId()); - } - - public function testItemUrl() - { - $parser = new Atom(file_get_contents('tests/fixtures/hamakor.xml'), '', 'http://planet.hamakor.org.il'); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://idkn.wordpress.com/2014/12/20/modular-sinatra/', $feed->items[0]->getUrl()); - $this->assertEquals('http://www.guyrutenberg.com/2014/12/20/kindle-paperwhite-unable-to-open-item/', $feed->items[1]->getUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://example.org/2003/12/13/atom03', $feed->items[0]->getUrl()); - - $parser = new Atom(file_get_contents('tests/fixtures/bbc_urdu.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://www.bbc.co.uk/urdu/world/2014/03/140316_missing_malaysia_plane_pilot_mb.shtml', $feed->items[0]->getUrl()); - $this->assertEquals('http://www.bbc.co.uk/urdu/pakistan/2014/03/140316_taliban_talks_pro_ibrahim_zs.shtml', $feed->items[1]->getUrl()); - + // items[0] === alternate generation + // items[1] === id element $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://feedproxy.google.com/~r/blogspot/MKuf/~3/S_hccisqTW8/a-chrome-experiment-made-with-some.html', $feed->items[0]->getUrl()); + $this->assertEquals('eb6f2d388a77e1f7d067a924970622d630031365fd444abe776d974d95b21990', $feed->items[0]->getId()); + $this->assertEquals('b64b5e0ce422566fa768e8c66da61ab5759c00b2289adbe8fe2f35ecfe211184', $feed->items[1]->getId()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('eb6f2d388a77e1f7d067a924970622d630031365fd444abe776d974d95b21990', $feed->items[0]->getId()); + $this->assertEquals('b64b5e0ce422566fa768e8c66da61ab5759c00b2289adbe8fe2f35ecfe211184', $feed->items[1]->getId()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('eb6f2d388a77e1f7d067a924970622d630031365fd444abe776d974d95b21990', $feed->items[0]->getId()); + $this->assertEquals('b64b5e0ce422566fa768e8c66da61ab5759c00b2289adbe8fe2f35ecfe211184', $feed->items[1]->getId()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', $feed->items[0]->getId()); } - public function testItemTitle() + public function testFindItemUrl() + { + // items[0] === rel="alternate" + // items[1] === no rel + $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); + + // relative url + $parser = new Atom(file_get_contents('tests/fixtures/atom_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); + $this->assertEquals('https://feeds.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getUrl()); + } + + public function testFindItemTitle() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('Safer Internet Day: How we help you stay secure online', $feed->items[1]->getTitle()); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_fallback_on_invalid_item_values.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getTitle()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getTitle()); } public function testItemDate() { - $parser = new Atom(file_get_contents('tests/fixtures/duesseldorf_lokalzeit.rdf')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('2015-01-05', $feed->items[4]->getDate()->format('Y-m-d')); - + // items[0] === updated element + // items[1] === published element + // items[2] === fallback to feed date $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(1360011661, $feed->items[1]->getDate()->getTimestamp(), '', 1); + $this->assertEquals(1433451720, $feed->items[0]->getDate()->getTimestamp()); + $this->assertEquals(1433451720, $feed->items[1]->getDate()->getTimestamp()); + $this->assertEquals(1433451900, $feed->items[2]->getDate()->getTimestamp()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(1071340202, $feed->items[0]->getDate()->getTimestamp(), '', 1); + $this->assertEquals(1433451720, $feed->items[0]->getDate()->getTimestamp()); + $this->assertEquals(1433451720, $feed->items[1]->getDate()->getTimestamp()); + $this->assertEquals(1433451900, $feed->items[2]->getDate()->getTimestamp()); - $parser = new Atom(file_get_contents('tests/fixtures/youtube.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(1336825342, $feed->items[1]->getDate()->getTimestamp(), '', 1); // Should return the published date + $this->assertEquals(1433451720, $feed->items[0]->getDate()->getTimestamp()); + $this->assertEquals(1433451720, $feed->items[1]->getDate()->getTimestamp()); + $this->assertEquals(1433451900, $feed->items[2]->getDate()->getTimestamp()); + + // prefer most recent date and not a particular date element + $parser = new Atom(file_get_contents('tests/fixtures/atom_element_preference.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433455500, $feed->items[0]->getDate()->getTimestamp()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->getDate()->getTimestamp(), '', 1); } public function testItemLanguage() { + // items[0] === language tag on Language-Sensitive element (title) + // items[1] === language tag on root node + // items[2] === fallback to feed language $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('', $feed->items[1]->getLanguage()); + $this->assertEquals('bg', $feed->items[0]->getLanguage()); + $this->assertEquals('bg', $feed->items[1]->getLanguage()); + $this->assertEquals('ru', $feed->items[2]->getLanguage()); - $parser = new Atom(file_get_contents('tests/fixtures/hamakor.xml'), '', 'http://planet.hamakor.org.il'); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('he', $feed->items[0]->getLanguage()); - $this->assertTrue($feed->items[0]->isRTL()); - $this->assertEquals('en-US', $feed->items[1]->getLanguage()); - $this->assertFalse($feed->items[1]->isRTL()); + $this->assertEquals('bg', $feed->items[0]->getLanguage()); + $this->assertEquals('bg', $feed->items[1]->getLanguage()); + $this->assertEquals('ru', $feed->items[2]->getLanguage()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('bg', $feed->items[0]->getLanguage()); + $this->assertEquals('bg', $feed->items[1]->getLanguage()); + $this->assertEquals('ru', $feed->items[2]->getLanguage()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getLanguage()); } public function testItemAuthor() { + // items[0] === item author + // items[1] === feed author via empty fallback $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('Emily Wood', $feed->items[1]->getAuthor()); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('John Doe', $feed->items[0]->getAuthor()); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getAuthor()); } public function testItemContent() + { + // items[0] === <summary> + // items[1] === <content> CDATA raw html + // items[2] === <content> escaped html + // items[3] === <content> raw html + $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); + $this->assertTrue(strpos($feed->items[2]->getContent(), "<h1>\nДоктор Живаго\n</h1>\n<p>\n<b>«До́ктор Жива́го»</b> ") === 0); + $this->assertTrue(strpos($feed->items[3]->getContent(), "<h1>\nГерой нашего времени\n</h1><p>\n<b>«Геро́й на́шего вре́мени»</b> \n(написан в 1838—1840) — знаменитый роман \n<a href=\"/wiki/%D0%9B") === 0); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); + $this->assertTrue(strpos($feed->items[2]->getContent(), "<h1>\nДоктор Живаго\n</h1>\n<p>\n<b>«До́ктор Жива́го»</b> ") === 0); + $this->assertTrue(strpos($feed->items[3]->getContent(), "<h1>\nГерой нашего времени\n</h1><p>\n<b>«Геро́й на́шего вре́мени»</b> \n(написан в 1838—1840) — знаменитый роман \n<a href=\"/wiki/%D0%9B") === 0); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); + $this->assertTrue(strpos($feed->items[2]->getContent(), "<h1>\nДоктор Живаго\n</h1>\n<p>\n<b>«До́ктор Жива́го»</b> ") === 0); + $this->assertTrue(strpos($feed->items[3]->getContent(), "<h1>\nГерой нашего времени\n</h1><p>\n<b>«Геро́й на́шего вре́мени»</b> \n(написан в 1838—1840) — знаменитый роман \n<a href=\"/wiki/%D0%9B") === 0); + + // <content> is preferred over <summary> + $parser = new Atom(file_get_contents('tests/fixtures/atom_element_preference.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_fallback_on_invalid_item_values.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // <content> => <summary> + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getContent()); + } + + public function testFindItemEnclosure() { $parser = new Atom(file_get_contents('tests/fixtures/atom.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[1]->getContent(), '<p>Technology can') === 0); + $this->assertEquals('https://upload.wikimedia.org/wikipedia/commons/4/41/War-and-peace_1873.gif', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('image/gif', $feed->items[0]->getEnclosureType()); - $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml')); + $parser = new Atom(file_get_contents('tests/fixtures/atom_no_default_namespace.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[0]->getContent(), '<p>Some text.') === 0); + $this->assertEquals('https://upload.wikimedia.org/wikipedia/commons/4/41/War-and-peace_1873.gif', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('image/gif', $feed->items[0]->getEnclosureType()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://upload.wikimedia.org/wikipedia/commons/4/41/War-and-peace_1873.gif', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('image/gif', $feed->items[0]->getEnclosureType()); + + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('', $feed->items[0]->getEnclosureType()); } } \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/Parser/ItemTest.php b/vendor/fguillot/picofeed/tests/Parser/ItemTest.php index 5254acc..bf27fb6 100644 --- a/vendor/fguillot/picofeed/tests/Parser/ItemTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/ItemTest.php @@ -21,4 +21,16 @@ class ItemTest extends PHPUnit_Framework_TestCase $item->language = 'ru'; $this->assertFalse($item->isRTL()); } + + public function testGetTag() + { + $parser = new Rss20(file_get_contents('tests/fixtures/podbean.xml')); + $feed = $parser->execute(); + $this->assertEquals(array('http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/'), $feed->items[0]->getTag('guid')); + $this->assertEquals(array('false'), $feed->items[0]->getTag('guid', 'isPermaLink')); + $this->assertEquals(array('http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png'), $feed->items[0]->getTag('media:content', 'url')); + $this->assertEquals(array('http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/feed/'), $feed->items[0]->getTag('wfw:commentRss')); + $this->assertEquals(array(), $feed->items[0]->getTag('wfw:notExistent')); + $this->assertCount(7, $feed->items[0]->getTag('itunes:*')); + } } diff --git a/vendor/fguillot/picofeed/tests/Parser/ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/ParserTest.php index 7747a0d..7a2f161 100644 --- a/vendor/fguillot/picofeed/tests/Parser/ParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/ParserTest.php @@ -23,17 +23,6 @@ class ParserTest extends PHPUnit_Framework_TestCase $this->assertFalse(Parser::isLanguageRTL('ru')); } - public function testNamespaceValue() - { - $xml = XmlParser::getSimpleXml(file_get_contents('tests/fixtures/rue89.xml')); - $this->assertNotFalse($xml); - $namespaces = $xml->getNamespaces(true); - - $parser = new Rss20(''); - $this->assertEquals('Blandine Grosjean', XmlParser::getNamespaceValue($xml->channel->item[0], $namespaces, 'creator')); - $this->assertEquals('Pierre-Carl Langlais', XmlParser::getNamespaceValue($xml->channel->item[1], $namespaces, 'creator')); - } - public function testFeedsWithInvalidCharacters() { $parser = new Rss20(file_get_contents('tests/fixtures/lincoln_loop.xml')); @@ -44,4 +33,39 @@ class ParserTest extends PHPUnit_Framework_TestCase $feed = $parser->execute(); $this->assertNotEmpty($feed->items); } + + public function testFeedEncodingsAreSupported() + { + // windows-1251 + $parser = new Rss20(file_get_contents('tests/fixtures/ibash.ru.xml')); + $feed = $parser->execute(); + $this->assertEquals('<p>Хабр, обсуждение фейлов на работе: reaferon: Интернет-магазин с оборотом более 1 млн. в месяц. При округлении цены до двух знаков после запятой: $price = round($price,2); была допущена досадная опечатка $price = rand($price,2);</p>', $feed->items[0]->getContent()); + + // CP1251 + $parser = new Rss20(file_get_contents('tests/fixtures/xakep.ru.xml')); + $feed = $parser->execute(); + $this->assertEquals('Bug Bounty — другая сторона медали', $feed->items[23]->title); + $this->assertEquals('<p>Бывший директор АНБ, генерал Майкл Хэйден снова показал себя во всей красе.</p>', $feed->items[0]->getContent()); + } + + public function testXMLTagStrippingIsUsed() + { + $parser = new Rss20(file_get_contents('tests/fixtures/jeux-linux.fr.xml')); + $feed = $parser->execute(); + $this->assertNotEmpty($feed->items); + } + + public function testHTTPEncodingFallbackIsUsed() + { + $parser = new Rss20(file_get_contents('tests/fixtures/cercle.psy.xml'), 'iso-8859-1'); + $feed = $parser->execute(); + $this->assertNotEmpty($feed->items); + } + + public function testFeedURLFallbackIsUsed() + { + $parser = new Atom(file_get_contents('tests/fixtures/atom_empty_feed.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/category/Russian-language_literature.xml', $feed->getFeedUrl()); + } } diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php index 945eb3a..f275da0 100644 --- a/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php @@ -1,4 +1,5 @@ <?php + namespace PicoFeed\Parser; use PHPUnit_Framework_TestCase; @@ -15,105 +16,337 @@ class Rss10ParserTest extends PHPUnit_Framework_TestCase $parser->execute(); } - public function testFeedTitle() + public function testGetItemsTree() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertEquals("Planète jQuery : l'actualité jQuery, plugins jQuery et tutoriels jQuery en français", $feed->getTitle()); + $this->assertCount(2, $feed->items); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertCount(3, $feed->items); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertCount(1, $feed->items); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals(array(), $feed->items); } - public function testFeedUrl() + public function testFindFeedTitle() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_fallback_on_invalid_feed_values.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); + } + + public function testFindFeedDescription() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getDescription()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getDescription()); + } + + public function testFindFeedLogo() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getLogo()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getLogo()); + } + + public function testFindFeedIcon() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getIcon()); + } + + public function testFindFeedUrl() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); $this->assertEquals('', $feed->getFeedUrl()); } - public function testSiteUrl() + public function testFindSiteUrl() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertEquals('http://planete-jquery.fr/', $feed->getSiteUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); // relative url + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getSiteUrl()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getSiteUrl()); } - public function testFeedId() + public function testFindFeedId() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertEquals('http://planete-jquery.fr/', $feed->getId()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getId()); } - public function testFeedDate() + public function testFindFeedDate() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertEquals(1363752990, $feed->getDate()->getTimestamp(), '', 1); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->getDate()->getTimestamp(), '', 1); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->getDate()->getTimestamp(), '', 1); } - public function testFeedLanguage() + public function testFindFeedLanguage() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertEquals('fr', $feed->getLanguage()); - $this->assertEquals('fr', $feed->items[0]->getLanguage()); + $this->assertEquals('ru', $feed->getLanguage()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('ru', $feed->getLanguage()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('ru', $feed->getLanguage()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); } - public function testItemId() + public function testFindItemId() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('eb6f2d388a77e1f7d067a924970622d630031365fd444abe776d974d95b21990', $feed->items[0]->getId()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', $feed->items[0]->getId()); + } + + public function testFindItemUrl() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); // <feedburner:origLink> + + // relative urls + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); + $feed = $parser->execute(); + $this->assertEquals('https://feeds.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + $this->assertEquals('https://feeds.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); // <feedburner:origLink> + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_element_preference.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <feedburner:origLink> is preferred over <rss:link> + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getUrl()); + } + + public function testFindItemTitle() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $feed = $parser->execute(); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $feed = $parser->execute(); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_fallback_on_invalid_item_values.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getTitle()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getTitle()); + } + + /* + * TODO: Add test of feed date fallback + */ + public function testFindItemDate() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433451720, $feed->items[0]->getDate()->getTimestamp()); // item date + $this->assertEquals(1433451900, $feed->items[1]->getDate()->getTimestamp()); // fallback to feed date + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->items[0]->getDate()->getTimestamp(), 1); + } + + public function testFindItemLanguage() + { + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('bg', $feed->items[0]->getLanguage()); // item language + $this->assertEquals('ru', $feed->items[1]->getLanguage()); // fallback to feed language + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getAuthor()); + } + + public function testFindItemAuthor() + { + // items[0] === item author + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); + $feed = $parser->execute(); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getAuthor()); + } + + public function testFindItemContent() + { + // items[0] === <description> + // items[1] === <content:encoded> + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $parser->disableContentFiltering(); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); - $item = $feed->items[0]; - $this->assertEquals($parser->generateId($item->getTitle(), $item->getUrl(), $item->getContent()), $item->getId()); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_no_default_namespace.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_prefixed.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + + // <content:encoding> is preferred over <description> + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_element_preference.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_fallback_on_invalid_item_values.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // <content:encoded> => <description> + + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10_empty_item.xml')); + $parser->disableContentFiltering(); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getContent()); } - public function testItemUrl() + public function testFindItemEnclosure() { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); + $parser = new Rss10(file_get_contents('tests/fixtures/rss_10.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://www.mathieurobin.com/2013/03/chroniques-jquery-episode-108/', $feed->items[0]->getUrl()); - } - - public function testItemTitle() - { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('LaFermeDuWeb : PowerTip - Des tooltips aux fonctionnalités avancées', $feed->items[1]->getTitle()); - } - - public function testItemDate() - { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(1362647700, $feed->items[1]->getDate()->getTimestamp(), '', 1); - } - - public function testItemLanguage() - { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('fr', $feed->items[1]->getLanguage()); - } - - public function testItemAuthor() - { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('LaFermeDuWeb', $feed->items[1]->getAuthor()); - } - - public function testItemContent() - { - $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[1]->getContent(), '<a href="http://www.lafermeduweb.net') === 0); + $this->assertEquals('', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('', $feed->items[0]->getEnclosureType()); } } \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php index 599ba9d..54a9e42 100644 --- a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php @@ -3,7 +3,7 @@ namespace PicoFeed\Parser; use PHPUnit_Framework_TestCase; -use DateTime; + class Rss20ParserTest extends PHPUnit_Framework_TestCase { @@ -16,254 +16,296 @@ class Rss20ParserTest extends PHPUnit_Framework_TestCase $parser->execute(); } - public function testFeedTitle() + public function testGetItemsTree() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals('WordPress News', $feed->getTitle()); + $this->assertCount(4, $feed->items); - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); $feed = $parser->execute(); - $this->assertEquals('PC INpact', $feed->getTitle()); + $this->assertEquals(array(), $feed->items); } - public function testFeedDescription() + public function testFindFeedTitle() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals('WordPress News', $feed->getDescription()); + $this->assertEquals('литература на русском языке, либо написанная русскими авторами', $feed->getTitle()); - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_fallback_on_invalid_feed_values.xml')); $feed = $parser->execute(); - $this->assertEquals('Actualités Informatique', $feed->getDescription()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getTitle()); - $parser = new Rss20(file_get_contents('tests/fixtures/sametmax.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); $feed = $parser->execute(); - $this->assertEquals('Deux développeurs en vadrouille qui se sortent les doigts du code', $feed->getDescription()); + $this->assertEquals('', $feed->getTitle()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); } - public function testFeedLogo() + public function testFindFeedDescription() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); + $feed = $parser->execute(); + $this->assertEquals("Зародилась во второй половине X века, однако до XIX века,\nкогда начался её «золотой век», была практически неизвестна\nв мире.", $feed->getDescription()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getDescription()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getDescription()); + } + + public function testFindFeedLogo() + { + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); + $feed = $parser->execute(); + $this->assertEquals('https://ru.wikipedia.org/static/images/project-logos/ruwiki.png', $feed->getLogo()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); $feed = $parser->execute(); $this->assertEquals('', $feed->getLogo()); - $parser = new Rss20(file_get_contents('tests/fixtures/radio-france.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); $feed = $parser->execute(); - $this->assertEquals('http://media.radiofrance-podcast.net/podcast09/RF_OMM_0000006330_ITE.jpg', $feed->getLogo()); + $this->assertEquals('', $feed->getLogo()); } - public function testFeedUrl() + public function testFindFeedIcon() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals('', $feed->getFeedUrl()); + $this->assertEquals('', $feed->getIcon()); + } - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml'), '', 'http://example.com/feed'); - $feed = $parser->execute(); - $this->assertEquals('http://example.com/feed', $feed->getFeedUrl()); - - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + public function testFindFeedUrl() + { + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); $this->assertEquals('', $feed->getFeedUrl()); } - public function testSiteUrl() + public function testFindSiteUrl() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals('http://wordpress.org/news', $feed->getSiteUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); // relative url $feed = $parser->execute(); - $this->assertEquals('http://www.pcinpact.com/', $feed->getSiteUrl()); + $this->assertEquals('https://feeds.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getSiteUrl()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getSiteUrl()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getSiteUrl()); } - public function testFeedId() + public function testFindFeedId() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals('http://wordpress.org/news', $feed->getId()); + $this->assertEquals('https://en.wikipedia.org/wiki/Category:Russian-language_literature', $feed->getId()); } - public function testFeedDate() + public function testFindFeedDate() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + // pubDate + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertEquals(1359066183, $feed->getDate()->getTimestamp()); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); - $parser = new Rss20(file_get_contents('tests/fixtures/fulltextrss.xml')); + // lastBuildDate + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_extra.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433451900, $feed->getDate()->getTimestamp()); + + // prefer most recent date and not a particular date element + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_element_preference.xml')); + $feed = $parser->execute(); + $this->assertEquals(1433455500, $feed->getDate()->getTimestamp()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals(time(), $feed->getDate()->getTimestamp(), '', 1); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); $feed = $parser->execute(); $this->assertEquals(time(), $feed->getDate()->getTimestamp(), '', 1); } - public function testFeedLanguage() + public function testFindFeedLanguage() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); - $feed = $parser->execute(); - $this->assertEquals('en-US', $feed->getLanguage()); - $this->assertEquals('en-US', $feed->items[0]->getLanguage()); - - $parser = new Rss20(file_get_contents('tests/fixtures/zoot_egkty.xml')); - $feed = $parser->execute(); - $this->assertEquals('ur', $feed->getLanguage()); - $this->assertEquals('ur', $feed->items[0]->getLanguage()); - - $parser = new Rss20(file_get_contents('tests/fixtures/ibash.ru.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); $this->assertEquals('ru', $feed->getLanguage()); - $this->assertEquals('ru', $feed->items[0]->getLanguage()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_channel.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_feed.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->getTitle()); } - public function testItemId() + public function testFindItemId() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); // <guid> $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('de679f14fc4774f0d6dfe73c3f8c8368ab85da18addf101a2af8c32ac6320f9f', $feed->items[0]->getId()); + $this->assertEquals('06e53052cd17cdfb264d9c37d495cc3746ac43f79488c7ce67894e718f674bd5', $feed->items[1]->getId()); - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); // alternate generation $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(hash('sha256', '78872'), $feed->items[0]->getId()); + $this->assertEquals('eb6f2d388a77e1f7d067a924970622d630031365fd444abe776d974d95b21990', $feed->items[0]->getId()); - $parser = new Rss20(file_get_contents('tests/fixtures/fulltextrss.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(hash('sha256', 'http://www.numerama.com/magazine/25669-brevets-un-juge-doute-de-la-bonne-volonte-de-google-et-apple.html'), $feed->items[0]->getId()); - - $parser = new Rss20(file_get_contents('tests/fixtures/debug_show.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(hash('sha256', '38DC2FF1-4207-4C04-93F3-2DAFB0E559D9'), $feed->items[1]->getId()); - $this->assertEquals(hash('sha256', '3FA03A63-BEA2-4199-A1E4-D2963845F3F6'), $feed->items[2]->getId()); - $this->assertEquals($feed->items[1]->getUrl(), $feed->items[2]->getUrl()); - $this->assertNotEquals($feed->items[1]->getId(), $feed->items[2]->getId()); + $this->assertEquals('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', $feed->items[0]->getId()); } - public function testItemUrl() + public function testFindItemUrl() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://wordpress.org/news/2013/01/wordpress-3-5-1/', $feed->items[0]->getUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); // <atom:link> + $this->assertEquals('https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getUrl()); // <feedburner:origLink> + $this->assertEquals('https://guid.wikipedia.org/wiki/A_Hero_of_Our_Time', $feed->items[3]->getUrl()); // <guid> - $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml')); + // relative urls + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_extra.xml'), '', 'https://feeds.wikipedia.org/category/Russian-language_literature.xml'); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://www.pcinpact.com/breve/78872-la-dcri-purge-wikipedia-par-menace-bel-effet-streisand-a-cle.htm?utm_source=PCi_RSS_Feed&utm_medium=news&utm_campaign=pcinpact', $feed->items[0]->getUrl()); + $this->assertEquals('https://feeds.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <rss:link> + $this->assertEquals('https://feeds.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); // <atom:link> + $this->assertEquals('https://feeds.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getUrl()); // <feedburner:origLink> - $parser = new Rss20(file_get_contents('tests/fixtures/dailymail.co.uk.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_element_preference.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://www.dailymail.co.uk/sport/sportsnews/article-3146732/Heartbreak-tears-England-Lionesses-crash-Women-s-World-Cup-defender-Laura-Bassett-scores-freak-goal-injury-time-Japan-final.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490', $feed->items[0]->getUrl()); + $this->assertEquals('https://en.wikipedia.org/wiki/War_and_Peace', $feed->items[0]->getUrl()); // <feedburner:origLink> is preferred over <rss:link>, <atom:link>, <guid> + $this->assertEquals('https://en.wikipedia.org/wiki/Crime_and_Punishment', $feed->items[1]->getUrl()); // <rss:link> is preferred over <atom:link>, <guid> + $this->assertEquals('https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getUrl()); // <atom:link> is preferred over <guid> + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_fallback_on_invalid_item_values.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getUrl()); // <guid> is invalid URI + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getUrl()); } - public function testItemTitle() + public function testFindItemTitle() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('2012: A Look Back', $feed->items[1]->getTitle()); + $this->assertEquals('Война и мир', $feed->items[0]->getTitle()); - $parser = new Rss20(file_get_contents('tests/fixtures/womensweardaily.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_fallback_on_invalid_item_values.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('They Are Wearing: Frieze London Photo by Marcus Dawes', $feed->items[3]->getTitle()); + $this->assertEquals('https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel)', $feed->items[2]->getTitle()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getTitle()); } - public function testItemDate() + public function testFindItemDate() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('2013-01-01', $feed->items[1]->getDate()->format('Y-m-d')); + $this->assertEquals(1433451720, $feed->items[0]->getDate()->getTimestamp()); // item date + $this->assertEquals(1433451900, $feed->items[1]->getDate()->getTimestamp()); // fallback to feed date - $parser = new Rss20(file_get_contents('tests/fixtures/fulltextrss.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('2013-04-12', $feed->items[0]->getDate()->format('Y-m-d')); + $this->assertEquals(time(), $feed->items[0]->getDate()->getTimestamp(), 1); } - public function testItemLanguage() + public function testFindItemLanguage() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('en-US', $feed->items[1]->getLanguage()); + $this->assertEquals('bg', $feed->items[0]->getLanguage()); // item language + $this->assertEquals('ru', $feed->items[1]->getLanguage()); // fallback to feed language + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getLanguage()); } - public function testItemAuthor() + public function testFindItemAuthor() { - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + // items[0] === item author + // items[1] === feed author via empty fallback (channel/managingEditor) + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('Jen Mylo', $feed->items[1]->getAuthor()); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); - $parser = new Rss20(file_get_contents('tests/fixtures/rss2sample.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_dc.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('webmaster@example.com', $feed->items[2]->getAuthor()); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); + + // <dc:creator> is preferred over <author> + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_element_preference.xml')); + $feed = $parser->execute(); + $this->assertEquals('Лев Николаевич Толсто́й', $feed->items[0]->getAuthor()); + $this->assertEquals('Вики педии - свободной энциклопедии', $feed->items[1]->getAuthor()); + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getAuthor()); } - public function testItemContent() + public function testFindItemContent() { - $parser = new Rss20(file_get_contents('tests/fixtures/allgemeine-zeitung.xml')); + // items[0] === <description> + // items[1] === <content:encoded> + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); + $parser->disableContentFiltering(); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals( - '<p>OBER-FLÖRSHEIM - (red). Sein erheblich beschädigtes Fahrzeug hat ein Fahrer in der Nacht von Donnerstag auf Freitag mitten auf der Ober-Flörsheimer Hauptstraße stehen lassen. Beim Verlassen des Autos in Richtung ...</p>', - $feed->items[2]->getContent() - ); + $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); - $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml')); + // <content:encoding> is preferred over <description> + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_element_preference.xml')); + $parser->disableContentFiltering(); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[1]->getContent(), '<p>Another year is coming') === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "<h1>\nИстория создания\n</h1>\n<p>\nОсенью \n<a href=\"/wiki/1865_%D0%B3%D0%BE%D0%B4\"") === 0); - $parser = new Rss20(file_get_contents('tests/fixtures/rss2sample.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_fallback_on_invalid_item_values.xml')); + $parser->disableContentFiltering(); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[1]->getContent(), '<p>Sky watchers in Europe') === 0); + $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // <content:encoded> => <description> - $parser = new Rss20(file_get_contents('tests/fixtures/ibash.ru.xml')); + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $parser->disableContentFiltering(); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertTrue(strpos($feed->items[0]->getContent(), '<p>Хабр, обсуждение фейлов на работе: reaferon: Интернет') === 0); + $this->assertEquals('', $feed->items[0]->getContent()); } - public function testItemEnclosure() + public function testFindItemEnclosure() { - $parser = new Rss20(file_get_contents('tests/fixtures/rue89.xml')); + // Test tests covers the preference of <feedburner:origEnclosureLink> over <enclosure> as well + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20.xml')); $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://rue89.feedsportal.com/c/33822/f/608948/e/1/s/2a687021/l/0L0Srue890N0Csites0Cnews0Cfiles0Cstyles0Cmosaic0Cpublic0Czapnet0Cthumbnail0Isquare0C20A130C0A40Ccahuzac0I10Bpng/cahuzac_1.png', $feed->items[0]->getEnclosureUrl()); - $this->assertEquals('image/png', $feed->items[0]->getEnclosureType()); + $this->assertEquals('https://upload.wikimedia.org/wikipedia/commons/4/41/War-and-peace_1873.gif', $feed->items[0]->getEnclosureUrl()); // <enclosure> + $this->assertEquals('image/gif', $feed->items[0]->getEnclosureType()); + $this->assertEquals('https://upload.wikimedia.org/wikipedia/commons/7/7b/Crime_and_Punishment-1.png', $feed->items[1]->getEnclosureUrl()); // <feedburner:origEnclosureLink> + + $parser = new Rss20(file_get_contents('tests/fixtures/rss_20_empty_item.xml')); + $feed = $parser->execute(); + $this->assertEquals('', $feed->items[0]->getEnclosureUrl()); + $this->assertEquals('', $feed->items[0]->getEnclosureType()); } - - public function testFeedsReportedAsNotWorking() - { - $parser = new Rss20(file_get_contents('tests/fixtures/biertaucher.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(177, count($feed->items)); - - $parser = new Rss20(file_get_contents('tests/fixtures/radio-france.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals(52, count($feed->items)); - - $parser = new Rss20(file_get_contents('tests/fixtures/fanboys.fm_episodes.all.mp3.rss')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - - $parser = new Rss20(file_get_contents('tests/fixtures/geekstammtisch.de_episodes.mp3.rss')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - $this->assertEquals('http://geekstammtisch.de/#GST001', $feed->items[1]->getUrl()); - - $parser = new Rss20(file_get_contents('tests/fixtures/jeux-linux.fr.xml')); - $feed = $parser->execute(); - $this->assertNotEmpty($feed->items); - } -} +} \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php index b05e87f..e165ef9 100644 --- a/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php @@ -25,7 +25,7 @@ class Rss91ParserTest extends PHPUnit_Framework_TestCase $this->assertEquals('http://writetheweb.com/read.php?item=24', $feed->items[0]->getUrl()); $this->assertEquals('085a9133a75542f878fa73ee2afbb6a2350b6c4fb125e6d8ca09478c47702111', $feed->items[0]->getId()); $this->assertEquals(time(), $feed->items[0]->getDate()->getTimestamp(), '', 1); - $this->assertEquals('webmaster@writetheweb.com', $feed->items[0]->getAuthor()); + $this->assertEquals('editor@writetheweb.com', $feed->items[0]->getAuthor()); $this->assertTrue(strpos($feed->items[1]->getContent(), '<p>After a period of dormancy') === 0); } } \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/Parser/XmlParserTest.php b/vendor/fguillot/picofeed/tests/Parser/XmlParserTest.php index a849c58..3ec0a46 100644 --- a/vendor/fguillot/picofeed/tests/Parser/XmlParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/XmlParserTest.php @@ -176,4 +176,22 @@ XML; $this->assertTrue($result instanceof DOMDocument); $this->assertTrue($result->validate()); } + + public function testReplaceXPathPrefixWithNamespaceURI() + { + $ns = array('lorem' => 'https://en.wikipedia.org/wiki/Lorem'); + $query = '//lorem:title'; + $expected = '//*[namespace-uri()="https://en.wikipedia.org/wiki/Lorem" and local-name()="title"]'; + $this->assertEquals($expected, XmlParser::replaceXPathPrefixWithNamespaceURI($query, $ns)); + + $ns = array('lorem' => 'https://en.wikipedia.org/wiki/Lorem', 'ipsum' => 'https://en.wikipedia.org/wiki/Ipsum'); + $query = '//lorem:title/ipsum:name'; + $expected = '//*[namespace-uri()="https://en.wikipedia.org/wiki/Lorem" and local-name()="title"]/*[namespace-uri()="https://en.wikipedia.org/wiki/Ipsum" and local-name()="name"]'; + $this->assertEquals($expected, XmlParser::replaceXPathPrefixWithNamespaceURI($query, $ns)); + + $ns = array('lorem' => 'https://en.wikipedia.org/wiki/Lorem', 'ipsum' => 'https://en.wikipedia.org/wiki/Ipsum'); + $query = '//lorem:title/ipsum:name/@xml:lang'; + $expected = '//*[namespace-uri()="https://en.wikipedia.org/wiki/Lorem" and local-name()="title"]/*[namespace-uri()="https://en.wikipedia.org/wiki/Ipsum" and local-name()="name"]/@xml:lang'; + $this->assertEquals($expected, XmlParser::replaceXPathPrefixWithNamespaceURI($query, $ns)); + } } diff --git a/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php b/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php index f8fce66..c3c93fc 100644 --- a/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php +++ b/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php @@ -18,7 +18,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase /** * @group online */ - public function testDownload_withHTTP() + public function testDownloadHTTP() { $reader = new Reader; $feed = $reader->download('http://wordpress.org/news/feed/')->getContent(); @@ -28,7 +28,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase /** * @group online */ - public function testDownload_withHTTPS() + public function testDownloadHTTPS() { $reader = new Reader; $feed = $reader->download('https://wordpress.org/news/feed/')->getContent(); @@ -38,7 +38,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase /** * @group online */ - public function testDownload_withCache() + public function testDownloadCache() { $reader = new Reader; $resource = $reader->download('http://linuxfr.org/robots.txt'); @@ -84,9 +84,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase $reader = new Reader; $this->assertEquals('Rss20', $reader->detectFormat(file_get_contents('tests/fixtures/ezrss.it'))); - $reader = new Reader; - $this->assertEquals('Rss20', $reader->detectFormat(file_get_contents('tests/fixtures/grotte_barbu.xml'))); - $content = '<?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2titles.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemtitles.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">'; @@ -94,7 +91,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals('Rss20', $reader->detectFormat($content)); } - public function testFind_rssFeed() + public function testFindRssFeed() { $reader = new Reader; @@ -106,7 +103,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array('http://miniflux.net/feed'), $feeds); } - public function testFind_atomFeed() + public function testFindAtomFeed() { $reader = new Reader; @@ -118,7 +115,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array('http://miniflux.net/feed'), $feeds); } - public function testFind_feedNotInHead() + public function testFindFeedNotInHead() { $reader = new Reader; @@ -131,7 +128,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array('http://miniflux.net/feed'), $feeds); } - public function testFind_noFeedPresent() + public function testFindNoFeedPresent() { $reader = new Reader; @@ -142,7 +139,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array(), $feeds); } - public function testFind_ignoreUnknownType() + public function testFindIgnoreUnknownType() { $reader = new Reader; @@ -154,7 +151,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array(), $feeds); } - public function testFind_ignoreTypeInOtherAttribute() + public function testFindIgnoreTypeInOtherAttribute() { $reader = new Reader; @@ -166,7 +163,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array(), $feeds); } - public function testFind_withOtherAttributesPresent() + public function testFindWithOtherAttributesPresent() { $reader = new Reader; @@ -178,7 +175,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array('http://miniflux.net/feed'), $feeds); } - public function testFind_multipleFeeds() + public function testFindMultipleFeeds() { $reader = new Reader; @@ -199,7 +196,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase ); } - public function testFind_withInvalidHTML() + public function testFindWithInvalidHTML() { $reader = new Reader; @@ -211,7 +208,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertEquals(array(), $feeds); } - public function testFind_withHtmlParamEmptyString() + public function testFindWithHtmlParamEmptyString() { $reader = new Reader; @@ -244,15 +241,29 @@ class ReaderTest extends PHPUnit_Framework_TestCase $this->assertInstanceOf('PicoFeed\Parser\Atom', $reader->getParser($client->getUrl(), $client->getContent(), $client->getEncoding())); } + public function testGetParserUsesHTTPEncoding() + { + $reader = new Reader; + $parser = $reader->getParser('http://blah', file_get_contents('tests/fixtures/cercle.psy.xml'), 'iso-8859-1'); + $feed = $parser->execute(); + $this->assertInstanceOf('PicoFeed\Parser\Rss20', $parser); + $this->assertNotEmpty($feed->items); + + } + + public function testGetParserUsesSiteURL() + { + $reader = new Reader; + $parser = $reader->getParser('http://groovehq.com/', file_get_contents('tests/fixtures/groovehq.xml'), ''); + $feed = $parser->execute(); + $this->assertEquals('http://groovehq.com/articles.xml', $feed->getFeedUrl()); + } + public function testFeedsReportedAsNotWorking() { $reader = new Reader; - $this->assertInstanceOf('PicoFeed\Parser\Rss20', $reader->getParser('http://blah', file_get_contents('tests/fixtures/cercle.psy.xml'), 'utf-8')); - - $reader = new Reader; - $this->assertInstanceOf('PicoFeed\Parser\Rss20', $reader->getParser('http://blah', file_get_contents('tests/fixtures/ezrss.it'), 'utf-8')); - - $reader = new Reader; - $this->assertInstanceOf('PicoFeed\Parser\Rss20', $reader->getParser('http://blah', file_get_contents('tests/fixtures/grotte_barbu.xml'), 'utf-8')); + $parser = $reader->getParser('http://blah', file_get_contents('tests/fixtures/ezrss.it'), ''); + $feed = $parser->execute(); + $this->assertNotEmpty($feed->items); } } diff --git a/vendor/fguillot/picofeed/tests/fixtures/allgemeine-zeitung.xml b/vendor/fguillot/picofeed/tests/fixtures/allgemeine-zeitung.xml deleted file mode 100644 index 9154883..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/allgemeine-zeitung.xml +++ /dev/null @@ -1,122 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> - - -<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"> -<channel> - <title>Allgemeine Zeitung - Aktuelle Polizei-Meldungen aus der Region - Allgemeine Zeitung RSS-Feed fr die Rubrik Aktuelle Polizei-Meldungen aus der Region - http://www.allgemeine-zeitung.de - de - Sun, 01 Mar 2015 19:18:57 +0100 - - Allgemeine Zeitung - http://www.allgemeine-zeitung.de - http://www.allgemeine-zeitung.de/pics/edition/az/rss.png - - - - Bad Kreuznach: Ursache fr Brand in der ehemaligen Rose-Barracks-Kantine geklrt - http://www.allgemeine-zeitung.de/lokales/polizei/bad-kreuznach-ursache-fuer-brand-in-der-ehemaligen-rose-barracks-kantine-geklaert_15063090.htm - BAD KREUZNACH - Die Ursache fr den Brand im Gebude der ehemaligen Rose Barracks ist geklrt. Die Vermutungen zu den Ttern von Freitag haben sich besttigt. - Kirn - Sun, 01 Mar 2015 16:15:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/bad-kreuznach-ursache-fuer-brand-in-der-ehemaligen-rose-barracks-kantine-geklaert_15063090.htm - - ]]> - - - - Vier Verletzte bei Verkehrsunfall auf der A61 am Autobahndreieck Nahetal - http://www.allgemeine-zeitung.de/lokales/polizei/vier-verletzte-bei-verkehrsunfall-auf-der-a61-am-autobahndreieck-nahetal_15061411.htm - GENSINGEN - Bei einem Verkehrsunfall auf der A61 am Autobahndreieck Nahetal in Fahrtrichtung Koblenz sind vier Personen verletzt worden. - Kirn - Sat, 28 Feb 2015 18:28:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/vier-verletzte-bei-verkehrsunfall-auf-der-a61-am-autobahndreieck-nahetal_15061411.htm - - ]]> - - - - Unfallauto auf Ober-Flrsheimer Hauptstrae stehen gelassen - http://www.allgemeine-zeitung.de/lokales/polizei/unfallauto-auf-ober-floersheimer-hauptstrasse-stehen-gelassen_15058634.htm - OBER-FLRSHEIM - (red). Sein erheblich beschdigtes Fahrzeug hat ein Fahrer in der Nacht von Donnerstag auf Freitag mitten auf der Ober-Flrsheimer Hauptstrae stehen lassen. Beim Verlassen des Autos in Richtung ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/unfallauto-auf-ober-floersheimer-hauptstrasse-stehen-gelassen_15058634.htm - - - - Bischofsheim: Nach Einbruch verdchtiges Prchen beobachtet - http://www.allgemeine-zeitung.de/lokales/polizei/bischofsheim-nach-einbruch-verdaechtiges-paerchen-beobachtet_15058635.htm - BISCHOFSHEIM - (red). Im Zusammenhang mit einem Einbruch in der Knigsberger Strae sind Zeugen aus der Nachbarschaft auf ein unbekanntes Prchen aufmerksam geworden. Die Kriminalpolizei in Rsselsheim ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/bischofsheim-nach-einbruch-verdaechtiges-paerchen-beobachtet_15058635.htm - - - - Einbrecher erbeuten Schmuck in Niedernhausen - http://www.allgemeine-zeitung.de/lokales/polizei/einbrecher-erbeuten-schmuck-in-niedernhausen_15058636.htm - NIEDERNHAUSEN - (red). Beim Einbruch in ein Einfamilienhaus in der Breslauer Strae in Niedernhausen erbeuteten unbekannte Tter am Donnerstagvormittag einige Schmuckstcke. Die Einbrecher waren durch ein ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/einbrecher-erbeuten-schmuck-in-niedernhausen_15058636.htm - - - - Zu weit links auf der B 41 - http://www.allgemeine-zeitung.de/lokales/polizei/zu-weit-links-auf-der-b-41_15058637.htm - RDESHEIM - (red). Bereits am Mittwochmorgen stie eine 21-jhrige Pkw-Fahrerin auf der Landessstrae 236 in Richtung Bundesstrae 41 mit einem zu weit links fahrenden, entgegenkommenden weien Audi, ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/zu-weit-links-auf-der-b-41_15058637.htm - - - - Mann droht in Wiesbaden mit Pistole - http://www.allgemeine-zeitung.de/lokales/polizei/mann-droht-in-wiesbaden-mit-pistole_15058638.htm - WIESBADEN - (red). Die Polizei sucht nach einem Unbekannten, der am Donnerstagmittag in der Holzstrae eine Frau mit einer Pistole bedroht haben soll und dadurch einen greren Einsatz von Polizei und ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/mann-droht-in-wiesbaden-mit-pistole_15058638.htm - - - - Geparktes Auto beschdigt - http://www.allgemeine-zeitung.de/lokales/polizei/geparktes-auto-beschaedigt_15058641.htm - RSSELSHEIM - (red). Im Hasengrund in Hhe des Hauses Nummer 72 ist am Donnerstag zwischen 14 und 15.30 Uhr ein Auto beschdigt worden. Der schwarze Mercedes Benz, C-Klasse, war vor dem Haus abgestellt und ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/geparktes-auto-beschaedigt_15058641.htm - - - - Diebe stehlen 85 Liter Diesel - http://www.allgemeine-zeitung.de/lokales/polizei/diebe-stehlen-85-liter-diesel_15058642.htm - RSSELSHEIM - (red). Dieselkraftstoff im Wert von rund 110 Euro haben unbekannte Diebe am Donnerstagabend mitgehen lassen. DieTter hatten es in der Zeit von 20.40 Uhr bis 21.25 Uhr auf einen Lastwagen in ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/diebe-stehlen-85-liter-diesel_15058642.htm - - - - Bad Kreuznach: Betrunkene Frauen am Steuer - http://www.allgemeine-zeitung.de/lokales/polizei/bad-kreuznach-betrunkene-frauen-am-steuer_15058643.htm - BAD KREUZNACH - (red). Gleich zwei Flle von Trunkenheit am Steuer registrierte die Polizei am spten Donnerstagabend. Im Rahmen einer Verkehrskontrolle wurde am Europaplatz bei einer 41-jhrigen Autofahrerin ... - Kirn - Sat, 28 Feb 2015 01:00:00 +0100 - http://www.allgemeine-zeitung.de/lokales/polizei/bad-kreuznach-betrunkene-frauen-am-steuer_15058643.htm - - - - \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom.xml b/vendor/fguillot/picofeed/tests/fixtures/atom.xml index 63656f7..2cd7077 100644 --- a/vendor/fguillot/picofeed/tests/fixtures/atom.xml +++ b/vendor/fguillot/picofeed/tests/fixtures/atom.xml @@ -1,477 +1,93 @@ - -tag:blogger.com,1999:blog-108617802013-02-06T10:58:53.518-08:00The Official Google BlogInsights from Googlers into our products, technology, and the Google culture.Emily Woodnoreply@blogger.comBlogger2817125blogspot/MKufhttp://feedburner.google.comSubscribe with My Yahoo!Subscribe with NewsGatorSubscribe with My AOLSubscribe with BloglinesSubscribe with NetvibesSubscribe with GoogleSubscribe with Pageflakestag:blogger.com,1999:blog-10861780.post-42040739399152239972013-02-05T09:02:00.000-08:002013-02-05T09:02:21.880-08:002013-02-05T09:02:21.880-08:00A Chrome Experiment made with some friends from OzYou won’t need magical powers to take a journey down the yellow brick road; just point your favorite browser to the latest Chrome Experiment,&nbsp;“<a href="http://www.findyourwaytooz.com/">Find Your Way to Oz</a>.”&nbsp;Developed in collaboration with Disney and <a href="http://www.unit9.com/">UNIT9</a> in anticipation of the upcoming film, <a href="http://disney.go.com/thewizard/">Oz The Great and Powerful</a>, this experiment takes you through a dusty Kansas circus and leads to a vibrant land, following in the footsteps of the Wizard himself. <br /> -<br /> -<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/_2iDDI6Stx0" width="560"></iframe><br /> -<br /> -Like any good circus, there’s plenty to keep you entertained: compose your own music, play with a fun photo booth and create your own movie with a zoetrope. The path to Oz also involves confronting an ominous tornado; surviving it completes the journey, enabling fans of the movie to watch an exclusive unreleased clip from the film. <br /> -<br /> -<a href="http://www.chromeexperiments.com/">Chrome Experiments</a> like “Find Your Way to Oz” would have been impossible a few years ago. Since that time, the web has evolved and allowed developers and designers to create immersive beautiful experiences. For “Find Your Way to Oz” the 3D environment was built entirely with new technologies such as <a href="http://www.html5rocks.com/en/tutorials/webgl/webgl_fundamentals/">WebGL</a> and <a href="http://www.w3schools.com/css3/default.asp">CSS3</a>. It’s enhanced by rich audio effects thanks to the <a href="http://www.html5rocks.com/en/tutorials/webaudio/intro/">Web Audio API</a>.&nbsp;The photo booth and zoetrope were built using the <a href="http://www.html5rocks.com/en/tutorials/getusermedia/intro/">getUserMedia</a> feature of <a href="http://www.webrtc.org/">WebRTC</a>, which grants webpages access to your computer’s camera and microphone (with your permission). <br /> -<br /> -For the best experience, you’ll need to use an up-to-date computer built to handle intense graphics. It also works best with a webcam and a modern browser that supports WebGL and WebRTC, like <a href="http://www.google.com/intl/en/chrome/browser/promo/oz/?gl=US&amp;hl=en-US&amp;utm_source=en_US-ogb-na-US&amp;utm_medium=ogb&amp;utm_campaign=en_US">Chrome</a>. For tablet or smartphone users, we have a smaller scale yet equally enjoyable experience that you can try with the latest Chrome browser on your Android device, iPhone or iPad.<br /> -<br /> -If you want to learn more, or run away and join the developer circus, you can get an explanation of the technologies used on the <a href="http://blog.chromium.org/2013/02/introducing-find-your-way-to-oz-new.html">Chromium blog</a> or in our <a href="http://www.html5rocks.com/tutorials/casestudies/oz/">technical case study</a>.<br /> -<br /> -Start your journey towards the yellow brick road at <b><a href="http://www.findyourwaytooz.com/">www.findyourwaytooz.com</a></b>. <br /> -<br /> -<span class="byline-author">Posted by Christos Apartoglou, Marketing Manager</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/S_hccisqTW8" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/a-chrome-experiment-made-with-some.htmltag:blogger.com,1999:blog-10861780.post-63726673392833701242013-02-04T21:01:00.000-08:002013-02-04T21:01:01.357-08:002013-02-04T21:01:01.357-08:00Safer Internet Day: How we help you stay secure onlineTechnology can sometimes be complicated, but you shouldn’t have to be a computer scientist or security expert to stay safe online. Protecting our users is one of our top priorities at Google. Whether it’s creating easy-to-use tools to help you manage your information online or fighting the bad guys behind the scenes, we’re constantly investing to make Google the best service you can rely on, with security and privacy features that are on 24-7 and working for you. <br /> -<br /> -Last year, we <a href="http://googleblog.blogspot.com/2012/01/tech-tips-that-are-good-to-know.html">launched</a> <a href="http://google.com/goodtoknow">Good to Know</a>, our biggest-ever consumer education campaign focused on making the web a safer, more comfortable place. Today, on Safer Internet Day, we’re updating Good to Know to include more tips and advice to help you protect yourself and your family from identity theft, scams and online fraud. You can also learn how to make your computer or mobile device more secure, and get more out of the web—from searching more effectively to making calls from your computer. And you can find out more about how Google works to make you, your device and the whole web safer. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://4.bp.blogspot.com/-VCUm3IO6rGg/URBhkyY6QHI/AAAAAAAAKw8/l6Ak6uHI2X4/s1600/1m6X7ot5wEflZj9iJ8nFjEOy_kZcZLQ8FPg-O.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/-VCUm3IO6rGg/URBhkyY6QHI/AAAAAAAAKw8/l6Ak6uHI2X4/s500/1m6X7ot5wEflZj9iJ8nFjEOy_kZcZLQ8FPg-O.jpeg" width="500" /></a></div> -<br /> -For example, we encrypt the Gmail and Google Search traffic between your computer and Google—this protects your Google activity from being snooped on by others. We also make this protection, known as session-wide SSL encryption, the default when you’re signed into Google Drive. Because outdated software makes your computer more vulnerable to security problems, we built the Chrome browser to auto-update to the latest version every time you start it. It gives you up-to-date security protection without making you do any extra work. <br /> -<br /> -Even if you don’t use Google, we work hard to make the web safer for you. Every day we identify more than 10,000 unsafe websites—and we inform users and other web companies what we’ve found. We show warnings on up to 14 million Google Search results and 300,000 downloads, telling our users that there might be something suspicious going on behind a particular website or link. We share that data with other online companies so they can warn their users. <br /> -<br /> -We know staying safe online is important to you—and it is important to us too. Please take some time today to make your passwords stronger and <a href="http://support.google.com/accounts/bin/answer.py?hl=en&amp;answer=180744">turn on 2-step verification</a> to protect your Google Account. Talk with friends and family about Internet safety. And visit our new Good to Know site to find more tips and resources to help you stay safe online. <br /> -<br /> -<span class="byline-author">Posted by Alma Whitten, Director of Privacy, Product and Engineering</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/hptKhCOvnHc" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/safer-internet-day-how-we-help-you-stay.htmltag:blogger.com,1999:blog-10861780.post-30887704619368913632013-02-04T08:02:00.001-08:002013-02-04T08:02:30.912-08:002013-02-04T08:02:30.912-08:00Google and Brazil celebrate Carnival 2013Ask any person who’s never traveled to Brazil what he knows about the country and it’s likely that one of their first responses is: Carnival (or <i>Carnaval</i> in Portuguese). It's no wonder: Carnival is one of the largest celebrations on the planet. As a Brazilian, I can also say that it represents much of what’s wonderful about our country—joy, cultural richness and musical diversity.<br /> -<br /> -From Feb 7-12, YouTube will bring Carnival to the world for the third year in a row—giving you a front-row seat to the entire celebration on the <a href="http://www.youtube.com/carnaval">YouTube Carnival channel</a>.<br /> -<br /> -<b>The best Carnival is the one you choose, anytime, anywhere</b><br /> -What better way to experience a party the size of Brazil than by connecting to the rhythms and local traditions of six different cities—from Rio de Janeiro’s <i>samba</i> and Salvador’s <a href="http://en.wikipedia.org/wiki/Ax%C3%A9_music"><i>axé</i></a> to southern Brazil’s <a href="http://en.wikipedia.org/wiki/Frevo"><i>frevo</i></a>. This year, you’ll be able to enjoy the festivities of <a href="http://goo.gl/zKSYI">Salvador</a>, <a href="http://goo.gl/maps/nADs7">Rio de Janeiro</a>, <a href="http://goo.gl/maps/axMXO">Olinda</a>, <a href="http://goo.gl/maps/XiUPl">São Luís do Maranhão</a>, <a href="http://goo.gl/maps/stSgU">Ouro Preto</a> and <a href="http://goo.gl/maps/GFjxy">Pirenópolis</a>. <br /> -<br /> -Pick from a series of live feeds, camera angles and performances from the city of your choice, right in the middle of the party. Channel feeds are made possible by a combination of YouTube Live and Google+ Hangouts. In total, you can access a total of 150 hours of live Carnival feeds—from your laptop, tablet or smartphone.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://1.bp.blogspot.com/-tAs5pDuPZXM/UQ_ZpcyYzoI/AAAAAAAAKv0/IPN-5zrKNoQ/s1600/10qJOo9j0Cooca-p-bSghkxr1oSlx1JnDczVUtw.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-tAs5pDuPZXM/UQ_ZpcyYzoI/AAAAAAAAKv0/IPN-5zrKNoQ/s500/10qJOo9j0Cooca-p-bSghkxr1oSlx1JnDczVUtw.png" width="500" /></a></div> -<br /> -Here’s a little more detail on some of the celebrations:<br /> -<br /> -<ul> -<li><i>YouTube from Rio de Janeiro</i>—From <b>Feb 8-12</b>, you can dance as much samba as you want, as you watch the attractions of the <a href="http://www.circovoador.com.br/#/ocirco">Circo Voador</a> concert hall or check out the calmer celebrations of <a href="http://rioshow.oglobo.globo.com/musica/shows/terreirao-do-samba-1747.aspx">Terreirão do Samba</a>, a venue that receives various samba musicians and afternoon concert sessions throughout the year.</li> -<li><i>YouTube from Salvador de Bahia</i>—For the third year in a row, you’ll be able to check out the best of Salvador’s famed Carnival route, <b>Barra-Ondina</b>. However this time, you’ll be able to choose from four different camera feeds located throughout the Carnival route, so you don’t miss your favorite carnival band. Follow Salvador’s most famous carnival artists such as <a href="http://www.youtube.com/claudialeitteoficial">Claudia Leitte</a>, <a href="http://www.youtube.com/artist/chiclete-com-banana">Chiclete com Banana</a>, <a href="http://www.youtube.com/user/bandaasadeaguia">Asa de Águia</a>, <a href="http://www.youtube.com/artist/ivete-sangalo">Ivete Sangalo</a> and others as their mobile stages advance through the circuit.</li> -</ul> -<br /> -<b>Google+ joins the party</b><br /> -Everyone knows that a good party generates great photos. That’s why we’ve also joined with photographers who will be uploading pictures daily of Carnaval’s best moments from 20 different Brazilian cities at <a href="http://www.google.com.br/+/carnaval">Google+ Carnaval</a>. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-X6EtrBs6Q88/UQ_av7SIxrI/AAAAAAAAKv8/_UzeZgYKbB8/s1600/1tkjQB5Vs-oJNISezN9t7zDxudam2yG8GfZg3FQ.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-X6EtrBs6Q88/UQ_av7SIxrI/AAAAAAAAKv8/_UzeZgYKbB8/s500/1tkjQB5Vs-oJNISezN9t7zDxudam2yG8GfZg3FQ.jpeg" width="500" /></a></div> -<br /> -Find the entire agenda of this year’s Carnival events at <a href="http://www.youtube.com/carnaval">www.youtube.com/carnaval</a>. To keep track of your favorite events and the artists you want to see, download the <a href="https://chrome.google.com/webstore/detail/carnaval-2013/licfmkjjnjncmkkkccidiknfhijdnlkh">Carnaval 2013 extension</a> from the Chrome Web Store, and make sure not to miss a beat. <br /> -<br /> -<span class="byline-author">Posted by Lauren Pachaly, Consumer Marketing Manager, Google Brazil</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/_SGzsAoraXg" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/google-and-brazil-celebrate-carnival.htmltag:blogger.com,1999:blog-10861780.post-80976873858426118972013-02-04T06:00:00.000-08:002013-02-04T08:27:16.118-08:002013-02-04T08:27:16.118-08:00M&M’s, Beyonce and Ravens dominate game day searches on GoogleThis year’s big game was filled with action—brothers battled on the field and a 34-minute-long power outage nearly turned the tide of the game. With all the excitement on the field, we looked online to see what fans across the U.S. were searching for during the game.<br /> -<br /> -Overall, the top trending searches on Google during the game were:<br /> -<ol> -<li>M&amp;M’s</li> -<li>Beyonce</li> -<li>Baltimore Ravens</li> -<li>San Francisco 49ers</li> -<li>Colin Kaepernick</li> -</ol> -Other noteworthy trending searches include those about the power outage, which started trending mid-game and ended up ranking eighth out of the most-searched terms during game time. Searches for Beyonce spiked dramatically during her halftime show. And showing that ads drive consumer interest, searches for Chrysler spiked significantly after their fourth quarter commercial. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-Youe8dXhSGo/UQ9qPdP6_nI/AAAAAAAAKus/clcbyCbl-ZI/s1600/super+bowl+chart+10-30.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-Youe8dXhSGo/UQ9qPdP6_nI/AAAAAAAAKus/clcbyCbl-ZI/s500/super+bowl+chart+10-30.png" width="500" /></a></div> -<br /> -<b>The most searched team: The Ravens</b><br /> -As they did in the game, the Ravens narrowly beat out the 49ers as the most searched team during the game on Google. The most searched players of the game were <b>Colin Kaepernick, Joe Flacco, Michael Oher, David Akers</b> and <b>Jacoby Jones</b>—thanks to his <a href="http://espn.go.com/nfl/playoffs/2012/story/_/id/8911913/super-bowl-2013-baltimore-ravens-jacoby-jones-sets-record-108-yard-kickoff-return">108-yard kickoff return</a>. <br /> -<br /> -The Harbaugh brothers’ on-field battle has been one of the big stories of the game, so it’s no surprise that viewers took to the web to find more information on these coaches. While John Harbaugh took home the trophy, <b>Jim was the most searched brother</b> on Google. <br /> -<br /> -<b>Game day commercials</b><br /> -Lastly, it’s not game day without the commercials. Fans were seeking out commercials online throughout the game, driving searches for big game ads on Google 55 times higher this Sunday than the same time last week. The most searched for commercials on YouTube were ads from <b>M&amp;M’s, Mercedes-Benz, Disney’s “Oz Great and Powerful,” Lincoln</b>, and <b>Audi</b>. Searches for "Gangnam Style" were also trending on YouTube, along with searches for big game performers Alicia Keys and Beyonce. <br /> -<br /> -This year many advertisers turned to YouTube to share game day ads and teaser videos in the weeks leading up to the game. In 2013, big game ads or ad teasers were watched <b>more than 66 million times</b> on YouTube before game day. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://4.bp.blogspot.com/--dIqd62UU5o/UQ9qP1W6WXI/AAAAAAAAKu0/0PNuQBIsEjg/s1600/adblitzgallery.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/--dIqd62UU5o/UQ9qP1W6WXI/AAAAAAAAKu0/0PNuQBIsEjg/s500/adblitzgallery.png" width="500" /></a></div> -<br /> -Now that you’ve seen all the ads, vote for your favorite one on either the <a href="http://www.youtube.com/adblitz">YouTube Ad Blitz channel</a> or <a href="http://www.adweek.com/the-big-game-2013">ADWEEK.com</a> now through February 11. The winners of the Ad Blitz will be announced on the YouTube homepage on February 16.<br /> -<br /> -Will you be Monday-morning quarterbacking the game or the ads?<br /> -<br /> -<span class="byline-author">Posted by Jeffrey Oldham, Software Engineer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/Hrqka_apoic" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/m-beyonce-and-ravens-dominate-game-day.htmltag:blogger.com,1999:blog-10861780.post-454602206584135292013-02-01T10:09:00.000-08:002013-02-01T10:18:06.402-08:002013-02-01T10:18:06.402-08:00Google creates €60m Digital Publishing Innovation Fund to support transformative French digital publishing initiativesGoogle has worked with news publishers around the globe for years to help them make the most of the web. Our search engine generates billions of clicks each month, and our advertising solutions (in which we have invested billions of dollars) help them make money from that traffic. And last year, we launched Google Play, which offers new opportunities for publishers to make money—including through paid subscriptions. A healthy news industry is important for Google and our partners, and it is essential to a free society. <br /> -<br /> -Today I announced with President Hollande of France two new initiatives to help stimulate innovation and increase revenues for French publishers. First, Google has agreed to create a €60 million Digital Publishing Innovation Fund to help support transformative digital publishing initiatives for French readers. Second, Google will deepen our partnership with French publishers to help increase their online revenues using our advertising technology. <br /> -<br /> -This exciting announcement builds on the commitments we made in 2011 to increase our investment in France—including our Cultural Institute in Paris to help preserve amazing cultural treasures such as the Dead Sea Scrolls. These agreements show that through business and technology partnerships we can help stimulate digital innovation for the benefit of consumers, our partners and the wider web.<br /> -<br /> -<span class="byline-author">Posted by Eric Schmidt, Executive Chairman</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/k54_AKevGWc" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/google-creates-60m-digital-publishing.htmltag:blogger.com,1999:blog-10861780.post-45206541517265142332013-01-31T03:00:00.000-08:002013-01-31T11:37:06.636-08:002013-01-31T11:37:06.636-08:00Exploring the Grand Canyon on Google MapsWhether you’re planning an upcoming hike, or want to learn more about the Earth’s geological history, Google Maps can help. Today, we’re releasing panoramic imagery of one of the world’s most spectacular national monuments: the Grand Canyon. These beautiful, interactive images cover more than 75 miles of trails and surrounding roads, making our map of this area even more comprehensive, accurate and easy to use than ever before.<br /> -<br /> -<div style="text-align: center;"> -<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/mpcar4L_EXY?rel=0" width="560"></iframe><br /></div> -<div style="text-align: center;"> -<br /></div> -Take a walk down the narrow trails and exposed paths of the Grand Canyon: hike down the famous <a href="https://www.google.com/maps?ll=36.065096,-112.137107&amp;spn=0.285295,0.528374&amp;cbp=12,41.91,,0,9.06&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;t=m&amp;z=12&amp;cbll=36.065096,-112.137107">Bright Angel Trail</a>, gaze out at the <a href="https://www.google.com/maps?ll=36.09956,-112.106834&amp;spn=0.28517,0.528374&amp;cbp=12,268.94,,0,-8.85&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;t=m&amp;z=12&amp;cbll=36.09956,-112.106834">mighty Colorado River</a>, and explore <a href="https://www.google.com/maps?ll=36.033553,-112.094879&amp;spn=0.570818,1.056747&amp;cbp=12,35.75,,0,-0.91&amp;layer=c&amp;panoid=QA8lTVP30K21DyUQ3QcMvQ&amp;cbll=36.066887,-112.136123&amp;t=m&amp;z=11">scenic overlooks</a> in full 360-degrees. You’ll be happy you’re virtually hiking once you get to the steep inclines of the <a href="https://www.google.com/maps?ll=36.048544,-112.046814&amp;spn=0.570709,1.056747&amp;cbp=12,105.04,,0,8.25&amp;layer=c&amp;panoid=RcFvKdK1t79uFxoLRNvy8A&amp;cbll=36.081972,-112.087934&amp;t=m&amp;z=11">South Kaibab Trail</a>. And rather than drive a couple hours to see the nearby <a href="https://www.google.com/maps?ll=34.997941,-110.985947&amp;spn=0.578229,1.056747&amp;cbp=12,145.48,,0,3.59&amp;layer=c&amp;panoid=S2IQmPwHGhJ-YCXugFkM-Q&amp;cbll=35.03165,-111.026837&amp;t=m&amp;z=11">Meteor Crater</a>, a click of your mouse or tap of your finger will transport you to the rim of this otherworldly site.<br /> -<br /> -<div style="text-align: center;"> -<iframe frameborder="0" height="240" marginheight="0" marginwidth="0" scrolling="no" src="https://www.google.com/maps?cbp=13,270.64,,0,-0.68&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;ie=UTF8&amp;t=m&amp;cbll=36.09956,-112.106834&amp;source=embed&amp;ll=36.080459,-112.107067&amp;spn=0.066593,0.145912&amp;z=12&amp;output=svembed" width="425"></iframe><br /> -<small><a href="https://www.google.com/maps?cbp=13,270.64,,0,-0.68&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;ie=UTF8&amp;t=m&amp;cbll=36.09956,-112.106834&amp;source=embed&amp;ll=36.080459,-112.107067&amp;spn=0.066593,0.145912&amp;z=12" style="color: blue; text-align: left;">View Larger Map</a></small></div> -<div style="text-align: center;"> -<i>The Colorado River, one of the many impressive scenes in the Grand Canyon</i></div> -<br /> -This breathtaking <a href="http://google-latlong.blogspot.com/2012/10/trekking-grand-canyon-for-google-maps.html">imagery collection</a> was made possible with the <a href="http://maps.google.com/help/maps/streetview/learn/cars-trikes-and-more.html#trekker">Trekker</a>. Our team strapped on the Android-operated 40-pound backpacks carrying the 15-lens camera system and wound along the rocky terrain on foot, enduring temperature swings and a few muscle cramps along the way. Together, more than 9,500 panoramas of this masterpiece of nature are now available on Google Maps. <br /> -<br /> -<div style="text-align: center;"> -<iframe frameborder="0" height="240" marginheight="0" marginwidth="0" scrolling="no" src="https://www.google.com/maps?cbp=13,22.38,,0,3.59&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;ie=UTF8&amp;t=m&amp;cbll=36.065096,-112.137107&amp;source=embed&amp;ll=36.046046,-112.13728&amp;spn=0.066622,0.145912&amp;z=12&amp;output=svembed" width="425"></iframe><br /></div> -<div style="text-align: center;"> -<small><a href="https://www.google.com/maps?cbp=13,22.38,,0,3.59&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;ie=UTF8&amp;t=m&amp;cbll=36.065096,-112.137107&amp;source=embed&amp;ll=36.046046,-112.13728&amp;spn=0.066622,0.145912&amp;z=12" style="color: blue; text-align: left;">View Larger Map</a></small></div> -<div style="text-align: center;"> -<i>A breathtaking 360-degree view from the famous Bright Angel Trail</i></div> -<br /> -So no matter where you are, you don’t have to travel far or wait for warmer weather to explore Grand Canyon National Park. Check out some of our favorite views on our <a href="http://www.google.com/worldwonders">World Wonders site</a> where you can find more information, facts and figures about the Grand Canyon, or in the updated <a href="http://maps.google.com/grandcanyon">Street View gallery</a>, and happy (virtual) hiking! <br /> -<br /> -<span class="byline-author">Posted by Ryan Falor, Product Manager, Google Maps</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/bVLV3alyhhk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/exploring-grand-canyon-on-google-maps.htmltag:blogger.com,1999:blog-10861780.post-22547347218195487782013-01-30T05:00:00.000-08:002013-01-31T09:10:24.743-08:002013-01-31T09:10:24.743-08:00Google Science Fair: Looking for the next generation of scientists and engineers to change the worldAt age 16, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-3">Louis Braille</a> invented an alphabet for the blind. When she was 13, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-9">Ada Lovelace</a> became fascinated with math and went on to write the first computer program. And at 18, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-1">Alexander Graham Bell</a> started experimenting with sound and went on to invent the telephone. Throughout history many great scientists developed their curiosity for science at an early age and went on to make groundbreaking discoveries that changed the way we live. <br /> -<br /> -Today, we’re launching the third annual Google Science Fair in partnership with CERN, the LEGO Group, National Geographic and Scientific American to find the next generation of scientists and engineers. We’re inviting students ages 13-18 to participate in the largest online science competition and submit their ideas to change the world.<br /> -<br /> -<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/3Rqcg7BJwJM" width="560"></iframe><br /> -<br /> -For the past two years, thousands of students from more than 90 countries have submitted research projects that address some of the most challenging problems we face today. Previous winners tackled issues such as the <a href="http://youtu.be/DcSWmoiLhzY">early diagnosis of breast cancer</a>, <a href="http://youtu.be/l80bxaFrQuM">improving the experience of listening to music for people with hearing loss</a> and <a href="http://youtu.be/88D1teLvZE8">cataloguing the ecosystem found in water</a>. This year we hope to once again inspire scientific exploration among young people and receive even more entries for our third competition. <br /> -<br /> -Here’s some key information for this year’s Science Fair:<br /> -<ul><li>Students can enter the Science Fair in <a href="https://www.googlesciencefair.com/en/2013/faqs?bookmark=faqs-accordion-46">13 languages</a>.</li> -<li>The deadline for submissions is April 30, 2013 at 11:59 pm PDT.</li> -<li>In June, we’ll recognize 90 regional finalists (30 from the Americas, 30 from Asia Pacific and 30 from Europe/Middle East/Africa).</li> -<li>Judges will then select the top 15 finalists, who will be flown to Google headquarters in Mountain View, Calif. for our live, final event on September 23, 2013.</li> -<li>At the finals, a <a href="https://www.googlesciencefair.com/en/2013/judging">panel of distinguished international judges</a> consisting of renowned scientists and tech innovators will select top winners in each age category (13-14, 15-16, 17-18). One will be selected as the Grand Prize winner.</li> -</ul><a href="https://www.googlesciencefair.com/en/2013/prizes">Prizes</a> for the 2013 Science Fair include a $50,000 scholarship from Google, a trip to the Galapagos with National Geographic Expeditions, experiences at CERN, Google or the LEGO Group and digital access to the Scientific American archives for the winner’s school for a year. Scientific American will also award a <a href="http://www.scientificamerican.com/science-in-action/">$50,000 Science in Action prize</a> to one project that makes a practical difference by addressing a social, environmental or health issue. We’re also introducing two new prizes for 2013:<br /> -<ul><li>In August, the public will have the opportunity to get to know our 15 finalists through a series of Google+ Hangouts on Air and will then vote for the Inspired Idea Award—an award selected by the public for the project with the greatest potential to change the world.</li> -<li>We also recognize that behind every great student there’s often a great teacher and a supportive school, so this year we’ll award a $10,000 cash grant from Google and an exclusive Google+ Hangout with CERN to the Grand Prize winner’s school.</li> -</ul>Lastly, we’ll also be hosting a series of <a href="https://plus.google.com/+GoogleScienceFair">Google+ Hangouts on Air</a>. Taking place on Mondays, Wednesdays and Fridays, these Hangouts will feature renowned scientists including inventor Dean Kamen and oceanographic explorer Fabien Cousteau, showcase exclusive behind-the-scenes tours of cutting-edge labs and science facilities, and provide access to judges and the Google Science Fair team. We hope these Google+ Hangouts will help inspire, mentor and support students throughout the competition and beyond.<br /> -<br /> -Visit <a href="http://www.googlesciencefair.com/">www.googlesciencefair.com</a> to get started now—your idea might just change the world.<br /> -<br /> -<span class="byline-author">Posted by Sam Peter, Google Science Fair Team</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/Qikj9J_1t3Q" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/google-science-fair-looking-for-next.htmltag:blogger.com,1999:blog-10861780.post-69940181936217905582013-01-30T03:00:00.000-08:002013-01-30T03:00:12.222-08:002013-01-30T03:00:12.222-08:00Mapping creates jobs and drives global economic growthTwenty years ago, we used paper maps and printed guides to help us navigate the world. Today, the most advanced digital mapping technologies—satellite imagery, GPS devices, location data and of course <a href="http://maps.google.com/">Google Maps</a>—are much more accessible. This sea change in mapping technology is improving our lives and helping businesses realize untold efficiencies. <br /> -<br /> -The transformation of the maps we use everyday is driven by a growing industry that creates jobs and economic growth globally. To present a clearer picture of the importance of the geo services industry, we commissioned studies from <a href="https://www.bcgperspectives.com/content/interviews/metals_mining_value_creation_strategy_potere_david_geospatial_growth_engine/">Boston Consulting Group</a> (BCG) and <a href="http://www.oxera.com/">Oxera</a>. What we found is that maps make a big economic splash around the world. <br /> -<br /> -In summary, the global geo services industry is valued at up to $270 billion per year and pays out $90 billion in wages. In the U.S., it employs more than 500,000 people and is worth $73 billion. The infographic below illustrates some examples of the many benefits of maps, whether it’s improving agriculture irrigation systems or helping emergency response teams save lives.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-RcMEz1LaqUg/UQi0f5-OjMI/AAAAAAAAKrg/o_vVq5wvt5w/s1600/Geo%2BServices%2BInfographic%2B-%2Bfinal.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="500" src="http://4.bp.blogspot.com/-RcMEz1LaqUg/UQi0f5-OjMI/AAAAAAAAKrg/o_vVq5wvt5w/s500/Geo%2BServices%2BInfographic%2B-%2Bfinal.jpg" /></a></div><div style="text-align: center;"><i>Click the image for a larger version</i></div><br /> -1.1 billion hours of travel time saved each year? That’s a lot of time. Also, consider <a href="http://www.ups.com/">UPS</a>, which uses map technology to optimize delivery routes—saving 5.3 million miles and more than 650,000 gallons of fuel in 2011. And every eight seconds, a user hails a taxi with <a href="http://hailocab.com/">Hailo</a>, which used maps and GPS to deliver more than 1 million journeys in London alone last year. Finally, <a href="http://www.zipcar.com/">Zipcar</a> uses maps to connect more than 760,000 customers to a growing fleet of cars in locations around the world. <br /> -<br /> -Because maps are such an integral part of how we live and do business, the list of examples goes on and on. That’s why it’s important we all understand the need to invest in the geo services industry so it continues to grow and drive the global economy. Investments can come from the public and private sectors in many forms—product innovation, support of open data policies, more geography education programs in schools and more. <br /> -<br /> -We’re proud of the contributions that <a href="http://maps.google.com/">Google Maps</a> and <a href="http://www.google.com/earth/index.html">Earth</a>, the <a href="https://developers.google.com/maps/">Google Maps APIs</a> and our <a href="http://www.google.com/enterprise/earthmaps/index.html">Enterprise solutions</a> have made to the geo services industry and to making maps more widely available, but there’s a long way to go. To learn more about the impact of the maps industry, see the <a href="http://valueoftheweb.com/reports/geospatial-services">full reports</a>. <br /> -<br /> -<span class="byline-author">Posted by Brian McClendon, VP Google Geo</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/1ud7DHoOaWk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/mapping-creates-jobs-and-drives-global.htmltag:blogger.com,1999:blog-10861780.post-37875114027437809822013-01-27T21:52:00.000-08:002013-01-28T11:25:04.258-08:002013-01-28T11:25:04.258-08:00Google’s approach to government requests for user dataToday, January 28, is Data Privacy Day, when the world recognizes the importance of preserving your online privacy and security.<br /> -<br /> -If it’s like most other days, Google—like many companies that provide online services to users—will receive dozens of letters, faxes and emails from government agencies and courts around the world requesting access to our users’ private account information. Typically this happens in connection with government investigations.<br /> -<br /> -It’s important for law enforcement agencies to pursue illegal activity and keep the public safe. We’re a law-abiding company, and we don’t want our services to be used in harmful ways. But it’s just as important that laws protect you against overly broad requests for your personal information. <br /> -<br /> -To strike this balance, we’re focused on three initiatives that I’d like to share, so you know what Google is doing to protect your privacy and security.<br /> -<br /> -First, for several years we have advocated for updating laws like the U.S. Electronic Communications Privacy Act, so the same protections that apply to your personal documents that you keep in your home also apply to your email and online documents. We’ll continue this effort strongly in 2013 through our membership in the <a href="http://www.digitaldueprocess.org/index.cfm?objectid=37940370-2551-11DF-8E02000C296BA163">Digital Due Process</a> coalition and other initiatives.<br /> -<br /> -Second, we’ll continue our long-standing strict process for handling these kinds of requests. When government agencies ask for our users’ personal information—like what you provide when you sign up for a Google Account, or the contents of an email—our team does several things:<br /> -<ul> -<li>We scrutinize the request carefully to make sure it satisfies the law and our policies. For us to consider complying, it generally must be made in writing, signed by an authorized official of the requesting agency and issued under an appropriate law.</li> -<li>We evaluate the scope of the request. If it’s overly broad, we may refuse to provide the information or <a href="http://googleblog.blogspot.com/2006/03/judge-tells-doj-no-on-search-queries.html">seek to narrow the request</a>. We do this frequently.</li> -<li>We notify users about legal demands when appropriate so that they can contact the entity requesting it or consult a lawyer. Sometimes we can’t, either because we’re legally prohibited (in which case we sometimes seek to lift gag orders or unseal search warrants) or we don’t have their verified contact information.</li> -<li>We require that government agencies conducting criminal investigations use a search warrant to compel us to provide a user’s search query information and private content stored in a Google Account—such as Gmail messages, documents, photos and YouTube videos. We believe a warrant is required by the Fourth Amendment to the U.S. Constitution, which prohibits unreasonable search and seizure and overrides conflicting provisions in ECPA.</li> -</ul> -And third, we work hard to provide you with information about government requests. Today, for example, we’ve added a new <a href="https://www.google.com/transparencyreport/userdatarequests/legalprocess/">section</a> to our Transparency Report that answers many questions you might have. And last week we released <a href="http://googleblog.blogspot.com/2013/01/transparency-report-what-it-takes-for.html">data</a> showing that government requests continue to rise, along with additional details on the U.S. legal processes—such as subpoenas, court orders and warrants—that governments use to compel us to provide this information.<br /> -<br /> -We’re proud of our approach, and we believe it’s the right way to make sure governments can pursue legitimate investigations while we do our best to protect your privacy and security.<br /> -<br /> -<span class="byline-author">Posted by David Drummond, Senior Vice President and Chief Legal Officer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/bROe78CRVZY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/googles-approach-to-government-requests.htmltag:blogger.com,1999:blog-10861780.post-82299516293540373812013-01-23T09:09:00.000-08:002013-01-23T09:09:58.588-08:002013-01-23T09:09:58.588-08:00Fireside Hangouts: Join Vice President Biden in a discussion about gun violenceAs President Obama and his cabinet begin their second term in the White House, they’re renewing a <a href="http://www.youtube.com/user/whitehouse/videos?query=hangout">series</a> of conversations on Google+ with top administration officials. These “Fireside Hangouts," a 21st-century spin on FDR’s <a href="http://en.wikipedia.org/wiki/Fireside_chats">famous radio addresses</a>, bring top Administration officials to Google+ to discuss the most important issues in the country, face-to-face-to-face with fellow citizens in a hangout. The next hangout will take place Thursday, January 24 at 1:45 pm ET with Vice President Joe Biden on a topic that’s on everyone’s mind: reducing gun violence.<br /> -<br /> -During his 30-minute hangout, Vice President Biden will discuss the White House policy recommendations on reducing gun violence with participants including <a href="https://plus.google.com/+GuyKawasaki/posts">Guy Kawasaki</a>, <a href="https://plus.google.com/+PhilipDeFranco/posts">Phil DeFranco</a> and moderator <a href="https://plus.google.com/115316486335338050080/posts">Hari Sreenivasan</a> from PBS NewsHour. If you'd like to suggest a question, just follow the participants on Google+, and look for posts about tomorrow's Hangout. To view the broadcast live, just tune in to the White House's <a href="https://plus.google.com/+whitehouse/posts">Google+ page</a> or <a href="http://www.youtube.com/whitehouse">YouTube channel</a> on Thursday afternoon. <br /> -<br /> -The White House will continue to host Hangouts with key members of the President’s cabinet on a range of second term priorities. Follow the White House on Google+ for more information about how you can join the conversation... or an upcoming Hangout.<br /> -<br /> -<span class="byline-author">Posted by <a href="https://plus.google.com/102472537558752713135/posts">Ramya Raghavan</a>, Google+ Politics</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/-YDB56sfRsk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/fireside-hangouts-join-vice-president.htmltag:blogger.com,1999:blog-10861780.post-23460967462837544182013-01-23T07:00:00.000-08:002013-01-23T08:43:13.179-08:002013-01-23T08:43:13.179-08:00Transparency Report: What it takes for governments to access personal informationToday we’re releasing new data for the <a href="http://www.google.com/transparencyreport/userdatarequests/">Transparency Report</a>, showing that the steady increase in government requests for our users’ data continued in the second half of 2012, as usage of our services continued to grow. We’ve shared figures like this <a href="http://googleblog.blogspot.com/2010/04/greater-transparency-around-government.html">since 2010</a> because it’s important for people to understand how government actions affect them.<br /> -<br /> -We’re always looking for ways to make the report even more informative. So for the first time we’re now <a href="https://www.google.com/transparencyreport/userdatarequests/US/">including</a> a breakdown of the kinds of legal process that government entities in the U.S. use when compelling communications and technology companies to hand over user data. From July through December 2012:<br /> -<ul><li>68 percent of the requests Google received from government entities in the U.S. were through subpoenas. These are requests for user-identifying information, issued under the Electronic Communications Privacy Act (“ECPA”), and are the easiest to get because they typically don’t involve judges.</li> -<li>22 percent were through ECPA search warrants. These are, generally speaking, orders issued by judges under ECPA, based on a demonstration of “probable cause” to believe that certain information related to a crime is presently in the place to be searched.</li> -<li>The remaining 10 percent were mostly court orders issued under ECPA by judges or other processes that are difficult to categorize.</li> -</ul><br /> -<div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-i_6gaDH1iuc/UP92oDlYQvI/AAAAAAAAKpM/VT7i5zKdNk0/s1600/US_transparency_report.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-i_6gaDH1iuc/UP92oDlYQvI/AAAAAAAAKpM/VT7i5zKdNk0/s500/US_transparency_report.png" width="500" /></a></div><br /> -User data requests of all kinds have increased by more than 70 percent since 2009, as you can see in our new visualizations of overall trends. In total, we received 21,389 requests for information about 33,634 users from July through December 2012.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-FimkRyCemck/UP92oRlixzI/AAAAAAAAKpY/YpqfOEv2jgA/s1600/charts_transparency_report.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-FimkRyCemck/UP92oRlixzI/AAAAAAAAKpY/YpqfOEv2jgA/s500/charts_transparency_report.png" width="500" /></a></div><br /> -We’ll keep looking for more ways to inform you about government requests and how we handle them. We hope more companies and governments themselves join us in this effort by releasing similar kinds of data.<br /> -<br /> -One last thing: You may have noticed that the latest Transparency Report doesn’t include new data on <a href="http://www.google.com/transparencyreport/removals/government/">content removals</a>. That’s because we’ve decided to release those numbers separately going forward. Stay tuned for that data.<br /> -<br /> -<span class="byline-author">Posted by Richard Salgado, Legal Director, Law Enforcement and Information Security</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/9CGTTWZozSw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/transparency-report-what-it-takes-for.htmltag:blogger.com,1999:blog-10861780.post-71765137157135623852013-01-17T19:24:00.000-08:002013-01-17T19:24:00.229-08:002013-01-17T19:24:00.229-08:00Responding to the severe flooding in Jakarta, IndonesiaThe Google Crisis Response team has assembled a <a href="http://www.google.org/intl/en/crisisresponse/2013-jakarta-flood.html">resource page</a> to help track affected areas and provide updated emergency information for the millions affected by flooding in Jakarta. We also have a <a href="http://www.google.org/crisisresponse/2013-jakarta-flood-mobile.html">mobile page</a> with emergency contact numbers and lists of shelters, and <a href="http://www.google.co.id/search?q=evakuasi">enhanced search results on google.co.id</a> to provide information directly when people search. We’ve also included this information in our <a href="http://www.google.co.id/intl/en/mobile/landing/freezone/stp.html">FreeZone</a> service to reach affected users on feature phones.<br /> -<br /> -On both the page and map, which are available in <a href="http://www.google.org/intl/en/crisisresponse/2013-jakarta-flood.html">English</a> and <a href="http://www.google.org/intl/id/crisisresponse/2013-jakarta-flood.html">Bahasa Indonesia</a>, you'll see an update on flood locations and related data such as traffic conditions in areas affected by the flooding.<br /> -<br /> -<iframe height="400" src="http://google.org/crisismap/2013-jakarta-flood-en?hl=en&amp;llbox=-6.0192%2C-6.5103%2C107.2118%2C106.4606&amp;t=roadmap&amp;layers=layer0%2C1&amp;promoted&amp;embedded=true" style="border: 1px solid #ccc;" width="400"></iframe><br /> -<br /> -To share the page or embed these maps on your own site, click "Share" at the top of the page. <br /> -<br /> -We’ll update the content as more information becomes available.<br /> -<br /> -<span class="byline-author">Posted by Alice Bonhomme-Biais, Software Engineer, Google Crisis Response</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PQ_SBKQgOpY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/responding-to-severe-flooding-in.htmltag:blogger.com,1999:blog-10861780.post-71693102934783916582013-01-14T12:57:00.000-08:002013-01-14T12:57:25.653-08:002013-01-14T12:57:25.653-08:00Inviting kids to dream big: Doodle 4 Google 2013 is open for submission! We’re always thinking about ways to make everyday life a little easier and a little more fun. But what would the <i>perfect</i> day look like? We thought we’d ask the most creative folks out there: today we’re announcing our 6th annual U.S. Doodle 4 Google competition, inviting K-12 students around the country to create their own “doodle” (one of the <a href="http://www.google.com/doodles">special Google logos</a> you see on our homepage on various occasions). This year’s theme: “<i>My Best Day Ever...</i>” Breakdancing with aliens? Sure! Building a fortress of candy? Okay by us! Riding to school on a brontosaurus? You get the idea—but if you need more inspiration, take a look at our video here:<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://0.gvt0.com/vi/s1PPYo6WL-Q/0.jpg"><param name="movie" value="http://www.youtube.com/v/s1PPYo6WL-Q&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><param name="allowFullScreen" value="true" /><embed width="320" height="266" src="http://www.youtube.com/v/s1PPYo6WL-Q&fs=1&source=uds" type="application/x-shockwave-flash" allowfullscreen="true"></embed></object></div> -<br /> -<br /> -The winning artist will see their work on the Google homepage for a day, win a $30,000 college scholarship, and win a $50,000 technology grant for his or her school.<br /> -<br /> -The judging starts with Googlers and a panel of guest judges. This year our judges include journalist and TV personality Katie Couric; music maestro Ahmir “?uestlove” Thompson of The Roots; Chris Sanders, writer and director of <i>Lilo &amp; Stitch</i> and <i>How to Train Your Dragon</i>; and Pendleton Ward, creator of <i>Adventure Time</i>; among other great creative minds.<br /> -<br /> -On May 1 we’ll open up a public vote for the 50 State Winners. They’ll be flown to New York City for a national awards ceremony on May 22. There, we’ll announce the National Winner, whose doodle will appear on the Google homepage the following day. In addition, all the State Winners will have their artwork on display at the <a href="http://www.amnh.org/">American Museum of Natural History</a> from May 22 to July 14. <br /> -<br /> -Participating is easier than ever. You can download the entry forms on our <a href="http://www.google.com/doodle4google">Doodle 4 Google site</a> and send in completed doodles by mail or online. All entries must be received by March 22 with a parent or guardian’s signature. We encourage full classrooms to participate too. There’s no limit to the number of doodles that come from any one school or family... just remember, only one doodle per student.<br /> -<br /> -For more details, check out <a href="http://google.com/doodle4google">google.com/doodle4google</a>, where you’ll find full contest rules and entry forms. Happy doodling, and good luck!<br /> -<br /> -<span class="byline-author">Posted by Ryan Germick, Doodle Team Lead<br /> -</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/xHsgO9dzA78" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/inviting-kids-to-dream-big-doodle-4.htmltag:blogger.com,1999:blog-10861780.post-1334717340806052102013-01-09T12:04:00.000-08:002013-01-10T15:11:32.400-08:002013-01-10T15:11:32.400-08:00A wind investment deep in the heart of TexasIn late December, while most of us were busy wrapping presents, our Treasury team was tying a bow on our most recent <a href="http://www.google.com/green/energy/investments/">renewable energy deal</a>: an approximately $200 million equity investment in a wind farm in west Texas that generates enough energy to power more than 60,000 average U.S. homes.<br /> -<br /> -Spinning Spur Wind Project is located in Oldham County, a wide open, windy section of the Texas Panhandle located about 35 miles from Amarillo. The 161 megawatt facility was built by renewable energy developer EDF Renewable Energy, a veteran in the industry that has overseen more than 50 other clean energy projects. Spinning Spur’s 70 2.3 MW Siemens turbines started spinning full time just before the end of the year, and the energy they create has been contracted to SPS, a utility that primarily serves Texas and New Mexico.<br /> -<br /> -We look for projects like Spinning Spur because, in addition to creating more renewable energy and strengthening the local economy, they also make for smart investments: they offer attractive returns relative to the risks and allow us to invest in a broad range of assets. We’re also proud to be the first investor in an EDF Renewable Energy project that is not a financial institution, as we believe that corporations can be an important new source of capital for the renewable energy sector.<br /> -<br /> -Spinning Spur joins 10 other renewable energy investments we’ve made since 2010, several of which hit significant milestones in the past year: <br /> -<br /> -<ul> -<li>The <a href="http://googleblog.blogspot.com/2010/10/wind-cries-transmission.html">Atlantic Wind Connection</a> received permission to begin permitting, an important step in advancing the construction of the United States’ first offshore backbone electric transmission system (more in this <a href="http://www.youtube.com/watch?v=6qSVtSCufcw">new video</a>).</li> -<li><a href="http://googleblog.blogspot.com/2011/04/shepherding-wind.html">Shepherds Flat</a>, one of the world’s largest wind farms with a capacity of 845 MW, became fully operational in October.</li> -<li>The <a href="http://ivanpahsolar.com/">Ivanpah</a> project, which is more than 75 percent complete and employs 2,000+ people, recently installed its 100,000th heliostat, a kind of mirror (more in this <a href="http://www.youtube.com/watch?v=3d1guTvhCjk">new video</a>).</li> -<li><a href="http://www.recurrentenergy.com/sites/default/files/Recurrent%20Energy_McKenzie%20COD%20Press%20Release_FINAL.pdf">Just yesterday</a>&nbsp;(PDF),&nbsp;the fourth and final phase of Recurrent Energy's 88MW solar installation in Sacramento County, Calif., reached commercial operation.</li> -</ul> -<br /> -Altogether, the renewable energy projects we’ve invested in are capable of generating 2 gigawatts of power. To give a better sense of what that really means, we came up with some comparisons (click to enlarge):<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-QZMg4fXuPdY/UO2L1YuXayI/AAAAAAAAKm4/XrSk8o_5gD0/s1600/infographic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="http://3.bp.blogspot.com/-QZMg4fXuPdY/UO2L1YuXayI/AAAAAAAAKm4/XrSk8o_5gD0/s640/infographic.png" width="284" /></a></div> -<br /> -Here’s to a clean, renewable 2013!<br /> -<br /> -<span class="byline-author">Posted by Kojo Ako-Asare, Senior Manager, Corporate Finance</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/b2IEbHlnXd4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/a-wind-investment-deep-in-heart-of-texas.htmltag:blogger.com,1999:blog-10861780.post-13351224064043770832013-01-07T09:00:00.000-08:002013-01-07T09:00:02.714-08:002013-01-07T09:00:02.714-08:00Finding the inner programmer in every Googler<i>This is the second post in a <a href="http://googleblog.blogspot.com/search/label/g2g">series</a> profiling Googlers who facilitate classes as part of our g2g program, in which Googlers teach, share and learn from each other. Regardless of role, level or location, g2g's community-based approach makes it possible for all Googlers to take advantage of a variety of learning opportunities.</i> - Ed.<br /> -<br /> -If someone had told me when I graduated with a degree in economics that I’d one day be employed in a technical role at Google, I would have laughed. In 2008, I joined Google’s people operations rotation program, in which one experiences three different people ops areas—from benefits to staffing—over the course of two years. After just a few short months, I found myself with a passion for technology and a profound interest in programming that would draw me into teaching a class, Intro to Programming (I2P), to non-engineers at Google as a part of the g2g (Googlers-to-Googlers) program. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-4Wov2Exe8Qs/UOr8tzOHlHI/AAAAAAAAKls/V6xFiHm5gmg/s1600/i2p+1.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="239" src="http://3.bp.blogspot.com/-4Wov2Exe8Qs/UOr8tzOHlHI/AAAAAAAAKls/V6xFiHm5gmg/s320/i2p+1.jpeg" width="320" /></a></div> -<div style="text-align: center;"> -<i>Teaching programming to an I2P class at our Mountain View, Calif. headquarters </i></div> -<br /> -While on the benefits team, I was assigned a project that involved matching up hundreds of Googlers’ names with their corresponding office locations and job titles. I quickly realized that a few simple <a href="http://en.wikipedia.org/wiki/Scripting_language">programming scripts</a> could probably speed up my work and reduce errors. The only problem was, I had no clue how to write a program. <br /> -<br /> -I began to teach myself the programming language Python, which is known for its clarity of syntax and friendliness to beginners. Slowly, I produced a multi-functional automated spreadsheet, and then a web application to share with my team. My teammates, seeing that my newfound technical skills had saved all of us time, asked me to teach them how to code; thus, in front of a whiteboard in a small conference room, I2P was born. <br /> -<br /> -Since then, more than 200 Googlers have taken I2P. We encourage an open, supportive environment in the class, making it an approachable way for Googlers to broaden their horizons within the workplace and gain new skills. Some of my former students have even moved from roles in global business, finance and people operations to full-time engineering positions. That’s awesome to see, but I love that Googlers can use what they learn in I2P to make processes across the company more efficient—no matter what team they work on. For example, an administrative assistant who took the class streamlined a manual daily task by automating an email response survey for her team. <br /> -<br /> -In addition to solving business challenges, I’ve also seen Googlers using the programming skills they learned in I2P to help others—both inside and outside of Google. Recently, an I2P alum increased participation in Google’s free flu shot program by writing a Python-based enrollment tool that allows Googlers to find appointments online by preferred office location and time. Thousands more Googlers signed up to receive flu shots due to the convenience provided by the tool. Because Google donates an equal number of vaccinations, such as those preventing meningitis or pneumonia, to children in the developing world, this new tool also led to thousands more children receiving crucial vaccinations. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://4.bp.blogspot.com/-JzxJ5B9StZI/UOr8zHcAiNI/AAAAAAAAKl0/GbfUlMi42M0/s1600/i2p+2.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="239" src="http://4.bp.blogspot.com/-JzxJ5B9StZI/UOr8zHcAiNI/AAAAAAAAKl0/GbfUlMi42M0/s320/i2p+2.jpeg" width="320" /></a></div> -<div style="text-align: center;"> -<i>More than 200 Googlers have participated in the 11-week course (the sword definitely helps keep engagement high...don’t worry, it’s foam!)</i></div> -<br /> -What’s extraordinary to me is that under the g2g program, the “guy down the hall in HR” can teach programming—of all things—to his fellow Googlers. It’s been extremely rewarding to experience first-hand the results of my students’ learnings. Googlers have taken the principles and skills from I2P and put them to work in time management, email communication and even just having fun re-creating <a href="http://en.wikipedia.org/wiki/Frogger">Frogger</a>—leave it to Googlers to span the gamut of I2P skill application. I often think how awesome it would be if every Googler could take I2P and apply what they’ve learned to make processes across the company more efficient.<br /> -<br /> -If you’re interested in learning how to code, here are three tips from the course that you can practice on your own. While I’ve learned these principles via programming, they can be helpful in all kinds of fields! <br /> -<br /> -<ul> -<li><b>Practice <i>and</i> theory. </b>You learn best when you have something to apply your learning to. With programming, find a project you want to apply your skills to and build the knowledge necessary to accomplish your project.</li> -<li><b>Bad habits die hard.</b> If you are writing messy or convoluted code, you are building habits that will be very hard to break. Better to overcome the pain of doing it the right way initially so that you never have to go back and change.</li> -<li><b>Get feedback. </b>Just because a script "works" doesn't mean it works well. Always get advice from others with more experience so that you are learning how to do things better, not just sufficiently well.</li> -</ul> -<br /> -<span class="byline-author">Posted by Albert Hwang, Team Lead of the People Technology &amp; Operations Tools Group</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/x20oGYbcEG8" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/finding-inner-programmer-in-every.htmltag:blogger.com,1999:blog-10861780.post-29980535001666075392013-01-03T16:42:00.000-08:002013-01-03T16:42:37.621-08:002013-01-03T16:42:37.621-08:00Make some New Year’s resolutions for your businessWhen Melodie Bishop heard about our <a href="http://www.gybo.com/">Get Your Business Online</a> program (an initiative that makes it fast, easy and free for U.S. businesses to get online), she jumped at the opportunity to turn her hobby of creating Chicago-themed gift baskets into a full-time business. Since launching her website, <a href="http://www.sendthemchicago.com/">Send Them Chicago</a>, this past summer, Melodie has seen a 70 percent increase in new customers.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-YGbXa0cfw7Y/UOTCWf-aQVI/AAAAAAAAKko/IUqGIa_nNCA/s1600/melodie.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-YGbXa0cfw7Y/UOTCWf-aQVI/AAAAAAAAKko/IUqGIa_nNCA/s500/melodie.jpeg" width="500" /></a></div> -<div style="text-align: center;"> -<i>Melodie Bishop with one of her gift baskets</i></div> -<br /> -As the holidays wrap up and the New Year starts, millions of business owners just like Melodie are thinking about how they can grow in 2013. For many, this means getting found and connecting with customers on the web. <br /> -<br /> -Yet often, it can be difficult to know where to start. That’s why we’re helping business owners create a list of <a href="http://www.gybo.com/new-years">New Year’s resolutions</a> for 2013. <br /> -<br /> -Let us know what you hope to accomplish in the New Year. Do you want to get your basic business information online? Or do you already have a website and want to reach more customers? Once you select your goals, we’ll create a customized list of resolutions with resources to help you stick to it. <br /> -<br /> -In the U.S., 58 percent of small businesses don’t have a website, but 97 percent of Internet users look online for local products and services. So it’s not surprising that businesses with a web presence are expected to grow 40 percent faster than those without. <a href="http://www.gybo.com/new-years">Creating a list of resolutions</a> for your business may just be one of the easiest things you can do to help your business grow. <br /> -<br /> -We’ll see you on the web.<br /> -<br /> -P.S. If you aren’t a small business owner, it’s not too late to give that business you know the <a href="http://www.gybo.com/gift">gift of a free website</a>.<br /> -<br /> -<span class="byline-author">Posted by Aditya Mahesh, Product Marketing, Get Your Business Online</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/iTtzrUrGhTE" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/make-some-new-years-resolutions-for.htmltag:blogger.com,1999:blog-10861780.post-89364518345482413832013-01-03T10:09:00.000-08:002013-01-03T11:19:29.279-08:002013-01-03T11:19:29.279-08:00The Federal Trade Commission closes its antitrust reviewThe U.S. Federal Trade Commission today announced it has closed its investigation into Google after an exhaustive 19-month review that covered millions of pages of documents and involved many hours of testimony. The conclusion is clear: Google’s services are good for users and good for competition. <br /> -<br /> -Larry and Sergey founded Google because they believed that building a great search experience would improve people’s lives. And in the decade-plus that’s followed, Google has worked hard to make it quicker and easier for users to find what they need. In the early days you would type in a query, we’d return 10 blue links and you’d have to click on them individually to find what you wanted. Today we can save you the hassle by providing direct answers to your questions, as well as links to other sites. So if you type in [weather san francisco], or [tom hanks movies], we now give you the answer right from the results page—because truly great search is all about turning your needs into actions in the blink of an eye. <br /> -<br /> -As we made clear when the FTC started its investigation, we’ve always been open to improvements that would create a better experience. And today we’ve <a href="http://www.google.com/pdf/google_ftc_dec2012.pdf">written</a> (PDF) to the FTC making two voluntary product changes:<br /> -<br /> -<ul><li><b>More choice for websites</b>: Websites can already <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156449">opt out of</a> Google Search, and they can now remove content (for example reviews) from specialized search results pages, such as local, travel and shopping;</li> -<li><b>More ad campaign control</b>: Advertisers can already <a href="http://support.google.com/adwords/editor/bin/answer.py?hl=en&amp;answer=38657">export their ad campaigns</a> from Google AdWords. They will now be able to mix and copy ad campaign data within third-party services that use our AdWords API.</li> -</ul><br /> -In addition, we’ve <a href="http://www.ftc.gov/os/caselist/1210120/130103googlemotorolaagree.pdf">agreed with the FTC</a>&nbsp;(PDF) that we will seek to resolve standard-essential patent disputes through a neutral third party before seeking injunctions. This agreement establishes clear rules of the road for standards essential patents going forward. <br /> -<br /> -We’ve always accepted that with success comes regulatory scrutiny. But we’re pleased that the FTC and the other authorities that have looked at Google's business practices—including the U.S. Department of Justice (in its <a href="http://www.justice.gov/opa/pr/2011/April/11-at-445.html">ITA Software</a> review), the U.S. courts (in the <i><a href="http://www.internetlibrary.com/cases/lib_case337.cfm">SearchKing</a></i> and <i><a href="http://www.internetlibrary.com/cases/lib_case502.cfm">Kinderstart</a></i> cases), and the Brazilian courts (in a <a href="http://searchengineland.com/google-wins-major-antitrust-victory-in-brazil-does-it-foreshadow-broader-eu-us-wins-132729">case last year</a>)—have concluded that we should be free to combine direct answers with web results. So we head into 2013 excited about our ability to innovate for the benefit of users everywhere.<br /> -<br /> -<span class="byline-author">Posted by David Drummond, Senior Vice President and Chief Legal Officer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/nND0FTzFVHw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/the-federal-trade-commission-closes-its.htmltag:blogger.com,1999:blog-10861780.post-16086359926778921922013-01-01T08:00:00.000-08:002013-01-01T08:14:05.261-08:002013-01-01T08:14:05.261-08:00A little help from Google on your New Year’s resolutions The new year has arrived, and with it all the resolutions that we hope to tackle in 2013. <br /> -<br /> -But resolutions can be hard to keep. And since eating better, taking control of personal finances, travelling more and learning something new regularly top the list of New Year’s resolutions, we've pulled together some of our best tips and tricks across Google to make 2013 the year you succeed with your goals. <br /> -<br /> -<b>Eat better</b><br /> -<ul> -<li>Counting calories? <a href="https://chrome.google.com/webstore/category/app/104-food-and-health?utm_source=chrome-ntp-icon">Apps such as Diet Diary</a> can be easily accessed through <a href="https://chrome.google.com/webstore/detail/diet-diary/neckeibmjhibmgoigmffjlihekefmffd?utm_source=chrome-ntp-icon">Chrome</a> or your <a href="https://play.google.com/store/apps/details?id=org.medhelp.mydiet&amp;hl=en">Android</a> device—that way it’s with you when it‘s on your mind. If spreadsheets are more your style, try one of several Google Docs templates, like this <a href="https://docs.google.com/previewtemplate?id=0AvwwPO-xzD_QdHNJbE9NLUdUemdFZGtPR2pqN0xyUUE&amp;mode=public">weekly meal planner</a>.</li> -<li>Find recipes for healthy meals and how-to-cook videos with apps like <a href="https://chrome.google.com/webstore/detail/bbc-good-food/jnkffnoliaheoidfeejcmnidkkgilkja?utm_source=chrome-ntp-icon">BBC’s Good Food</a> for Chrome or food channels like <a href="http://www.youtube.com/showmethecurry">Show me the Curry</a> on YouTube.</li> -<li>Rely on the Google+ community for motivation and learn from others via hangouts on <a href="http://www.youtube.com/watch?v=uxJDPpDUaY0">how to prepare healthy meals</a>.</li> -<li>We know how easy it is to fall off track. Check out <a href="http://play.google.com/">Google Play</a> to find apps, books and music to keep you motivated.<br /> -</li> -</ul> -<iframe allowfullscreen="allowfullscreen" frameborder="0" height="315" src="http://www.youtube.com/embed/LXZRq3K1y-Q" width="560"></iframe><br /> -<br /> -<b><br /> -</b> <b>Get fiscally fit</b><br /> -<ul> -<li>To control your finances, you need to know exactly where money is coming in and out. This <a href="https://drive.google.com/a/google.com/previewtemplate?id=0Ai0sr77aWQ6mdEU1RUpVTTQ0Umlzdmk5alZQYXFCU2c&amp;mode=public">simple budget template</a> in Google Drive already has you halfway there.</li> -<li>If you prefer a more detailed budget, try using an app like Mint to track your finances on the go, available on both <a href="https://play.google.com/store/apps/details?id=com.mint&amp;hl=en">Android</a> and <a href="https://chrome.google.com/webstore/detail/mint/mhgffcfekbglhpcdjkhhjekhdnddkflg?utm_source=chrome-ntp-icon">Chrome</a>.</li> -<li>Keep track of your stock portfolio and related market news via <a href="http://www.google.com/finance">Google Finance</a> or with brokerage apps like <a href="https://play.google.com/store/apps/details?id=com.etrade.mobilepro.activity&amp;hl=en">E*TRADE</a> from Google Play.</li> -</ul> -<b><br /> -</b> <b>Travel more</b><br /> -<ul> -<li>Use <a href="http://www.google.com/flights/">Google Flight Search</a> to quickly compare flight times and costs across airlines. Try the “tourist spotlight” feature on <a href="http://www.google.com/hotelfinder/#search;si=">Google Hotel Finder</a> to find a room near the hottest spots in the city.</li> -<li>Simply type [tourist attractions &lt;city name&gt;] into Google Search to see some of the <a href="https://www.google.com/search?q=tourist+attractions+buenos+aires">top points of interest</a>. Once you have a list of the things you want to do and see, keep it in one place and share it with your travel buddies using <a href="https://docs.google.com/previewtemplate?id=0AkgIu-1H_qbEdGRaVENUQzA5SFpBWHpTcWZWYlVnWHc&amp;mode=public">Google Sheets</a>.&nbsp;</li> -<li>Never get lost with <a href="http://maps.google.com/help/maps/helloworld/tips/travel.html">Google Maps</a>. Whether your plans are local or <a href="http://maps.google.com/help/maps/helloworld/android/directions.html#feature-android-offline">international</a>, <a href="http://maps.google.com/help/maps/helloworld/android/directions.html#feature-android-indoor">indoors</a> or <a href="http://maps.google.com/help/maps/streetview/gallery/index.html">out</a>, comprehensive and accurate Google Maps can help you find your way.</li> -</ul> -<b><br /> -</b> <b> Learn something new</b><br /> -<ul> -<li>Learn how to <a href="http://www.youtube.com/watch?v=-N5CLZiLOwU">hone your yoga practice</a> or <a href="http://www.youtube.com/watch?v=0jl1P507AvE">crochet a granny square</a> by following the steps of experts on YouTube. If classroom style learning works better for you, try joining a <a href="http://www.google.com/+/learnmore/hangouts/">Google+ Hangout</a> or <a href="http://www.google.com/+/learnmore/communities/">Community</a> to learn how to <a href="https://plus.google.com/+DanielIbanez/posts/QX2EK4W15tU">paint</a>, <a href="https://plus.google.com/+LarryFournillier/posts">cook</a> or <a href="https://plus.google.com/communities/112260687631793896685">knit</a> from people who share your interests and passions.</li> -<li>Try a free language learning app like the <a href="https://chrome.google.com/webstore/detail/learn-spanish-qu%C3%A9-onda-sp/pmcdjmebmeoobmdghjbjhbifoocbcmaj">Que Onda</a> Spanish app for Chrome or the <a href="https://play.google.com/store/apps/details?id=com.busuu.android.pt&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5idXN1dS5hbmRyb2lkLnB0Il0.">Busuu Portuguese language app</a> for Android.</li> -<li>Keep up with current events or hone in on specific interests by personalizing your <a href="https://news.google.com/">Google News</a> and setting up <a href="http://www.google.com/alerts">Google Alerts</a> to receive information on specific topics directly in your email. If your inbox is already on overload, try the <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.currents&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5nb29nbGUuYW5kcm9pZC5hcHBzLmN1cnJlbnRzIl0.">Google Currents app</a> for news on the go.</li> -<li>Learning something new doesn’t have to break the bank. Check out <a href="https://www.google.com/offers/">Google Offers</a> for deals on classes for dancing, cooking, bartending and more.&nbsp;</li> -</ul> -If your resolution wasn’t listed here, try checking out <a href="https://plus.google.com/u/0/+selfmagazine/posts">SELF Magazine</a>’s Google+ page with tips from experts, live via Google+ hangouts, for 13 more resolutions starting on January 13.<br /> -<br /> -<a href="http://www.dominican.edu/dominicannews/study-backs-up-strategies-for-achieving-goals">Research shows</a> that you’re more likely to achieve your resolutions if you write them down and have support. Try sharing your goals with <a href="https://plus.google.com/communities/105008312335704126105">communities</a> around you. When you’re ready to share your new year’s ambition with the world, or if you're interested in seeing what resolutions look like around the globe, add it to the <a href="http://www.google.com/zeitgeist/2012/resolutions">interactive resolution map</a> on our 2012 Zeitgeist website.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-0CgQvdqCzGw/UOHswD7LLAI/AAAAAAAAKjk/No4tcOisjuc/s1600/11VDBoYLpHIezGTHEFxBmj7v9JFdNcwM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-0CgQvdqCzGw/UOHswD7LLAI/AAAAAAAAKjk/No4tcOisjuc/s500/11VDBoYLpHIezGTHEFxBmj7v9JFdNcwM.png" width="500" /></a></div> -<br /> -No matter who you are, the web can help you do anything. <br /> -<br /> -<span class="byline-author">Posted by Liz Wessel, Associate Product Marketing Manager</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/iTzCFyAJNVU" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/a-little-help-from-google-on-your-new.htmltag:blogger.com,1999:blog-10861780.post-12336382907549140282013-01-01T00:01:00.000-08:002013-01-01T00:01:00.987-08:002013-01-01T00:01:00.987-08:00Marking the birth of the modern-day Internet<i>Today is the 30th birthday of the modern-day Internet. Five years ago we marked the occasion with <a href="http://www.google.com/doodles/happy-new-year-25-years-of-tcpip" target="_blank">a doodle</a>. This year we invited Vint Cerf to tell the story. Vint is widely regarded as one of the fathers of the Internet for his contributions to shaping the Internet’s architecture, including co-designing the TCP/IP protocol. Today he works with Google to promote and protect the Internet. -Ed.</i><br /> -<br /> -A long time ago, my colleagues and I became part of a great adventure, teamed with a small band of scientists and technologists in the U.S. and elsewhere. For me, it began in 1969, when the potential of <a href="http://www.packet.cc/files/ev-packet-sw.html" target="_blank">packet switching</a> communication was operationally tested in the grand <a href="http://en.wikipedia.org/wiki/ARPANET" target="_blank">ARPANET</a> experiment by the U.S. Defense Advanced Research Projects Agency (DARPA). <br /> -<br /> -Other kinds of packet switched networks were also pioneered by DARPA, including mobile packet radio and packet satellite, but there was a big problem. There was no common language. Each network had its own <a href="http://en.wikipedia.org/wiki/Communications_protocol" target="_blank">communications protocol</a> using different conventions and formatting standards to send and receive packets, so there was no way to transmit anything between networks. <br /> -<br /> -In an attempt to solve this, Robert Kahn and I developed a new computer communication protocol designed specifically to support connection among different packet-switched networks. We called it TCP, short for “Transmission Control Protocol,” and in 1974 we published a paper about it in IEEE Transactions on Communications: “<a href="http://www.cs.princeton.edu/courses/archive/fall06/cos561/papers/cerf74.pdf" target="_blank">A Protocol for Packet Network Intercommunication</a>.” Later, to better handle the transmission of real-time data, including voice, we split TCP into two parts, one of which we called “Internet Protocol,” or IP for short. The two protocols combined were nicknamed TCP/IP. <br /> -<br /> -TCP/IP was tested across the three types of networks developed by DARPA, and eventually was anointed as their new standard. In 1981, Jon Postel published&nbsp;<a href="http://tools.ietf.org/rfc/rfc801.txt" target="_blank">a transition plan</a>&nbsp;to migrate the 400 hosts of the ARPANET from the older NCP protocol to TCP/IP, including a deadline of January 1, 1983, after which point all hosts not switched would be cut off.<br /> -<br /> -<a href="http://4.bp.blogspot.com/-erdVu3tz5J8/UOB0kUf44uI/AAAAAAAAAkI/hP2ohFzxY_w/s1600/vint1973.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="175" src="http://4.bp.blogspot.com/-erdVu3tz5J8/UOB0kUf44uI/AAAAAAAAAkI/hP2ohFzxY_w/s175/vint1973.jpg" width="138" /></a><a href="http://2.bp.blogspot.com/-920CgB0yOus/UOB0mkYL1_I/AAAAAAAAAkQ/DyeumsP6GLg/s1600/robertkahn.jpeg" imageanchor="1" style="clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;"><img border="0" height="175" src="http://2.bp.blogspot.com/-920CgB0yOus/UOB0mkYL1_I/AAAAAAAAAkQ/DyeumsP6GLg/s175/robertkahn.jpeg" width="150" /></a><a href="http://2.bp.blogspot.com/-basjA_0v9pw/UOB0oDvo7lI/AAAAAAAAAkY/wP3LzvStEC0/s1600/jonpostel.jpeg" imageanchor="1" style="clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;"><img border="0" height="175" src="http://2.bp.blogspot.com/-basjA_0v9pw/UOB0oDvo7lI/AAAAAAAAAkY/wP3LzvStEC0/s175/jonpostel.jpeg" width="116" /></a><br /> -<div style="text-align: center;"><i><span style="font-size: x-small;"><br /> -</span></i> <i><span style="font-size: x-small;">From left to right: Vint Cerf in 1973, Robert Kahn in the 1970’s, Jon Postel</span></i></div><br /> -When the day came, it’s fair to say the main emotion was relief, especially amongst those system administrators racing against the clock. There were no grand celebrations—I can’t even find a photograph. The only visible mementos were the “I survived the TCP/IP switchover” pins proudly worn by those who went through the ordeal!<br /> -<br /> -<div style="text-align: center;"><a href="http://3.bp.blogspot.com/-okvtFrHvORQ/UOB17-TjSCI/AAAAAAAAAkk/l0TUWBS3Zw8/s1600/tcptransitionbutton.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="194" src="http://3.bp.blogspot.com/-okvtFrHvORQ/UOB17-TjSCI/AAAAAAAAAkk/l0TUWBS3Zw8/s200/tcptransitionbutton.jpg" width="200" /></a></div><br /> -Yet, with hindsight, it’s obvious it was a momentous occasion. On that day, the operational Internet was born. TCP/IP went on to be embraced as an international standard, and now underpins the entire Internet. <br /> -<br /> -It’s been almost 40 years since Bob and I wrote our paper, and I can assure you while we had high hopes, we did not dare to assume that the Internet would turn into the worldwide platform it’s become. I feel immensely privileged to have played a part and, like any proud parent, have delighted in watching it grow. I continue to <a href="http://googleblog.blogspot.co.uk/2012/12/keep-internet-free-and-open.html" target="_blank">do what I can</a> to protect its future. I hope you’ll join me today in raising a toast to the Internet—may it continue to connect us for years to come.<br /> -<br /> -<span class="byline-author">Posted by Vint Cerf, VP and Chief Internet Evangelist</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/CnvdABr2GCY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/marking-birth-of-modern-day-internet.htmltag:blogger.com,1999:blog-10861780.post-89596038824574996532012-12-24T02:00:00.000-08:002012-12-24T02:00:04.080-08:002012-12-24T02:00:04.080-08:00Follow Santa live on Google Santa TrackerThe North Pole air traffic control elves have just notified us that Santa has taken off! For the next day, you can visit the <a href="http://www.google.com/santatracker/">Google Santa Tracker</a> to see where Santa’s headed next and keep tabs on how many presents he’s delivered. You can also keep up with him on your smartphone and tablet with the <a href="https://play.google.com/store/apps/details?id=com.google.android.santatracker">Android app</a>, in your browser with the the <a href="https://chrome.google.com/webstore/detail/santa-tracker/iodomglenhcehfbhbakhedmbobhbgjcb">Chrome extension</a>, and even in 3D with <a href="http://www.google.com/earth/download/ge/agree.html">Google Earth</a> and <a href="http://www.google.com/mobile/earth/">Google Earth mobile</a> (look for it in the Tour Guide feature with the latest version of Google Earth).<br /> -<br /> -<div style="text-align: center;"> -<embed flashvars="host=picasaweb.google.com&amp;captions=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F101276679868918752026%2Falbumid%2F5824855058378270321%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" height="307" pluginspage="http://www.macromedia.com/go/getflashplayer" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" type="application/x-shockwave-flash" width="528"></embed><br /></div> -<br /> -And follow Google Maps on <a href="https://plus.google.com/+GoogleMaps">Google+</a>, <a href="http://www.facebook.com/GoogleMaps">Facebook</a> and <a href="https://twitter.com/googlemaps">Twitter</a> to get up-to-the-minute details on Santa’s journey around the world. <br /> -<br /> -Ho ho ho! Happy holidays everyone!<br /> -<br /> -<span class="byline-author">Posted by Brian McClendon, VP of Google Maps and Google Earth</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PKZ3-r11u90" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/follow-santa-live-on-google-santa.htmltag:blogger.com,1999:blog-10861780.post-43219248044561893842012-12-20T11:43:00.000-08:002012-12-20T12:01:50.271-08:002012-12-20T12:01:50.271-08:00Tips for getting the most from Google Maps on iPhoneWe hope you’ve had a chance to try the new Google Maps app for iPhone (announced last week and available for download in the <a href="https://itunes.apple.com/app/id585027354?mt=8">Apple App Store</a>). The app is designed to be simple—just to work whenever you need it. Still, we have a few tips to make finding things with Google Maps even faster and easier. All the tips are collected on our <a href="http://maps.google.com/help/maps/helloworld/iphone/quicktips.html">site</a> but here a few of my favorites:<br /> -<ul> -<li><b>Swipe to see more. </b>In Google Maps a wealth of information is often just a swipe away. Whether you’re looking at search results or directions, you can swipe the bottom info sheet left and right to see other options. To get more details on any of the results, swipe that info sheet upward (or just tap it—that works too). Even with the info sheet expanded, you can swipe to see those other results.</li> -</ul> -<ul> -<li><b>Place a pin.</b> Get more information about any location by just pressing and holding the map. The info sheet that pops up tells you the address, lets you save or share the place, and best of all, brings up...</li> -</ul> -<ul> -<li><b>Street View. </b>By far the easiest way to get to Street View is placing a pin. Tap the imagery preview on the info sheet to enter into Street View, then explore! I recommend the look-around feature (bottom left button) which changes what you’re looking at as you tilt and move your phone.</li> -</ul> -Want to learn more? See the rest of our tips on the <a href="http://maps.google.com/help/maps/helloworld/iphone/quicktips.html">site</a>. And as you explore the app on your own, share your own tips using #googlemaps. Most of all, enjoy discovering your world.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-F_RugfiWZkk/UNNb4tNi-TI/AAAAAAAAKig/W2_x1GAoJAI/s1600/Screen%2BShot%2B2012-12-20%2Bat%2B10.31.33%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-F_RugfiWZkk/UNNb4tNi-TI/AAAAAAAAKig/W2_x1GAoJAI/s500/Screen%2BShot%2B2012-12-20%2Bat%2B10.31.33%2BAM.png" width="500" /></a></div> -<br /> -<span class="byline-author">Posted by Vicky Tait, Consumer Operations, Google Maps</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/TSAkF7sFCYw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/tips-for-getting-most-from-google-maps.htmltag:blogger.com,1999:blog-10861780.post-17008220853716341002012-12-20T09:30:00.000-08:002012-12-20T09:30:00.983-08:002012-12-20T09:30:00.983-08:00Cloud computing enabling entrepreneurship in AfricaIn 2007, 33-year-old Vuyile moved to Cape Town from rural South Africa in search of work. Unable to complete high school, he worked as a night shift security guard earning $500/month to support his family. During the rush hour commute from his home in Khayelitsha, Vuyile realized that he could earn extra income by selling prepaid mobile airtime vouchers to other commuters on the train. <br /> -<br /> -In rural areas, it’s common to use prepaid vouchers to pay for basic services such as electricity, insurance and airtime for mobile phones. But it’s often difficult to distribute physical vouchers because of the risk of theft and fraud. <br /> -<br /> -<a href="http://www.nomanini.com/">Nomanini</a>, a startup based in South Africa, built a device that enables local entrepreneurs like Vuyile to sell prepaid mobile services in their communities. The Lula (which means “easy” in colloquial Zulu), is a portable voucher sales terminal that is used on-the-go by people ranging from taxi drivers to street vendors. It generates and prints codes which people purchase to add minutes to their mobile phones. <br /> -<br /> -Today, Vuyile sells vouchers on the train for cash payment, and earns a commission weekly. Since he started using the Lula, he’s seen his monthly income increase by 20 percent.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-KlTTWSwTYtI/UNMnPQYQl-I/AAAAAAAAKhc/1mCiudoVqtk/s1600/vuyile+(1).jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="http://3.bp.blogspot.com/-KlTTWSwTYtI/UNMnPQYQl-I/AAAAAAAAKhc/1mCiudoVqtk/s400/vuyile+(1).jpg" width="300" /></a></div> -<div style="text-align: center;"> -<i>Vuyile prints a voucher from his Lula</i></div> -<br /> -Nomanini founders Vahid and Ali Monadjem wanted to make mobile services widely available in areas where they had been inaccessible, or where—in a region where the average person makes less than $200/month—people simply couldn’t afford them. By creating a low-cost and easy-to-use product, Nomanini could enable entrepreneurs in Africa to go to deep rural areas and create businesses for themselves. <br /> -<br /> -In order to build a scalable and reliable backend system to keep the Lula running, Nomanini chose to run on <a href="https://cloud.google.com/products/?utm_source=ogb&amp;utm_medium=blog&amp;utm_campaign=nomanini">Google App Engine</a>. Their development team doesn’t have to spend time setting up their own servers and can instead run on the same infrastructure that powers Google’s own applications. They can focus on building their backend systems and easily deploy code to Google’s data centers. When Vuyile makes a sale, he presses a few buttons, App Engine processes the request, and the voucher prints in seconds. <br /> -<br /> -Last month, 40,000 people bought airtime through the Lula, and Nomanini hopes to grow this number to 1 million per month next year. While platforms like App Engine are typically used to build web or smartphone apps, entrepreneurs like Vahid and Ali are finding innovative ways to leverage this technology by building their own devices and connecting them to App Engine. Vahid tells us: “We’re a uniquely born and bred African solution, and we have great potential to take this to the rest of Africa and wider emerging markets. We could not easily scale this fast without running on Google App Engine.” <br /> -<br /> -To learn more about the technical implementation used by Nomanini, read their guest post on the <a href="http://googleappengine.blogspot.com/2012/12/developer-insights-mobile-voucher-sales.html">Google App Engine blog</a>.<br /> -<br /> -<span class="byline-author">Posted by Zafir Khan, Google App Engine</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/TbkmJIsBlV4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/cloud-computing-enabling.htmltag:blogger.com,1999:blog-10861780.post-56284069676846244662012-12-19T08:25:00.003-08:002012-12-19T08:25:41.384-08:002012-12-19T08:25:41.384-08:00Explore Spain's Jewish heritage onlineYou can now discover Spain’s Jewish heritage on a new site powered by comprehensive and accurate Google Maps: <a href="http://www.redjuderias.org/google">www.redjuderias.org/google</a>.<br /> -<br /> -Using the Google Maps API, <a href="http://www.redjuderias.org/">Red de Juderías de España</a> has built a site where you can explore more than 500 landmarks that shed light on Spain’s Jewish population throughout history. By clicking on a landmark, you can get historical information, pictures or texts, and a 360º view of the location, thanks to Street View technology. You can also use the search panel on the top of the page to filter the locations by category, type, geographic zone or date.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-ntJQdwwZNr4/UNHpASwsCpI/AAAAAAAAKgg/UrKGtiKDwYw/s1600/maps.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="276" src="http://3.bp.blogspot.com/-ntJQdwwZNr4/UNHpASwsCpI/AAAAAAAAKgg/UrKGtiKDwYw/s400/maps.png" width="400" /></a></div> -<div style="text-align: center;"> -<i>Toledo, Synagogue Santamaría la Blanca</i></div> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://4.bp.blogspot.com/-kRxbAy38icc/UNHo_UHTnuI/AAAAAAAAKgY/m3L9rgbzoMQ/s1600/maps-textos.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="276" src="http://4.bp.blogspot.com/-kRxbAy38icc/UNHo_UHTnuI/AAAAAAAAKgY/m3L9rgbzoMQ/s400/maps-textos.png" width="400" /></a></div> -<div style="text-align: center;"> -<i>Information is included on each landmark</i></div> -<br /> -This project is just one of our efforts to bring important cultural content online. This week, we worked with the Israel Antiquities Authority to <a href="http://googleblog.blogspot.com/2012/12/in-beginningbringing-scrolls-of-genesis.html">launch</a> the <a href="http://www.deadseascrolls.org.il/">Leon Levy Dead Sea Scrolls Digital Library</a>, an online collection of more than 5,000 scroll fragments, and last year we announced a <a href="http://googleblog.blogspot.com/2011/01/explore-yad-vashems-holocaust-archives.html">project</a> to digitize and make available the Yad Vashem Museum’s Holocaust archives. With the <a href="http://www.googleartproject.com/">Google Art Project</a>, people around the world can also view and explore more than 35,000 works of art in 180 museums.<br /> -<br /> -Read more about this project on the <a href="http://googlepolicyeurope.blogspot.com/2012/12/celebrating-recovery-of-spains-jewish.html">Europe Blog</a>. We hope this new site will inspire you to learn more about Spain’s Jewish history, and perhaps to visit these cities in person.<br /> -<br /> -<span class="byline-author">Posted by William Echikson, External Relations, Europe, Middle East and Africa<br /> -</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/gt2dns4sGkw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/explore-spains-jewish-heritage-online.htmltag:blogger.com,1999:blog-10861780.post-85445130345907606132012-12-18T22:00:00.000-08:002012-12-18T23:59:28.014-08:002012-12-18T23:59:28.014-08:00Count down to Christmas Eve with Google Santa TrackerWhile millions of people eagerly await Christmas Day, Santa and his elves are keeping busy at the <a href="http://google.com/santatracker">North Pole</a>. They’re preparing presents, tuning up the sleigh, feeding the reindeer and, of course, checking the list (twice!) before they take flight on their trip around the world. <br /> -<br /> -While we’ve been tracking Santa since 2004 with Google Earth, this year a team of dedicated <a href="http://maps.google.com/">Google Maps</a> engineers built a new route algorithm to chart Santa’s journey around the world on Christmas Eve. On his sleigh, arguably the fastest airborne vehicle in the world, Santa whips from city to city delivering presents to millions of homes. You’ll be able to follow him on Google Maps and Google Earth, and get his stats starting at 2:00 a.m. PST Christmas Eve at <a href="http://google.com/santatracker">google.com/santatracker</a>. <br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://1.bp.blogspot.com/-68Yyfm-9StM/UNEeWahO9rI/AAAAAAAAKfU/9dQ4pDKxrxk/s1600/Screen+Shot+2012-12-18+at+3.38.49+PM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-68Yyfm-9StM/UNEeWahO9rI/AAAAAAAAKfU/9dQ4pDKxrxk/s500/Screen+Shot+2012-12-18+at+3.38.49+PM.png" width="500" /></a></div> -<div style="text-align: center;"> -<i>Simulating Santa's path across the world—see it live Dec 24</i></div> -<br /> -In addition, with some help from developer elves, we’ve built a few other tools to help you track Santa from wherever you may be. Add the new <a href="https://chrome.google.com/webstore/detail/iodomglenhcehfbhbakhedmbobhbgjcb">Chrome extension</a> or download the <a href="https://play.google.com/store/apps/details?id=com.google.android.santatracker">Android app</a> to keep up with Santa from your smartphone or tablet. And to get the latest updates on his trip, follow Google Maps on <a href="https://plus.google.com/+GoogleMaps/">Google+</a>, <a href="http://www.facebook.com/GoogleMaps">Facebook</a> and <a href="https://twitter.com/googlemaps">Twitter</a>.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-LnolqJl6iig/UNEeYj_QY7I/AAAAAAAAKfc/mFyxjksEMCo/s1600/dashboard.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-LnolqJl6iig/UNEeYj_QY7I/AAAAAAAAKfc/mFyxjksEMCo/s500/dashboard.png" width="500" /></a></div> -<div style="text-align: center;"> -<i>Get a dashboard view of Santa's journey on Google Maps</i></div> -<br /> -The Google Santa Tracker will launch on December 24, but the countdown to the journey starts now! Visit <a href="http://g.co/santatracker">Santa’s Village</a> today to watch the countdown clock and join the elves and reindeer in their preparations. You can even ask <a href="http://www.google.com/santatracker/santacall">Santa to call a friend or family member</a>. <br /> -<br /> -We hope you enjoy tracking Santa with us this year. And on behalf of everyone at Google—happy holidays! <br /> -<br /> -<span class="byline-author">Posted by Brian McClendon, VP of Google Maps and Google Earth</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PGSuXuqaca4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/count-down-to-christmas-eve-with-google.htmltag:blogger.com,1999:blog-10861780.post-68972798731283581352012-12-18T02:00:00.000-08:002012-12-18T02:00:07.805-08:002012-12-18T02:00:07.805-08:00“In the beginning”...bringing the scrolls of Genesis and the Ten Commandments onlineA little over a year ago, we <a href="http://googleblog.blogspot.com/2011/09/from-desert-to-web-bringing-dead-sea.html">helped put online</a> five manuscripts of the Dead Sea Scrolls—ancient documents that include the oldest known biblical manuscripts in existence. Written more than 2,000 years ago on pieces of parchment and papyrus, they were preserved by the hot, dry desert climate and the darkness of the caves in which they were hidden. The Scrolls are possibly the most important archaeological discovery of the 20th century.<br /> -<br /> -Today, we’re helping put more of these ancient treasures online. The Israel Antiquities Authority is launching the <a href="http://www.deadseascrolls.org.il/">Leon Levy Dead Sea Scrolls Digital Library</a>, an online collection of some 5,000 images of scroll fragments, at a quality never seen before. The texts include one of the earliest known copies of the Book of Deuteronomy, which includes the <a href="http://www.deadseascrolls.org.il/explore-the-archive/image/B-314643?locale=en_US">Ten Commandments</a>; part of Chapter 1 of the <a href="http://www.deadseascrolls.org.il/explore-the-archive/image/B-295662">Book of Genesis</a>, which describes the creation of the world; and hundreds more 2,000-year-old texts, shedding light on the time when Jesus lived and preached, and on the history of Judaism.<br /> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://2.bp.blogspot.com/-8xcrNwgKi_k/UM-J-_JBH3I/AAAAAAAAKeQ/CZ8-bSFEpZA/s1600/10+COMMANDMENTS+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-8xcrNwgKi_k/UM-J-_JBH3I/AAAAAAAAKeQ/CZ8-bSFEpZA/s500/10+COMMANDMENTS+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" width="500" /></a></div> -<div style="text-align: center;"> -<i>The Ten Commandments. Photo by Shai Halevi, courtesy of Israel Antiquities Authority</i></div> -<br /> -<div class="separator" style="clear: both; text-align: center;"> -<a href="http://3.bp.blogspot.com/-WLO0YK8_kJw/UM-J_9nLKmI/AAAAAAAAKeY/evKNiFphwhM/s1600/Genesis+Chapter+1+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-WLO0YK8_kJw/UM-J_9nLKmI/AAAAAAAAKeY/evKNiFphwhM/s500/Genesis+Chapter+1+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" width="500" /></a></div> -<div style="text-align: center;"> -<i>Part of the Book of Genesis. Photo by Shai Halevi, courtesy of Israel Antiquities Authority</i></div> -<br /> -Millions of users and scholars can discover and decipher details invisible to the naked eye, at 1215 dpi resolution. The site displays infrared and color images that are equal in quality to the Scrolls themselves. There’s a database containing information for about 900 of the manuscripts, as well as interactive content pages. We’re thrilled to have been able to help this project through hosting on Google Storage and App Engine, and use of Maps, YouTube and Google image technology.<br /> -<br /> -This partnership with the Israel Antiquities Authority is part of our ongoing work to bring important cultural and historical materials online, to make them accessible and help preserve them for future generations. Other examples include the <a href="http://googleblog.blogspot.com/2011/01/explore-yad-vashems-holocaust-archives.html">Yad Vashem Holocaust photo collection</a>, <a href="http://www.googleartproject.com/">Google Art Project</a>, <a href="http://www.google.com/intl/en/culturalinstitute/worldwonders/">World Wonders</a> and the <a href="http://www.google.com/culturalinstitute/#!home">Google Cultural Institute</a>. <br /> -<br /> -We hope you enjoy visiting the Dead Sea Scrolls Digital Library, or any of these other projects, and interacting with history.<br /> -<br /> -<span class="byline-author">Posted by Eyal Miller, New Business Development, and Yossi Matias, Head of Israel Research and Development Center</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/qT8Tg7WjphI" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/in-beginningbringing-scrolls-of-genesis.html + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + https://ru.wikipedia.org/static/favicon/wikipedia.ico + + + urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83 + 2015-06-05T00:05:00+03:00 + + Вики педии - свободной энциклопедии + + + + Война и +мир + + + Лев Николаевич Толсто́й + + + 2015-06-05T00:02:00+03:00 + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + + urn:uuid:32117a95-0962-4826-8aee-1ea7ddd94bec + + 2015-06-05T00:02:00+03:00 + +История создания + +

+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

]]>
+
+ + <h1> +Доктор Живаго +</h1> +<p> +<b>«До́ктор Жива́го»</b> +— роман Бориса Пастернака. «Доктор Живаго» создавался в течение десяти лет, с +<a href="/wiki/1945" title="1945" class="mw-redirect">1945</a> по +<a href="/wiki/1955_%D0%B3%D0%BE%D0%B4" title="1955 год">1955 год</a>, и +является вершиной его творчества как прозаика. Роман сопровождён стихами +главного героя — Юрия Андреевича Живаго. +</p> + + +

+Герой нашего времени +

+

+«Геро́й на́шего вре́мени» +(написан в 1838—1840) — знаменитый роман +Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в +Санкт-Петербурге, +в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров +[1]. +

+
+
diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_element_preference.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_element_preference.xml new file mode 100644 index 0000000..755c6a2 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_element_preference.xml @@ -0,0 +1,38 @@ + + + + + 2015-06-05T00:05:00+03:00 + 2015-06-05T01:05:00+03:00 + + + summary pre + +История создания + +

+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

]]>
+ summary post +
+
diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_empty_feed.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_empty_feed.xml new file mode 100644 index 0000000..6e34f76 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_empty_feed.xml @@ -0,0 +1,9 @@ + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_empty_item.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_empty_item.xml new file mode 100644 index 0000000..b98536d --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_empty_item.xml @@ -0,0 +1,4 @@ + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_extra.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_extra.xml new file mode 100644 index 0000000..d9ca582 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_extra.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_feed_values.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_feed_values.xml new file mode 100644 index 0000000..984c4b0 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_feed_values.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_item_values.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_item_values.xml new file mode 100644 index 0000000..d0e2465 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_fallback_on_invalid_item_values.xml @@ -0,0 +1,28 @@ + + + + + + + + Осенью 1865 года, потеряв все свои +деньги в казино, не в состоянии оплатить долги кредиторам, +и стараясь помочь семье своего брата Михаила, который умер в +июле 1864 года, Достоевский планирует создание романа с +центральным образом семьи Мармеладовых под названием «Пьяненькая». + + + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_no_default_namespace.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_no_default_namespace.xml new file mode 100644 index 0000000..eeeb072 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_no_default_namespace.xml @@ -0,0 +1,92 @@ + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + https://ru.wikipedia.org/static/favicon/wikipedia.ico + + + urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83 + 2015-06-05T00:05:00+03:00 + + Вики педии - свободной энциклопедии + + + + Война и +мир + + + Лев Николаевич Толсто́й + + + 2015-06-05T00:02:00+03:00 + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + + urn:uuid:32117a95-0962-4826-8aee-1ea7ddd94bec + + 2015-06-05T00:02:00+03:00 + +История создания + +

+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

]]>
+
+ + <h1> +Доктор Живаго +</h1> +<p> +<b>«До́ктор Жива́го»</b> +— роман Бориса Пастернака. «Доктор Живаго» создавался в течение десяти лет, с +<a href="/wiki/1945" title="1945" class="mw-redirect">1945</a> по +<a href="/wiki/1955_%D0%B3%D0%BE%D0%B4" title="1955 год">1955 год</a>, и +является вершиной его творчества как прозаика. Роман сопровождён стихами +главного героя — Юрия Андреевича Живаго. +</p> + + +

+Герой нашего времени +

+

+«Геро́й на́шего вре́мени» +(написан в 1838—1840) — знаменитый роман +Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в +Санкт-Петербурге, +в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров +[1]. +

+
+
diff --git a/vendor/fguillot/picofeed/tests/fixtures/atom_prefixed.xml b/vendor/fguillot/picofeed/tests/fixtures/atom_prefixed.xml new file mode 100644 index 0000000..089effc --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/atom_prefixed.xml @@ -0,0 +1,93 @@ + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + https://ru.wikipedia.org/static/favicon/wikipedia.ico + + + urn:uuid:bd0b2c90-35a3-44e9-a491-4e15508f6d83 + 2015-06-05T00:05:00+03:00 + + Вики педии - свободной энциклопедии + + + + Война и +мир + + + Лев Николаевич Толсто́й + + + 2015-06-05T00:02:00+03:00 + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + + urn:uuid:32117a95-0962-4826-8aee-1ea7ddd94bec + + 2015-06-05T00:02:00+03:00 + +История создания + +

+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

]]>
+
+ + <h1> +Доктор Живаго +</h1> +<p> +<b>«До́ктор Жива́го»</b> +— роман Бориса Пастернака. «Доктор Живаго» создавался в течение десяти лет, с +<a href="/wiki/1945" title="1945" class="mw-redirect">1945</a> по +<a href="/wiki/1955_%D0%B3%D0%BE%D0%B4" title="1955 год">1955 год</a>, и +является вершиной его творчества как прозаика. Роман сопровождён стихами +главного героя — Юрия Андреевича Живаго. +</p> + + +

+Герой нашего времени +

+

+«Геро́й на́шего вре́мени» +(написан в 1838—1840) — знаменитый роман +Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в +Санкт-Петербурге, +в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров +[1]. +

+
+
diff --git a/vendor/fguillot/picofeed/tests/fixtures/bbc_urdu.xml b/vendor/fguillot/picofeed/tests/fixtures/bbc_urdu.xml deleted file mode 100644 index 327332f..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/bbc_urdu.xml +++ /dev/null @@ -1,2087 +0,0 @@ - - - http://www.bbc.co.uk/urdu/index.xml - BBCUrdu.com | صفحۂ اول - 2014-03-17T02:35:46+05:00 - - - BBC Urdu - urdu@bbc.co.uk - http://www.bbcurdu.com - - http://www.bbcurdu.com - - - http://www.bbc.co.uk/urdu/images/gel/rss_logo.gif - کاپی رائٹ بی بی سی 2014 - - tag:www.bbcurdu.com,2014-03-16:30771398 - 30771398 - 2014-03-16T20:53:11+05:00 - 2014-03-16T13:22:25+05:00 - - - restricted - قزاقستان سے بحرِ ہند تک لاپتہ طیارے کی تلاش جاری - ملائیشیا میں حکام کا کہنا ہے کہ آٹھ روز قبل لاپتہ ہونے والے مسافر طیارے کی تلاش کے لیے وسیع پیمانے پر آپریشن جاری ہے جس میں 25 ممالک مدد کر رہے ہیں۔ - چین، بھارت، ملائیشیا، طیارہ، لاپتہ، تحقیق، جانچ، missing malaysia plane, Investigator, study, pilot, background, china, india, , - - - - - - - - - - - - - - طیارے کے مواصلاتی نظام کو دانستہ طور پر خراب کیا گیا: نجیب رزاق - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30777945 - 30777945 - 2014-03-16T20:40:49+05:00 - 2014-03-16T20:35:11+05:00 - - - restricted - امن مذاکرات کے لیے بنوں اور میران شاہ زیرِغور:پروفیسر ابراہیم - طالبان کی نمائندہ مذاکراتی کمیٹی کے رکن پروفیسر ابراہیم نے کہا ہے کہ مذاکرات کے لیے بنوں ایئرپورٹ، ایف آر بنوں اور وزیرستان کے علاقے زیرِ غور ہیں۔ - pakistan, طالبان، پاکستان، پروفیسر ابراہیم، مذاکرات، taliban, talks - - - - - - - - - - - - - - ’طالبان اور حکومت کے براہ راست مذاکرات جلد شروع ہو سکتے ہیں‘ - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30770132 - 30770132 - 2014-03-16T23:18:05+05:00 - 2014-03-16T10:45:05+05:00 - - - restricted - کرائمیا:ریفرینڈم میں عوام کی بھرپور شرکت - یوکرین کے نیم خودمختار علاقے کرائمیا میں اتوار کو عوام نے روس سے الحاق کے سوال پر ہونے والے ریفرینڈم میں بہت بڑی تعداد میں ووٹ ڈالے ہیں۔ - امریکہ، یوکرین، کرائمیا، یورپ، روس، ریفرینڈم، الحاق، Ukraine, crisis, Crimeam holds, secession, referendum, russia, america, ukraine, un, europe, - - - - - - - - - - - - - - یوکرین: سلامتی کونسل میں روس تنہائی کا شکار - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-17:30781789 - 30781789 - 2014-03-17T02:30:57+05:00 - 2014-03-17T02:17:45+05:00 - - - restricted - سیارہ عطارد سات کلومیٹر چھوٹا ہو گیا ہے: نئی تحقیق - سائنسدانوں کا کہنا ہے کہ چار ارب سال قبل جب سیارہ عطارد کی سطح سخت ہوئی تھی اس کے مقابلے میں آج یہ سیارہ سات کلومیٹر چھوٹا ہو گیا ہے۔ - سیارہ عطارد، mercury - - - - - - - - - - - - - - سیارہ عطارد پر پانی کی موجودگی کے ثبوت - - - - - - - - - - - - tag:www.bbcurdu.com,2011-10-13:13350673 - 13350673 - 2011-10-13T18:15:51+05:00 - 2011-10-13T18:05:49+05:00 - - - restricted - ایف ایم بلیٹن - ایف ایم بلیٹن - ایف ایم بلیٹن - - - - - - - urdu FM bulletin - - - - - - tag:www.bbcurdu.com,2011-10-13:13351936 - 13351936 - 2011-10-13T21:29:36+05:00 - 2011-10-13T18:39:32+05:00 - - - restricted - سیربین - سیربین - سیربین - - - - - - - Sairbeen - - - - - - tag:www.bbcurdu.com,2011-10-13:13352339 - 13352339 - 2011-10-13T20:06:35+05:00 - 2011-10-13T18:55:41+05:00 - - - restricted - جہاں نما - جہاں نما - جہاں نما - - - - - - - Jahan numa - - - - - - tag:www.bbcurdu.com,2011-10-17:13420919 - 13420919 - 2011-10-18T19:41:40+05:00 - 2011-10-17T21:01:20+05:00 - - - not restricted - آڈیو آرکائیو - آڈیو آرکائیو - audio archive - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30776683 - 30776683 - 2014-03-16T19:39:52+05:00 - 2014-03-16T19:07:02+05:00 - - - restricted - پاکستان کو یہ تحفہ کس نے دیا؟ - پاکستان کو ڈیڑھ ارب ڈالر کا تحفہ کون دے سکتا ہے؟ اس بارے میں جعفر رضوی نے سابق وزیرِ خزانہ شوکت ترین سے بات کی اور پوچھا کہ یہ کون سے’دوست ممالک‘ ہیں؟ - pakistan aid, dollers, پاکستان، امداد، قرضہ، وزیرِ خزانہ - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30777121 - 30777121 - 2014-03-16T20:07:47+05:00 - 2014-03-16T19:39:40+05:00 - - - restricted - پاکستان کی بیمار معیشت کو فائدہ پہنچےگا؟ - ڈیڑھ ارب ڈالر کی رقم سے پاکستان کی بیمار معیشت کو کس قدر فائدہ پہنچ سکے گا۔ سابق وزیرِ اطلاعات قمر زمان کائرہ کی بی بی سی کی ماہ پارہ صفدر سے بات چیت سنیے۔ - pakistan, us, dollars, qamar, zaman, kairaپاکستان ، قرضہ، ڈالر - - - - - - - سابق وزیر اطلاعات قمر زمان کائرہ - - - - - - tag:www.bbcurdu.com,2014-03-15:30764582 - 30764582 - 2014-03-15T21:23:53+05:00 - 2014-03-15T21:06:45+05:00 - - - restricted - ’یہاں عدالتی نظام موجود نہیں‘ - ڈاکٹر شکیل آفریدی کی سزا میں دس سال کی کمی کے احکامات پر ان کے وکیل سمیع اللہ سے بی بی سی اردو کی ماہ پارہ صفدر کی بات چیت سنیے۔ - شکیل آفریدی - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30764806 - 30764806 - 2014-03-15T21:26:04+05:00 - 2014-03-15T21:16:16+05:00 - - - restricted - شکیل آفریدی کو مقامی طالبان نے سزا دی - ڈاکٹر شکیل آفریدی کی سزا میں دس سال کی کمی کے احکامات پر تجزیہ کار محمود شاہ سے بی بی سی اردو کی ماہ پارہ صفدر کی بات چیت سنیے۔ - شکیل آفریدی، محمود شاہ - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30745306 - 30745306 - 2014-03-14T20:09:49+05:00 - 2014-03-14T18:44:27+05:00 - - - not restricted - آرٹ بلیٹن - سائے کن اداؤں کے ساتھ رقص ميں بدلتے ہيں اور فيصلہ کن لمحات کو تصويربند کرنے کي جستجو ميں جب دنيا بھر کي خاک چھاني جائے تو پھر کيسي تصاوير بنتي ہيں۔ - آرٹ بلیٹین، art - - - - - - - ہینری کارٹیئر بریسون کی کھینچی ایک تصویر - - - - - - tag:www.bbcurdu.com,2014-03-14:30745158 - 30745158 - 2014-03-14T20:06:43+05:00 - 2014-03-14T18:34:28+05:00 - - - not restricted - شام: خانہ جنگی کے تین برس، شہریوں پر بھاری گزرے - تین برس پہلے شام میں چھوٹے موٹے مظاہروں سے شروع ہونے والی تحریک دیکھتے ہی دیکھتے خانہ جنگی میں تبدیل ہوگئی اور اس دوران ہزاروں افراد ہلاک اور لاکھوں بے گھر ہوئے۔وہاں حالات بہتر ہوتے نظر نہیں آرہے ہیں۔ - شام, syria - - - - - - - شام - - - - - - tag:www.bbcurdu.com,2014-03-14:30748867 - 30748867 - 2014-03-14T21:50:26+05:00 - 2014-03-14T20:56:43+05:00 - - - restricted - ’ان مذاکرات میں ابھی وقت لگے گا‘ - طالبان سے امن مذاکرات کے مستقبل پر بی بی سی کی نصرت جہاں کی رستم شاہ مہمند سے بات چیت سنیے۔ - طالبان مزاکرات - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30748770 - 30748770 - 2014-03-14T21:45:21+05:00 - 2014-03-14T20:51:02+05:00 - - - restricted - فوج ان لوگوں سے لڑنا نہیں چاہتی - فوج ان لوگوں سے لڑنا نہیں چاہتی - طالبان مزاکرات - - - - - - - فوج ان لوگوں سے لڑنا نہیں چاہتی - - - - - - tag:www.bbcurdu.com,2014-03-13:30730153 - 30730153 - 2014-03-14T03:01:54+05:00 - 2014-03-13T22:13:21+05:00 - - - restricted - احمدیوں کی قبروں کے کتبوں کی توہین - صوبہ پنجاب کے شہر جڑانوالا کے چک نمبر 96 GB میں پولیس نے احمدیوں کی قبروں کے کتنے پر سے کلمہ اور قرآنی آیات مٹادیں۔ - احمدی، پنجاب، جڑانوالا ahmadi, punjab, jaranwala - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-13:30725744 - 30725744 - 2014-03-13T20:10:06+05:00 - 2014-03-13T19:27:48+05:00 - - - not restricted - ’ہاٹ ائیر بلون‘ کی سواری - مینمار یا برما میں حالیہ سیاسی اصلاحات کے بعد دنیا بھر سے سيّاح اس خوبصورت ملک کي طرف کھچے چلے آرہے ہيں ـ گويا اصلاحات مينمار کے ہر شعبے کيليے نعمت ثابت ہوئيں اور سب سے زيادہ فائدہ سیاحت کوہوا ہےـ دیکھیے کیسے؟ - برما، سیاحتٹ burma, tourism, hot ai - - - - - - - برما - - - - - - tag:www.bbcurdu.com,2014-03-13:30727344 - 30727344 - 2014-03-13T21:38:59+05:00 - 2014-03-13T20:21:51+05:00 - - - restricted - "پہلی کمیٹی کا کیا قصور تھا؟" - "پہلی کمیٹی کا کیا قصور تھا؟" - طالبان مزاکرنت Taliban dialogue - - - - - - - "پہلی کمیٹی کا کیا قصور تھا؟" - - - - - - tag:www.bbcurdu.com,2014-03-13:30727779 - 30727779 - 2014-03-13T21:35:57+05:00 - 2014-03-13T20:37:06+05:00 - - - restricted - " حملہ ہوا تو جوابی کاروائی ضرور ہو گی" - "اسرائیل کا حملہ ہوا تو جوابی کاروائی ضرور ہو گی" - اسرائیل غزہ حملے - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-12:30705884 - 30705884 - 2014-03-12T22:08:20+05:00 - 2014-03-12T21:06:57+05:00 - - - not restricted - سی آئی پر امریکی کانگریس کی جاسوسی کا الزام - امريکہ ميں سينيٹ کي انٹليجنس کميٹي کي سربراہ نے خفيہ ايجنسي سي آئي اے پر کانگريس کي جاسوسي کرنے کا الزام عائد کيا ہے اور کہا ہے کہ ا سی آئی اے کی اس حرکت سے ملک کا آئینی ڈھانچے کو خطرہ ہے۔ - سی آئی اے جاسوسی، CIA - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-12:30704642 - 30704642 - 2014-03-12T22:28:26+05:00 - 2014-03-12T20:28:09+05:00 - - - restricted - پاکستان کے قوانین میں انٹر نیٹ کی آزادی کا تحفظ نہیں ہے! - پاکستان کے آئین میں آزادی رائے کے کوئی شک نہیں! - internet, freedom, ban, pakistan انٹرنیٹ آزادی رائے - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-12:30705204 - 30705204 - 2014-03-12T22:22:05+05:00 - 2014-03-12T20:45:51+05:00 - - - restricted - پاکستان میں انٹرنیٹ کی پابندی تنگ نظری کا نتیجہ ہے۔ - پاکستان میں انٹرنیٹ کی پابندی تنگ نظری کا نتیجہ ہے۔ - freedom internet انٹرنیٹ آزادی - - - - - - - پاکستان میں انٹرنیٹ کی پابندی تنگ نظری کا نتیجہ ہے۔ - - - - - - tag:www.bbcurdu.com,2014-03-11:30684294 - 30684294 - 2014-03-11T22:01:20+05:00 - 2014-03-11T21:52:53+05:00 - - - restricted - مسلم فیملی لا 1961 قابل اصلاح ہے - اسلام مسلمان کو چار شادیوں کی اجازت دیتا ہے - pakistan, islam, idealogical council, fazal ur rehman, پاکستان، فیملی قوانین، فضل الرحمان ، نظریاتی کونسل - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-11:30683391 - 30683391 - 2014-03-11T21:30:10+05:00 - 2014-03-11T21:15:10+05:00 - - - restricted - ’میڈیا وہ کرے جو قومی مفاد میں ہے‘ - گذشتہ کچھ عرصے سے پاکستان کے صحافتی ادارے اپنی حفاظت کے بارے میں تشویش کا شکار ہیں اور ان پر کئی حملے بھی کیے جا چکے ہیں۔ اس بارے میں بی بی سی اردو کے آصف فاروقی کے ماروی میمن سے گفتگو سنیے۔ - ماروی میمن، انٹرویو، میڈیا، آصف فاروقی، marvi memon, interview, video, asif farooqi, media - - - - - - - ماروی میمن - - - - - - tag:www.bbcurdu.com,2014-03-16:30775787 - 30775787 - 2014-03-16T18:15:42+05:00 - 2014-03-16T18:10:10+05:00 - - - restricted - بھارت میں اونٹوں کی کمی سے حکومت فکرمند - بھارتی ریاست راجستھان میں حکومت اونٹوں کی کم ہوتی تعداد کی وجہ سے اسے ’ریاست کی امانت‘ کا درجہ دینے پر غور کر رہی ہے۔ - بھارت، اونٹ، راجستھان، india, camel, poupaltion - - - - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30768525 - 30768525 - 2014-03-16T03:53:20+05:00 - 2014-03-16T03:50:25+05:00 - - - restricted - کیٹ واک کرتی اداکارائیں - ممبئی میں جاری فیشن ویک کے پانچویں روز کی تصاویر - ممبئی، فیشن، mumbai, fashion - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30773252 - 30773252 - 2014-03-16T19:23:37+05:00 - 2014-03-16T15:45:15+05:00 - - - restricted - لاڑکانہ:صورتحال بدستور کشیدہ،وزیراعظم کی تشویش - لاڑکانہ میں مقدس اوراق کے مبینہ بےحرمتی اور ردعمل میں ہندو دھرم شالہ کو نذر آتش کیے جانے کے واقعات کے بعد حالات بدستور کشیدہ ہیں جبکہ وزیراعظم نواز شریف نے ہندوؤں کی املاک کو پہنچنے والے نقصان پر تشویش ظاہر کی ہے۔ - larkana, sindh, quran, burning, لاڑکانہ، قرآن، ہندو - - - - - - - - - - - - - - ’مقدس اوراق کی بےحرمتی‘: دھرم شالا نذرِ آتش، علاقے میں کشیدگی - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30771161 - 30771161 - 2014-03-16T13:11:35+05:00 - 2014-03-16T12:57:35+05:00 - - - restricted - ’ڈیڑھ ارب ڈالر قرض نہیں دوست ممالک کا تحفہ ہے‘ - وزیرِ خزانہ اسحاق ڈار کا کہنا ہے کہ پاکستان کو حال ہی میں ملنے والے ڈیڑھ ارب ڈالر ’دوست ممالک‘ کی جانب سے پاکستان کے عوام کے لیے تحفہ ہے۔ - نواز شریف، پاکستان، سعودی عرب، قرض، loan, saudi arabia, nawaz shareef - - - - - - - - - - - - - - نواز شریف کی ’ذاتی ضمانت پر ڈیڑھ ارب ڈالر کا قرض‘ - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30778316 - 30778316 - 2014-03-16T21:24:28+05:00 - 2014-03-16T21:04:55+05:00 - - - restricted - ورلڈ ٹی 20:نیپال نے ہانگ کانگ کو شکست دے دی - ڈھاکہ میں ورلڈ ٹی ٹوئٹنی مقابلوں کے پہلے مرحلے کے دوسرے میچ میں نیپال نے ہانگ کانگ کو 80 رنز سے شکست دے دی ہے۔ - نیپال، ہانگ کانگ، کرکٹ، ورلڈ ٹی ٹوئنٹی، hong kong, cricket, nepal, world t20 - - - - - - - - - - - - - - آئی سی سی ورلڈ ٹی ٹوئنٹی 2014 - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30772877 - 30772877 - 2014-03-16T17:02:12+05:00 - 2014-03-16T15:21:00+05:00 - - - restricted - ورلڈ ٹی 20:افتتاحی میچ میں بنگلہ دیش کی فتح - ڈھاکہ میں ورلڈ ٹی ٹوئٹنی مقابلوں کے پہلے مرحلے کے افتتاحی میچ میں میزبان بنگلہ دیش نے افغانستان کو نو وکٹوں سے ہرا دیا ہے۔ - بنگلہ دیش، افغانستان، کرکٹ، ورلڈ ٹی ٹوئنٹی، bangladesh, cricket, afghanistan, world t20 - - - - - - - - - - - - - - آئی سی سی ورلڈ ٹی ٹوئنٹی 2014 - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30769464 - 30769464 - 2014-03-16T10:05:31+05:00 - 2014-03-16T09:16:01+05:00 - - - restricted - پیرس میں گاڑیوں کے روزانہ استعمال پر پابندی - فرانس کے دارالحکومت پیرس میں آلودگی کو کم کرنے کی ایک نادر کوشش کے تحت موٹر گاڑیوں کے استعمال پر پابندی لگائی جا رہی ہے۔ - فرانس، پیرس، کار، موٹر گاڑی، آلودگی، پبلک ٹرانسپورٹ، Paris, France, restriction, car use, pollution level, public transport - - - - - - - - - - - - - - ’آلودہ دھند لیزر کے خلاف موثر ترین دفاع‘ - - - - - - - - - - - - بیجنگ میں آلودگی کی سطح بڑھ گئی - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30753858 - 30753858 - 2014-03-15T03:48:59+05:00 - 2014-03-15T03:48:13+05:00 - - - restricted - روانڈا نسل کشی: سابق انٹیلیجنس سربراہ کو سزا - فرانس کی ایک عدالت نے روانڈا کے سابق اینٹیلیجنس کے سربراہ پاسکل سمبیکنگوا کو 1994 کی نسل کسی کا مرتکب ہونے پر 25 سال کی قید کی سزا سنائی ہے۔ - rwanda, genocide, france, case, روانڈا، نسل کشی، فرانس - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30776661 - 30776661 - 2014-03-16T19:10:16+05:00 - 2014-03-16T19:04:06+05:00 - - - restricted - برلن اپنے نام کا ڈومین حاصل کرنے والا پہلا شہر - جرمنی کا شہر برلن میں قائم کمپنیاں اور وہاں کے رہائشی 18 مارچ سے اپنے انٹرنیٹ پتے کے آخر میں ڈاٹ برلن کا لاحقہ استعمال کر سکیں گے۔ - برلن، انٹرنیٹ، ڈومین، جرمنی، berlin, internet, domain - - - - - - - - - - - - - - انٹرنیٹ ایڈریس اب عربی، چینی اور روسی زبان میں - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30733388 - 30733388 - 2014-03-14T03:34:35+05:00 - 2014-03-14T03:34:31+05:00 - - - restricted - امریکی حکومت ’انٹرنیٹ کی چیمپیئن بنے نہ کہ اس کے لیے خطرہ‘ - سماجی رابطوں کی ویب سائٹ فیس بک کے بانی مارک زکر برگ کا کہنا ہے کہ انہوں نے امریکی صدر براک اوباما کو امریکی ایجنسی کی جانب سے ڈیجیٹل جاسوسی پر مایوسی سے آگاہ کیا ہے۔ - امریکہ، این ایس اے، انٹرنیٹ، فیس بک، مارک زکر برگ، facebook, marc, america, nsa, obama - - - - - - - - - - - - - - فیس بک صارفین کو معاوضہ ادا کرے گی - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30775548 - 30775548 - 2014-03-16T17:55:32+05:00 - 2014-03-16T17:53:59+05:00 - - - restricted - کیجریوال مودی کے خلاف الیکشن لڑنے کے لیے تیار - عام آدمی پارٹی کے کنوینر اروند کیجریوال نے بھارتیہ جنتا پارٹی کے وزیراعظم کے عہدے کے امیدوار نریندر مودی کے خلاف انتخاب لڑنے کا اعلان کیا ہے۔ - kejriwal, modi, india, election, varanasi, بنارس، کیجریوال، مودی، الیکشن - - - - - - - - - - - - - - دہلی میں نریندر مودی کی ’ٹی پارٹی‘ - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30763145 - 30763145 - 2014-03-15T19:43:48+05:00 - 2014-03-15T19:33:34+05:00 - - - restricted - دہلی ریپ کے دو مجرموں کی سزائے موت ’معطل‘ - بھارت کی عدالتِ عظمیٰ نےنئی دہلی میں طالبہ سے اجتماعی جنسی زیادتی کے چار مجرموں میں سے دو کی سزائے موت کو معطل کر دیا ہے۔ - بھارت، دہلی، دہلی ریپ کیس، india, dehli rape, case, dehli - - - - - - - - - - - - - - دہلی ریپ کے چار مجرموں کی سزائے موت برقرار - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30755541 - 30755541 - 2014-03-15T09:19:24+05:00 - 2014-03-15T08:50:05+05:00 - - - restricted - ’مسٹر پرفیكشنسٹ‘ عامر خان 49 سال کے ہو گئے - بالی وڈ میں ’مسٹر پرفیكشنسٹ‘ کے نام سے معروف عامر خان گذشتہ 25 سال سے ہندی سینیما پر اپنا نقش چھوڑتے آئے ہیں۔ وہ 14 مارچ کو 49 سال کے ہو گئے۔ - bollywood, film, cinema, entertainme, aamir khan, tv show, birthday, satyamev jayatent, بالی وڈ، ہالی وڈ، فلم، سینیما، عامر خان، سالگرہ، تنقید، ٹی وی شو، ستیہ مے و جیتے،تفریح - - - - - - - - - - - - - - عامر کی شکایت’ساکھ خراب کی جارہی ہے‘ - - - - - - - - - - - - میری جان کو کوئی خطرہ نہیں ہے:عامر خان - - - - - - - - - - - - دھوم تھری نے 500 کروڑ کا نیا معیار قائم کیا - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30732922 - 30732922 - 2014-03-14T02:55:35+05:00 - 2014-03-14T02:13:16+05:00 - - - restricted - ہالی وڈ کی فلم ’نوح‘ پر مشرق وسطیٰ کے کئی ممالک میں پابندی - مشرق وسطیٰ کے تین ممالک متحدہ عرب امارات، قطر اور بحرین نے ہالی وڈ کی نئی فلم ’نوح‘ پر پابندی عائد کردی ہے۔ - مشرق وسطیٰ، نوح، ہالی وڈ، hollywood, noah, middle east, film - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30746680 - 30746680 - 2014-03-16T21:29:09+05:00 - 2014-03-14T19:34:57+05:00 - - - not restricted - آئی سی سی ورلڈ ٹی ٹوئنٹی 2014 - بنگلہ دیش میں منعقد ہونے والے کرکٹ کے کھیل کے مختصر ترین انٹرنیشنل فارمیٹ ٹی ٹوئنٹی کے پانچویں عالمی مقابلوں پر بی بی سی اردو کا خصوصی ضمیمہ۔ - ٹی ٹوئنٹی، کرکٹ، ضمیمہ، t20, cricket, world, sports - - - - - - - - - - - - - - tag:www.bbcurdu.com,2013-12-12:28873117 - 28873117 - 2013-12-12T19:47:30+05:00 - 2013-12-12T19:44:35+05:00 - - - restricted - سیربین ٹی وی اب ہفتے میں پانچ دن - بی بی سی اردو نے اپنے ٹیلی وژن پروگرام ’سیربین‘ کو ہفتے میں موجودہ تین دن سے بڑھا کر پانچ دن تک پیش کرنے کا اعلان کیا ہے۔ - sairbeen, tv, relaunch, سیربین ، ٹی وی، - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30777617 - 30777617 - 2014-03-16T20:20:26+05:00 - 2014-03-16T20:10:22+05:00 - - - restricted - دنیا میں بکھرے ہولی کے رنگ - رنگوں سے بھرے ہندو تہوار ہولی کی تصاویر - ہولی، تصاویر، holi, pictures - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30764229 - 30764229 - 2014-03-15T20:57:02+05:00 - 2014-03-15T20:52:22+05:00 - - - restricted - نزاکت: چھو دیں تو بکھر جائیں۔۔۔ - ’نازک‘ کے عنوان پر بی بی سی کے قارئین کی تصاویر۔ - نزاکت، نازک، تصاویر، قارئین، delicate, ugc, pics - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30746380 - 30746380 - 2014-03-14T20:14:55+05:00 - 2014-03-14T19:19:02+05:00 - - - restricted - افغان مہاجرین کا پاکستان کو تحفہ - افغان مہاجرین کے پاکستان آنے سے قالین کی صنعت کا احیاء ہوا - pakistan, afghanistan, refugee, women, carpet, makingقالینوں کی صنعت - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30769890 - 30769890 - 2014-03-16T10:43:35+05:00 - 2014-03-16T10:04:57+05:00 - - - restricted - وادیِ سندھ کا دائم و قائم دیوتا - بھٹوؤں کی تین نسلیں بدل گئیں مگر شاہ صاحب کی وفا جاری ہے - - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30757641 - 30757641 - 2014-03-15T18:21:54+05:00 - 2014-03-15T13:04:25+05:00 - - - restricted - عالیہ بھٹ کی شناخت اور سونم کے سخت فیصلے - عالیہ بھٹ کہتی ہیں کہ فلمی دنیا نےان کے اندر تجربے اور اداکاری کے سطح پر تبدیلی پیدا کی ہے لیکن انسان کے طور پر نہیں۔ - بالی وڈ راؤنڈ اپ، فلم، سینیما، تفریح، عالیہ بھٹ، عامر حخان، کرن جوہر، سونم کپور، bollywood, film, cinema, entertainment, aamir, aalia bhat, karan johar, sonam kapoor, , - - - - - - - - - - - - - - سونم کپور کو پیار چاہیے یا پیسہ؟ - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30765441 - 30765441 - 2014-03-15T22:19:26+05:00 - 2014-03-15T21:47:28+05:00 - - - restricted - دس چیزیں جن سے ہم گذشتہ ہفتے لاعلم تھے - انسان کی آواز اس کی شخصیت کی غماز ہوتی ہے اور تنہائی کا شکار مور مورنیوں کو متوجہ کرنے کے لیے جنسی عمل سے جڑی آوازیں نکالتے ہیں۔ - دس چیزیں، ten things - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30765582 - 30765582 - 2014-03-15T22:49:37+05:00 - 2014-03-15T21:56:32+05:00 - - - restricted - یورو ملین: برطانوی شہری نے دس کروڑ پاؤنڈ جیت لیے - یورپ بھر میں ہر ہفتے کھیلی جانی والی مشہور لاٹری ’یوروملین‘ کا دس کروڑ پاؤنڈ سے زیادہ مالیت کا انعام ایک برطانوی کے حصے میں آیا ہے۔ - euromillion, jackpot, lottery, لاٹری، یوروملین، برطانیہ - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-15:30758132 - 30758132 - 2014-03-15T18:58:13+05:00 - 2014-03-15T13:50:49+05:00 - - - restricted - بھارتی الیکشن:’مذہبی جماعتوں کے لیے خطرے کی گھنٹی‘ - بدلتے ہوئے بھارت اور اس کی انتخابی سیاست میں بہت سی سیاسی جماعتوں کی طرح مذہبی جماعتیں بھی اپنا اثر بتدریج کھو رہی ہیں۔ - بھارت، الیکشن، مذہبی جماعتیں، شکیل، دوسرا پہلو - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-14:30749283 - 30749283 - 2014-03-14T23:55:32+05:00 - 2014-03-14T21:14:43+05:00 - - - restricted - فنی خرابی یا پائلٹ کی غلطی؟ - ایک مسافر بردار طیارہ کیوں تباہ ہوتا ہے۔ کیا ایسا ہمیشہ فنی خرابی کی وجہ سے ہوتا ہے یا اس کے پیچھے انسانی غلطی کا ہاتھ ہوتا ہے؟ - plane, aircraft, airlines, crash, air safetey, pilot, حادثہ، فضائی، جہاز، طیارہ، پائلٹ - - - - - - - - - - - - - - tag:www.bbcurdu.com,2014-03-16:30768930 - 30768930 - 2014-03-16T07:09:12+05:00 - 2014-03-16T06:52:02+05:00 - - - restricted - گذشتہ ہفتے کا پاکستان - پاکستان میں گذشتہ ہفتے پیش آنے والے اہم واقعات کا احوال تصاویر میں - pakistan, pictures, پاکستان، تصاویر - - - - - - - - - - - - - - tag:www.bbcurdu.com,2011-10-13:13342623 - 13342623 - 2012-11-22T19:20:31+05:00 - 2011-10-13T12:12:23+05:00 - - - not restricted - موسم - تازہ ترین خبروں، بریکنگ نیوز، ویڈیو، آڈیو، فیچر اور تجزیوں کے لیے بی بی سی اردو کی ویب سائٹ پر آئیں۔ - بی بی سی اردو، اردو، موسم، بارش، پاکستان، انڈیا، دنیا، bbc urdu, urdu, weather, rain, pakistan, india, world - - - - - - - - موسم - - - - - - tag:www.bbcurdu.com,2013-08-23:26641237 - 26641237 - 2013-08-23T19:38:30+05:00 - 2013-08-23T19:35:23+05:00 - - - not restricted - صحافیوں کی رہنمائی کے لیے ویب سائٹ - صحافیوں کی رہنمائی کے لیے ویب سائٹ - کالف آف جرنلزم، cojo, college of journalism, urdu - - - - - - - صحافیوں کی رہنمائی کے لیے ویب سائٹ - - - - - \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/fixtures/biertaucher.xml b/vendor/fguillot/picofeed/tests/fixtures/biertaucher.xml deleted file mode 100644 index ac37b61..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/biertaucher.xml +++ /dev/null @@ -1,7198 +0,0 @@ - - - - - Biertaucher Podcast - Der wöchentlicher Podcast aus Wien über freie Software und andere Nerd Themen. - http://biertaucher.at - de - Copyright 2014 CC-BY-SA - Wed, 15 Oct 2014 19:15:00 +0100 - Wed, 15 Oct 2014 19:15:00 +0100 - http://blogs.law.harvard.edu/tech/rss - horst.jens@spielend-programmieren.at (Horst JENS) - - http://spielend-programmieren.at/biertaucherlogo.jpg - Biertaucher Podcast - http://biertaucher.at - - Horst JENS, Gregor PRIDUN, und Freunde - Der wöchentliche Podcast aus Wien über freie Software und andere Nerd-Themen - Wir treffen uns jede Woche in Wien (siehe Shownotes), trinken Bier und reden dabei über freie (free/libre/open source) Software und andere Nerd-Themen. Zu jeder Sendung gibt es eine ausführlich verlinkte Shownote-Seite mit Links, Bildern, Videos. Zu finden unter http://biertaucher.at (dann weiterklicken auf die jeweilige Sendung). - - - Horst JENS - horstjens@gmail.com - - No - - - - - - - - Biertaucher Folge 177 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:177 - Wed, 15 Oct 2014 19:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher177.mp3 - - Horst JENS, Gregor PRIDUN, Michael OLP und Dr. WERNER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/2kzqH8 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 177 zu sehen

- Horst JENS, Gregor PRIDUN, Michael OLP und Dr. WERNER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - >
  • 0:00:00 Begrüßung, Sponsorenhuldigung -
  • 0:00:54 rituelle Frage, worüber wir reden werden, Interviews -
  • 0:02:46 Tech-News: Anonabox auf Kickstarter: anonymisiert surfen mit Tor, mit einem fertig konfiguriertem Kasterl -
  • 0:05:42 Tech-News: pdf digital signieren -
  • 0:07:17 Horst war am Freitag, dem 10.10.2014 auf einer sehr spontan angekündigten Demonstration gegen Netzsperren vor dem Verein für Anti-Piraterie. Siehe auch Interviews am Ende des Podcasts bzw. externer Audio-Link oben. -
  • 0:15:08 Mafia-TV-Serie: Gomorrah -
  • 0:25:20 Gamecity-Report: Horst war am Wochenende auf dem spielend-programmieren/FSFE Messestand auf der Gamecity 2014 im Wiener Rathaus. Es gab erstmals einen gemeinsam erstellten Falt-Folder. siehe auch spielend-programmiern Blog- -
  • 0:36:24 Gamecity-Report: Indy-Game Entwickler Senoi (location-based Webgame, siehe Gamecity 2013) und Blockadillo, Subotron's Pong Videospiel, Minecraft auf XBox. -
  • 0:41:41 schöner Rollenspielen: Gregor spielt erstmals das Pen and Paper Rollenspiel: Savage Worlds -
  • 0:51:16 Gamecity Report: Besucherströmungslehre, klassische Musik auf der Game City -
  • 0:57:00 Kino: Sin City 2 - A Dame to kill for -
  • 1:02:21 schöner Fernsehen: Frauengefängnis-Serie von Netflix: Orange is the new black -
  • 1:09:19 **Interview** mit Dr. Werner Müller, Vorsitzender vom Verein für Anti-Piraterie der Filmwirtschaft, aufgenommen bei der Demonstration gegen Netzsperren am 10.10.2014 in Wien. Siehe auch Bericht und Transkript -
  • 1:27:37 **Interview** mit zwei Demonstrationsteilnehmern bei der Demonstration gegen Netzsperren (10.10.2014, Wien) über ihre Beweggründe zur Demonstration zu gehen. -
  • 1:30:17 **Interview** mit Michael Olb, Entwickler vom Smartphone-Spiel Blockadillo über sein Spiel im Speziellen und Spieleentwicklung/Publizierung im Google Play Store im Speziellen. Aufgenommen auf der Gamecity im Wiener Rathaus, 12.10.2014 -
  • -
- - ]]>
- -No -Horst berichtet von der Gamecity und der Anti-Netzsperren-Demo, Gregor kämpft beim Rollenspiel Scavengers gegen Zombie-Hunde und schaut Mafia bzw. Frauengefängnis-Serien. -Shownotes: http://goo.gl/2kzqH8 http://biertaucher.at - -1:45:15 -Biertaucher, Podcast, 177, Gamecity, Netzsperren, Demonstration, Mafia, Rollenspiel, Tor, Anonabox, pdf signieren, Piratenpartei, Verein für AntiPiraterie, Gomorrha, FSFE, Savage Worlds, SinCity2, Blockadillo, Werner Mueller, Michael Olb - -
- - - - - Biertaucher Folge 176 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:176 - Wed, 08 Oct 2014 23:55:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher176.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/RRBcP8 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 176 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - >
  • 0:00:00 Begrüßung, Sonsorenbebettelung -
  • 0:00:54 Worüber wir reden werden -
  • 0:02:00 Limux (Linux München): politische Schwierigkeiten -
  • 0:04:11 Hörerfeedback! (nvidia-Treiber) -
  • 0:07:20 Horst versucht einen Stallman Talk von TedxGeneva zu übersetzen fürs RIS-Journal 002, Lizenzprobleme -
  • 0:10:00 Scribus vs LaTeX -
  • 0:11:42 Gregor verlässt seine Couch für das das Waves-Music Festival und hört unentdeckte Musikgruppen -
  • 0:21:14 Theater- und Konzertabonnoments. -
  • 0:22:30 Horst's spielend-programmieren Messestand auf der Gamecity Wien -
  • 0:27:44 Gregor schaut noch eine Welt-am-Draht-Adaption: The 13th floor (1999): lahme Optik mit überraschend guter Handlung -
  • 0:30:55 deutsche SciFi: Horst mag die Fernseh(!) Serie namens "Raumpilot" / Stanislav Lem Sternentagebücher (Gregors Podcastempfehlung: Spoileralert -
  • 0:35:30 deutsche Scifi: der erste (und einzige) Perry Rhodan Realfilm (1967) -
  • 0:41:18 Horst war beim Wiener Tierschutzlauf Streckenposten und hat Martin Balluch und dessen Hund Kuksi gesehen, aber noch nicht das Buch Der Hund und sein Philosoph gekauft. Indisches Veggie-Essen: Samosa -
  • 0:45:55 Film ohne Handlung: Holy Mountain von Alejandro Jodorowsky -
  • 0:48:39 Horst bloggt noch immer begeistert statisch mit Pelican (statische Blog Engine mit Python) -
  • -
- - ]]>
- -No -Gregor verlässt sein Sofa für das Wave-Festival und schaut SciFi Filme aus den Siebzigern, Horst erfreut sich an Pelican, Raumpoilot, indischem Essen beim Tierschutzlauf und freut sich auf die Gamecity. -Shownotes: http://goo.gl/RRBcP8 http://biertaucher.at - -0:51:10 -Biertaucher, Podcast, 176, Limux, München, Nvidia, Scribus, Wavesvienna, Musikfestival, Gamecity, The 13th floor, Raumpilot, Stanislv Lem, Tischschutzlauf, Balluch, Holy Mountain, Perry Rhodan, Samosa, Tierschutzlauf - -
- - - - Biertaucher Folge 175 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:175 - Wed, 01 Oct 2014 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher175.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/FuSm63 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 175 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor berichtet vom Slashfilmfestival, Horst war am Weinwandertag, im Kino und freut sich über Linux Voice Issue 8 -Shownotes: http://goo.gl/FuSm63 http://biertaucher.at - -0:47:24 -Biertaucher, Podcast, 175, Linux Voice, Weinwandertag, Map to the Stars, Slahsfilmfestival, Shellshock, Borgmann, Burying the Ex, The midnight after, The final hours, Knights of Badassdom - -
- - - - Biertaucher Folge 174 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:174 - Fri, 26 Sep 2014 11:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher174.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/ieoYeI oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 174 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor berichtet vom Slashfilmfestival, Horst scheitert beim Bücher spenden -Shownotes: http://goo.gl/ieoYeI http://biertaucher.at - -0:47:24 -Biertaucher, Podcast, 174, Android, Reperatur, offener Bücherschrank, Hauptbücherei Wien, Slashfilmfestival, Housebound, Pixeldungeon, Roguelike, Gone Home, Europe, Politik, Alternativlos, Horror, R100, Okulus - -
- - - - Biertaucher Folge 173 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:173 - Thu, 18 Sep 2014 17:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher173.mp3 - - Horst JENS, Gregor PRIDUN und Florian SCHWEIKERT plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/CmM0qO oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 173 zu sehen

- Horst JENS, Gregor PRIDUN und Florian SCHWEIKERT plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Sven war in Weiz auf den Knoppixtagen, in Linz auf der Ars Electronica, in Graz im Realraum und will in der Zotter Schokoladefabrik sterben -Shownotes: http://goo.gl/CmM0qO http://biertaucher.at - -1:13:08 -Biertaucher, Podcast, 173, Minecraft, Digital City, Apple, Linux Voice, Reisebericht, England, Dartmoor, Anime, Japan, Cowboy Bebop, ct Sonderheft programmieren, London, Danger5, Europe struggle for supremacy, Texnolyze, Streetlifefestival, Citybike - -
- - - - Biertaucher Folge 172 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:172 - Wed, 10 Sep 2014 15:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher172.mp3 - - Horst JENS, Gregor PRIDUN, Sven GUCKES, Ferry und Fabio KUNST plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/5RcUKL oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 172 zu sehen

- Horst JENS, Gregor PRIDUN, Sven GUCKES, Ferry und Fabio KUNST plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Sven war in Weiz auf den Knoppixtagen, in Linz auf der Ars Electronica, in Graz im Realraum und will in der Zotter Schokoladefabrik sterben -Shownotes: http://goo.gl/5RcUKL http://biertaucher.at - -1:37:37 -Biertaucher Podcast 172 Realraum Zotter Schokolade Riegersburg Voyager Planetary_Annihilation Slashfilmfestival Riesenspinne Ars_Electronica Linz Graz Höhenrausch Klangwolke radical_openess devlol U19 Kunst Knoppixtage Weiz Lebenskünstler Buskers - -
- - - - Biertaucher Folge 171 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:171 - Thu, 04 Sep 2014 12:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher171.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/5RcUKL oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 171 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, Sponsorenhuldigung, rituelle Frage -
  • 0:02:08 Horst vereinigt seine (Wordpres.com) Blogs mit Pelican, dem Python Tool zur Erzeugung statischer Webseiten: Plugins, Themes, synchronisierte Multi-Wordpress-Installation, Feeds für Tags und Themes, Tagging. -
  • 0:11:20 Zwangswerbeeinschaltung bei Wordpress.com -
  • 0:13:21 Kinko Minirechner: Kryptologie fürs Wohnzimmer -
  • 0:17:04 Youtube-Empfehlung: Sexismus in Computer-spielen -
  • 0:23:16 Podcast-Empfehlung: Tombraider (Lara Croft) Folge vom Stay-4-ever Podcast (Christian Schmidt) -
  • 0:24:41 Korrektur zum (vor)letzten Podcast: Buchtitel war: Think like a Freak, nicht Superfreakonomics -
  • 0:25:18 Kino: Guardians of the Galaxy -
  • 0:28:53 Kino (1973) Welt am Draht -
  • 0:34:56 Kino: Hector's Reise oder die Suche nach dem Glück -
  • 0:38:53 Ankündigungen: Subotron Gaming Vorlesungen , Internet of Things Vienna -
  • -
- - ]]>
- -No -Gregor verspeist erstmals einen Zypresse-Vorspeisenteller und plauder dabei mit Horst über Technik-Meldungen und Kinofilme -Shownotes: http://goo.gl/5RcUKL http://biertaucher.at - -0:40:12 -Biertaucher, Podcast, 171, Pelican, Welt am Draht, Kinko, Youtube, Guardians of the Galaxy, Hectors Reise, Wordpress, Sexismus, Gaming - -
- - - - Biertaucher Folge 170 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:170 - Thu, 28 Aug 2014 10:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher170.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/iB0OzC oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 170 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Die Biertaucher-Bac-Arbeit! Außerdem: Johnny taucht und liest ebooks auf den Malediven, Gregors Tablet geht kaputt, Horst bloggt mit Python und Pelican, Gregor rezensiert Rosies Projekt und Filme mit Lauren Bacall, Kino: Mons. Claude u. seine Töchter -Shownotes: http://goo.gl/iB0OzC http://biertaucher.at - -1:06:53 -Biertaucher, Podcast, 170, Pelican, Blog, Malediven, Tauchen, Lauren Pacall, Kobo, Kickstarter, Rosie Projekt - -
- - - - Biertaucher Folge 169 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:169 - Wed, 20 Aug 2014 20:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher169.mp3 - - Horst JENS, Gregor PRIDUN und Christoph SCHINDLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/WDedXC oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 169 zu sehen

- Horst JENS, Gregor PRIDUN und Christoph SCHINDLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Hop freut sich auf's SlashFilmFestival, Buchrezensionen: Americana und Think like a freak, jede Menge (Horror) Filme, Podcastempfehlungen -Shownotes: http://goo.gl/WDedXC http://biertaucher.at - -0:56:44 -Biertaucher, Podcast, 169, Think like a freak, Americana, Spieleveteranen, SlashFilmFestival, Elite Dangerous, Broken Age, Kivy, Grim Fandango, Blender, Pymove3d, Americana, QI, Neptuns Brood, Insidious, Äkta människor - -
- - - - - Biertaucher Folge 168 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:168 - Fri, 15 Aug 2014 19:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher168.mp3 - - Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/Wm6FEi oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 168 zu sehen

- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, Dank an Sponsoren -
  • 0:01:00 worüber wir reden werden -
  • 0:03:00 neue Knoppix-Version mit u.a. integrierter Bitcoin-Wallet. Live-CD's -
  • 0:04:04 Openstreetmap wird 10 Jahre alt -
  • 0:04:28 Netzsperren in Österreich, Anleitungen zur Umgehung, VPN Anbieter -
  • 0:06:01 Google und Yahoo wollen GnuPGP anbieten, -
  • 0:08:00 Podcastempfehlung: CRE-Hackerfunk (Freifunknetze, Funkfeuer), Gregors Freifunk Erlebnisse -
  • 0:09:07 Europython Projekt: Horst und Drazen übersetzen brasilianisches Python-Tutorium: Python für Zombies, Markdown-Auszeichnungssprache (.md) Markdown-Präsentationen -
  • 0:13:55 Sailfish OS läuft unter Nexus 5, Gregor sehnt sich nach größerer OS-Diversität -
  • 0:17:35 GUI-Entwicklung mit Python: Kivy und Toga -
  • 0:22:22 Horst liest gerne (Python)-News auf Reddit, Horst's Kreditenkartenumwandlung in Prepaid, Reddit-Gold bezahlbar mit Bitcoins. -
  • 0:29:20 Twitter nervt mit Sponsored Tweets, Alternativen: Identica, Diaspora -
  • 0:30:22 Gregor hört Podcast seit Folge eins nach: Der Retrozirkel (Computerspiele) -
  • 0:33:45 statische Webseiten und Blogs mit Python erzeugen: Pelican -
  • 0:38:10 Gregor war im Kino: Dawn of the Planet of the Apes -
  • 0:44:47 OSDomotics - Internet of Things Vienna Vorträge, 3D-Drucker, Bluetooth, 6LoWPAN, Bedeutung vom IP-Protokoll -
  • 1:01:19 Outing: wir haben WhatsApp -
  • 1:03:05 Haralds Erfahrungen mit Amazon Elastic Cloud EC2, Amazon verdient mit Cloud-Dienstleistungen mehr als durch Warenverkauf? Datenschutz, Amazon-Cloud-Dienste ohne echtes IPV6? IPv4 vs. IPv6: Unsichtbarkeit von Webseiten -
  • 1:14:27 Pump 6 and other storys - Kurzgeschichtensammlung von Paolo Bacigalupi -
  • 1:20:40 am 26. August 2014 IoT-Vienna / OSDomotics Workshop im Stockwerk -
  • -
- - ]]>
- -No -elastische Amazon-Cloud, Biocyperpunk-Bücher, Prepaid-Kreditkarten, IPV6-Probleme, Bloggen mit Python (für Zombies), Planet der Affen, Internet of Things Vienna Vortrag u.v.m. -Shownotes: http://goo.gl/Wm6FEi http://biertaucher.at - -1:23:21 -Biertaucher, Podcast, 168, Netzsperren, VPN, PGP, Python for Zombies, Sailfish, Kivy, Toga, Reddit-Gold, Kreditkarten, Twitter, Retrozirkel, Podcastempfehlung, Pelican, Planet der Affen, WhatsApp, Amazon Elastic Cloud, EC2, IPV6, Paolo Bacigalupi - -
- - - - - - Biertaucher Folge 167 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:167 - Thu, 07 Aug 2014 16:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher167.mp3 - - Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/Msmf7P oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 167 zu sehen

- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung -
  • 0:00:49 worüber wir reden werden -
  • 0:02:30 Harald ist begeistert von Ö1-Sendung Dimensionen: Buchbesprechung: Psychopolitik, Neoliberalismus und die neuen Machttechniken - Ausbeutung durch Selbst-Optimierung -
  • 0:18:14 TED-Talk über Leistungssteigerung durch Glück -
  • 0:21:28 Apples Smartwatch, Google location, Ego-Tracking -
  • 0:24:24 verpflichtende Tracking-Box im Auto. Open-Source Auto: Team wikispeed. -
  • 0:25:38 ausgereifte frei lizensierte Python IDE von JetBrains: PyCharm (community-edition) mit Github-Anwendung. Dual-Lizensierung (OwnCloud), Bezahlen für freie Software -
  • 0:30:20 Harald sucht ein skalierbares SmartHome System: Node.js und Meteor gleichzeitig verteilt Apps programmieren, ähnlich wie Google Docs. -
  • 0:34:00 Ponte Synchonisations- und Protokollübersetzungstool für IPv6 Sensoren und ähnliche/zugehörige Tools -
  • 0:42:30 Gregors Nuk Programmiercomputer: Web-export für Calibre Ebook Bibliotheken: Cops und Calibre2opds -
  • 0:55:58 Haralds Port 80 wird von seinem Provider blockiert (Chello/Upc). Router erfolgreich umkonfiguriert auf Port 8080 (ddwrt) -
  • 0:58:00 SquareWear wearable Microcontroller mit Linux und demnächst mit Arduinoboard -
  • 1:02:57 schöner Leben: Ebook Besprechung: Get ready Player One (extra Nerdig) -
  • 1:09:03 Sience (Fiction): Wie viele Leute braucht ein (Generationen)-Auswanderungsraumschiff ? Mindestens 40.000 ! -
  • 1:13:50 schöner Leben (TV-Serie): 2. Staffel von Äkta människor -
  • 1:15:02 Kino: How to train your Dragon 2 und Die Karte meiner Träume -
  • -
- - ]]>
- -No -Ausbeutung durch Selbstoptimierung, Drachen und Drei-Käse-Hochs im Kino, echte Menschen aus Schweden, tragbare Mikroprozessoren u.v.m -Shownotes: http://goo.gl/Msmf7P http://biertaucher.at - -1:22:07 -Biertaucher, Podcast, 167, Ö1, Selbstoptimierung, Ausbeutung, Trackingbox, PyCharm, Node.js, Meteor, Ponte, Calibre, Cops, Calibre2opds, ddwrt, Port80, Wearable, SquareWear, Get ready player one, Äkta människor, how to train your dragon2, Die Karte meiner - -
- - - - Biertaucher Folge 166 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:166 - Fri, 01 Aug 2014 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher166.mp3 - - Florian SCHWEIKERT, Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/x5Alj1 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 166 zu sehen

- Florian SCHWEIKERT, Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Horst's Bericht von der Europython Konferenz 2014, Harald vs. ÖBB, smarte Hausüberwachung, schottische Bodysnatcher, Berliner Computerspielemuseum, Ostblock-Grenzbeamtensimulation u.v.m -Shownotes: http://goo.gl/x5Alj1 http://biertaucher.at - -1:15:44 -Biertaucher, Podcast, 166, Europython, Linus Thorvalds, ÖBB, Konstanze Kurz, Berlin, OSDOmotics, IoTVienna, Python, Pixiedust, Blender, Pymove3d, Transgender, Rollosteuerung, Pizzeria_Anarchia, GoG, Papers please, Computerspielemuseum, Under the skin - -
- - - - Biertaucher Folge 165 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:165 - Thu, 17 Jul 2014 16:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher165.mp3 - - Florian SCHWEIKERT, Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/cpsyjm oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 165 zu sehen

- Florian SCHWEIKERT, Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:11 Begrüßung, worüber wir reden werden -
  • 0:01:08 Gregors neuer Arbeitsrechner: ein NUC Barbone-Minirechner, ausgeliefert mit Minidisplay und ohne Ram und Festplatte. Gregor will ein Multi-Seat System bauen (2 Tastaturen und 2 Monitore an einem PC) -
  • 0:08:41 Florian kommt dazu und hat Olimex-Board A20 Lime mitgebracht: stärker und mehr Anschlüsse als Rasperry Pi, genauso billig, open-hardware, aus Bulgarien -
  • 0:19:17 low-cost, always-on, home-owncloud mit Olimex? -
  • 0:23:50 Internet of Things Vienna / OSDomotics Workshop über Grove Module (Open-Hardware) -
  • 0:31:58 Xubuntu Linux und Steam installieren auf Nuc, diverse andere Linux-Distros (inkl. Grund des Scheiterns) -
  • 0:38:00 Rösser, Schwerter, Mittelalter: Mount and Blade Warbands unter Linux (Steam) als Demo, Stallman's Alptraum: Push-Technologie unter Linux -
  • 0:46:50 Florian spielt Windows Adventures: Gray Matter: Gute Magierin-Story in bescheidener 3D-Grafik -
  • 0:54:10 Gregors Filmkritik: The Raid (blutige Hochhaus-Polizei-Action aus Indonesien) und fühlt sich an Dredd 3D erinnert. -
  • 0:59:40 Horst bezahlt mit Bitcoins: Ebook Humble Bundle und Projekt auf Indygogo: Teslas Waycliff-Tower Nachbau -
  • 1:04:15 Horst freut sich schon auf die Europython in Berlin. Scheitert an Preisvergleichs-Seite für Fluglinien-Suche -
  • 1:06:16 BBC-Serien Empfehlung von Florian: The Musketeers Degen, Pulverdampf, Intrigen -
  • -
- - ]]>
- -No -indonesische Actionfilme, bulgarische Kleinstcomputer, britische Fernsehserie, türkisches Computerspiel, Hardware aus China -Shownotes: http://goo.gl/cpsyjm http://biertaucher.at - -1:09:58 -Biertaucher, Podcast, 165, Nuc, Barbone, MiniDisplay, MultiSeat, Olimex, open hardware, Xubuntu, Steam, Mount and Blade, Gray Matter, The Raid, Tesla, Waycliff-Tower, Europython, Flugvergleich, Musketeers - -
- - - - - Biertaucher Folge 164 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:164 - Fri, 11 Jul 2014 09:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher164.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/hhXSCH oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 164 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, brandneues Störgeräusch: plärrendes Kleinkind -
  • 0:00:50 rituelle Frage, worüber wir reden werden -
  • 0:02:48 Konkurrenz zum Raspberry Pi: Hummingboard, (Cubbieboard, Omilex). Störgeräuschwechsel: Hintergrundmusik -
  • 0:05:39 Gregor gibt Geld aus für einen NuC Computer (Barebone) als Kreativ-Kiste und hofft auf Linux-kompatible Hardware -
  • 0:08:15 Gregor's Ebook-Reader (Kobo Touch) geht pünktlich nach Garantie-Ende kaputt. -
  • 0:09:50 Horst scheitert beim Ebook-Kauf (Thalia-Webshop) an DRM-verseuchtem, nicht Linux-fähigen angeblichem epub-Format (Adobe DRM Software), Gregor bekommt Teile eines Humble-Bundle's geschenkt, Stallman warnte vor DRM-Books -
  • 0:15:05 Spotify weiß selbst nicht wer warum Titel löscht, Löschung erfolgt sofort, Anfechtung schwierig -
  • 0:15:50 Horst spielt den freien XCom-Nachbau UFO-AI in der neusten Version (2.6), selbst kompiliert nach Anleitung auf Ubuntuusers. Ab Version 2.5 Debian-Lizenz kompatibel. Maps-Download Script für vorkompilierte Maps -
  • 0:19:57 NSA überwacht Thor-Server Benutzer (und das Linux Journal), XKeyScore -
  • 0:23:20 Kino: französicher Musik/Romantik Komödie (leider deutsch synchronisiert): Große Jungs -
  • 0:26:30 Buch: Wolf of Wallstreet und Catching the Wolf of Wallstreet. Versprecher: Jordan Belfort wurde nicht Anwalt, sondern Broker. neues Störgeräusch: schwafelnder Gast -
  • 0:34:04 Kino: Klassiker im Haydn-Kino von 1980: Blues Brothers (Saturday Night Show). -
  • 0:39:10 Vorträge und Workshops von OSDomotics-Gründer Harald Pichler: Internet of Things Vienna -
  • 0:40:08 Podcastempfehlung: Bitcoin-Update Folge 80 -
  • -
- - ]]>
- -No -Horst scheitert beim Ebook-Einkauf an DRM, UFOAI in neuer Version, Stallman behält Recht, Catching the Wolf of Wallstreet, UFoAI, Blues Brothers und Tech-Meldungen -Shownotes: http://goo.gl/hhXSCH http://biertaucher.at - -0:40:45 -Biertaucher, Podcast, 164, Hummingboard, NuC, Barebone, ebook-reader, epub, Adobe, DRM, Thalia, Spotify, UfoAI, XCom, Thor, NSA, Überwachung, Jordan Belford, Wolf of Wallstreet, Catching the Wolf of Wallstreet, Blues Brothers - -
- - - - - Biertaucher Folge 163 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:163 - Fri, 04 Jul 2014 10:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher163.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/L2Pynr oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 163 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - - -
- - ]]>
- -No -hier steht eines Tages ein leckerer Untertitel -Shownotes: http://goo.gl/L2Pynr http://biertaucher.at - -0:49:50 -Biertaucher, Podcast, 163 - -
- - - - - Biertaucher Folge 162 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:162 - Fri, 27 Jun 2014 09:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher162.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/TCyt5v oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 162 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, Gregor schüttet Bier auf Horst's Smartphone -
  • 0:01:37 rituelle Frage: Was haben wir erlebt -
  • 0:02:32 Auphonic (Sound-Software) wird kostenpflichtig -
  • 0:06:00 Horst schaut (nach Gregors Empfehlung in Folge 161) Rick and Morty und ist ebenfalls begeistert. -
  • 0:08:15 Google spendet das Spdy Modul für Apache sowie BoringSSL, ein Fork von LibreSSL -
  • 0:12:10 Katzenvideoverschwörung der Fracking-Lobby ? -
  • 0:14:12 Googlewatchblog: Google liefert Anleitungen anstatt Links -
  • 0:15:55 Happy Birthday (1): X-Windows System wird 30 Jahre alt -
  • 0:17:18 Happy Birthday (2): X-Com (Ufo Defense) wird 20 Jahre alt und lebendig wie nie zuvor -
  • 0:23:29 XCom: Enemy within von Fireaxis (kommerzieller Nachfolger) ist für Linux erhältlich (Steam) -
  • 0:24:55 TrueCrypt bekommt neuen Betreuer -
  • 0:26:40 USA: National Maker Day im weißen Haus. "From Zero to Maker" Autor sehr happy. -
  • 0:27:48 Schöner Fernschauen: Gregor schaut Girls mit Leena Duham -
  • 0:32:13 Krimi aus (und in) Wien: Horst hat "Leben lassen" von Eva Rossmann gelesen und freut sich über die Wien-Bezüge. -
  • 0:34:42 Horst war auf der Anti-Erdogan-Demo am Praterstern -
  • 0:37:00 Steam Spiel: Democracy-2 (Polit-Simulator) -
  • 0:43:47 Brettspiel: Ökopolis -
  • 0:44:25 Steam Spiel: Defense-Zone-2 (Tower-Defense) -
  • 0:48:19 Podcastempfehlung: Bitcoin-Update 78 -
  • -
- - ]]>
- -No -Katzenvideoverschwörung der Fracking-Lobby, New Yorker Frauen mit Geldsorgen (Girls), Anti-Erdogan-Demo, schöne Spiele XCom, Wiener Krimi, Tech-Meldungen u.v.m -Shownotes: http://goo.gl/TCyt5v http://biertaucher.at - -0:48:51 -Biertaucher, Podcast, 162, auphonic, Rick and Morty, Spdy, BoringSSL, Fracking, Katzenvideo, Googlewatchblog, XCom, TrueCrypt, Maker, Girls, Leben Lassen, Eva Rossmann, Anti-Erdogan-Demo, Defense-Zone2, Democracy2, Steam, Ökopolis, Tower-Defense - -
- - - - - Biertaucher Folge 161 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:161 - Tue, 17 Jun 2014 21:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher161.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/zA0xjB oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 161 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -kostenlose Zeichentrickserie, lebende Couchsurfer, polnische Pythonistas, Menschenjagd im Film, Stallman im Wohnzimmer und jede Menge Tech-Meldungen… -Shownotes: http://goo.gl/zA0xjB http://biertaucher.at - -1:10:54 -Biertaucher, Podcast, 161, Couchsurfing, BeWelcome, GnuPG, FreeCiv, Krautreporter, Journalismus, DeCorrespondent, Ikeahacking, Rick und Morty, Bildblog, Tesla, Age of Wonders 3, Trojaner, Microsoft Office, Fail, Nerfgun, Surviving the game, Stallman - -
- - - - - - Biertaucher Folge 160 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:160 - Thu, 12 Jun 2014 11:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher160.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/XIPwcD oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 160 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung -
  • 0:00:46 Worüber wir reden werden -
  • 0:01:47 Buchbesprechung: Endlich Kokain von Joachim Lottman: Abnehmen und Charakterveränderung in Wien mittels Kokain... -
  • 0:07:28 Auslobung des Biertaucherpodcast-Literaturpreises für die erste literarische Erwähnung des Biertaucherpodcasts in einem Roman (ein Dose Gösser) -
  • 0:08:15 Feuerwehreinsatz wegen brennenden Papiercontainer in Brigittenauerlände 4 -
  • 0:14:14 Filmfestival Science Fiction im Park: Captain America (1990, direct-to-video) -
  • 0:17:45 Internet of Things (/OSDomotics) Vortrag im Wiener Co-Working-Space Stockwerk: [Vortrag u.a. von Gerald Bäck über gründen und scheitern von Startups. -
  • 0:30:10 Filmfestival Science Fiction im Park: Der König der Raktenmänner (1949) -
  • 0:33:30 Filmfestival Science Fiction im Park: K20 die Legende der schwarzen Maske 40-Jahre Alternativ-Japan Szenario: Zeppelin-Autogyro-Träger! -
  • 0:40:19 Filmfestival Science Fiction im Park: Captain Berlin versus Hitler (verfilmtes Theaterstück): Mad Scientist, Hitlers Hirn, Dracula, Frankenstein, Nazis... -
  • 0:43:10 weitere Filme die Gregor nicht so gefallen haben -
  • 0:44:10 Crowdfunding Kampagne für Magazin von Krautreporter mit Stefan Niggemeier -
  • 0:45:00 Flattr verwendet Mango anstatt PayPal als Zahlungsdienstleister -
  • 0:46:45 Danksagung an Sven Guckes für die Links zum Biertaucherpodcast 159. Biertaucher mit Shownotes auf Youtube: automatisches Vor/zurückspulen durch Klick auf Zeitmarke, automatisches Untertitel-Feature (leider noch unbrauchbar), Biertaucher auf Internetarchive.org, Biertaucher aktzeptier Litecoins -
  • -
- - ]]>
- -No -ScienceFiction (im Park), Feuerwehreinsatz in Wien, schöner Scheitern mit Startups, Buchbesprechung: Endlich Kokain -Shownotes: http://goo.gl/XIPwcD http://biertaucher.at - -0:49:00 -Biertaucher, Podcast, 160, Wien, Endlich Kokain, Feuerwehreinsatz, Internet of Things, OSDomotics, Stockwerk, Gerald Bäck, Startup, König der Raketenmänner, K20 die Legende der schwarzen Maske, Captain Berlin vs Hitler - -
- - - - - - Biertaucher Folge 159 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:159 - Fri, 06 Jun 2014 14:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher159.mp3 - - Horst JENS, Gregor PRIDUN, Sven GUCKES und Michael EBNER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/hekwvz oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 159 zu sehen

- Horst JENS, Gregor PRIDUN, Sven GUCKES und Michael EBNER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung und Zischgeräusch (2. Anlauf) -
  • 0:00:44 Worüber wir reden werden -
  • 0:02:33 Tech-Meldungen: Samsung hat Tizen Mobil OS herausgebracht -
  • 0:04:30 True Crypt pleite? Proprietäre Datenverschlüsselung wird nicht mehr weiterentwickelt? -
  • 0:07:17 Warrant Canary Alarm 2004 ?. Umgang mit NSA und Kundenkomprimittierung (Schlüsselherausgabe) bei Lavabit -
  • 0:11:40 Michael macht ein Foto -
  • 0:12:26 Kann ich die NSA als Backup-Service verwenden? -
  • 0:13:50 Horst verwendet (wegen Johnny) Mycelium als Bitcoin Wallet fürs Smartphone -
  • 0:17:04 Sven redet über ein großes Linuxbuch aus Graz, kann sich aber nicht genau erinnern -
  • 0:17:30 Sven und Michael erzählen über die Linuxwochen Eisenstadt -
  • 0:21:35 Horst war beim RMS Stallman Vortrag (Predigt) am FH Technikum Wien Copyright vs. Community, Stallman's "Du sollst nicht" Liste, Gnusense Linux, Stallman's Homepage: FSF.org, Harry_Potter, Disney's Mickeymaus-Gesetzte, Amerika's Plutokratie, Obama Administration, Humble-Ebook-Bundle, Copyrightbeschränkung -
  • 0:34:22 RMS Stallman über Kunst, Piraterie, Right 2 Share. Peter Sunde (Piratenpartei) in Schweden festgenommen. -
  • 0:36:40 RMS Stallman's Überlegungen zu Künstlerentschädigung und Musik -
  • 0:43:02 RMS Stallman über Flattr, Frage & Antwort Teil nach dem Vortrag -
  • 0:44:53 Sven über die Church of Emacs - Supergau mit Stallman-Mail im Spamfilter -
  • 0:48:15 Podiumsdiskussions-Mikrofon-Missbrauch. Grottenschlechte Diskussionskultur. Sven's Tipp: Mikrofon niemals aus der Hand geben. -
  • 0:51:19 Sven war in Linz: Art meets radical Openess, Design von Bahnhofsbänken und Mistkübeln -
  • 0:58:04 Was Sven an Linz gefällt: Wanderweg über den Dächern der Stadt durch Kichtürme, W-Lan in Badessen und öffentlichen Verkehrsmitteln -
  • 1:00:43 Datum für Linuxwochen Wien 2015 steht fest: 7. bis 9. Mai 2015 FH Technikum Wien, 1200 Wien, Sticker -
  • 1:03:10 Vorträge und Podcasts transkribieren, Untertiteln -
  • 1:04:11 Linzer Regionalwährung Punk Austria: Gibling von Franz Xaver -
  • 1:08:00 Michael über sein Mobiki Elektro Klapp-Fahrrad (offiziell **kein** Transformer), Michael's Erlebnisse mit dem Klapprad in den Wiener Verkehrsbetrieben. -
  • -
- - ]]>
- -No -Sven war zahlt in Linz Künstler mit Giblingen, Michael überzeugt darf mit seinem Elektro-Transformerzweirad im Bus fahren, Horst war am Stallman Vortrag -Shownotes: http://goo.gl/hekwvz http://biertaucher.at - -1:14:39 -Biertaucher Podcast 159 RMS Stallman Elektrofahrrad Klapprad Linz Gibling Regionalwährung Linuxwochen Eisenstadt Tizen TrueCrypt Warrant_Canary Lavabit NSA Mycelium Copyright GPL Peter_Sunde Künstlerentschädigung Right_to_Share Radical_Openess - -
- - - - - - - Biertaucher Folge 158 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:158 - Thu, 29 May 2014 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher158.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/AqWbYi oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 158 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor schaut sich 5 (!) Science-Fiction Filme an und hört feministischen Podcast, Horst mag Beziehngsweise New York und Jarred Diamnonds Bücher, Johnny schaut Youtube mit Viral und freut sich auf die Bitcoin-Konferenz in Wien am Wochenende. -Shownotes: http://goo.gl/AqWbYi http://biertaucher.at - -1:07:46 -Biertaucher, Podcast, 158, Snow Piercer, Viral, The Host, Bitcoin, Stallman, Vitalin Buterin, Hell, Minetest, Lua, Feminismus, Lila Podcast, Niko Alm, Warriors, The world until yesterday, Jarred Diamond, Brainstorm, Beziehungsweise New York - -
- - - - - Biertaucher Folge 157 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:157 - Tue, 20 May 2014 12:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher157.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/1JieeX oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 157 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • Shownotes in Arbeit -
  • -
- - ]]>
- -No -Linux Mint, SciFi im Park, Naturvölker, Polizeigewalt… -Shownotes: http://goo.gl/1JieeX http://biertaucher.at - -0:52:23 -Biertaucher Podcast 157 Linux_Mint, SciFi_im_Park Kino Wien Polizei Demonstration Balluch Naturvölker Polizeigewalt - -
- - - - - - Biertaucher Folge 156 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:156 - Sat, 17 May 2014 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher156.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/qEdLSX oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 156 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor war auf der Res:publica und berichtet, Johnny druckt Biertaucherbitcoins, Horst war auf Vorträgen auf den Wiener Linuxtagen -Shownotes: http://goo.gl/qEdLSX http://biertaucher.at - -1:18:11 -Biertaucher Podcast 156 republica Linuxtag Wien Berlin Bitcoin Mate China Ai_Wei_Wei 0AD RealTimeStrategy Game Indien Kerala Internetkiosk Florian_Schirg Open_FH Tiere Bitcoin Paperwallet Mycelium FTL The_World_until_yesterday Naturvölker - -
- - - - - - Biertaucher Folge 155 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:155 - Wed, 07 May 2014 20:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher155.mp3 - - Horst JENS, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/3P7xMj oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 155 zu sehen

- Horst JENS, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - Shownotes sind in Arbeit - -
- - ]]>
- -No -Kleiner Ersatzpodcast ohne Gregor, direkt aus dem Metalab -Shownotes: http://goo.gl/3P7xMj http://biertaucher.at - -00:13:34 -Biertaucher, Podcast, 155 - -
- - - - Biertaucher Folge 154 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:154 - Tue, 29 Apr 2014 15:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher154.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/DfPUQW oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 154 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - tes in Arbeit - -
- - ]]>
- -No -zu Fuß durch Australien, Familiengeheimnisse, Böse Creationisten, gute Anthrophologen PYthon Dokumentation mit Sphinx. -Shownotes: http://goo.gl/DfPUQW http://biertaucher.at - -00:54:43 -Biertaucher, Podcast, 154 - -
- - - - - - Biertaucher Folge 153 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:153 - Thu, 24 Apr 2014 17:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher153.mp3 - - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/8AxPtX oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 153 zu sehen

- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, worüber wir reden werden -
  • 0:02:37 Doge-Coins, die Bitcoin-Spaß-Alternative mit dem Mem-Hund -
  • 0:12:08 Johnny macht Werbung für die Firma vom Bitcoin-Andreas: Mycelium -
  • 0:17:34 Horst hat Ubuntu 14.04 installiert, Filesharing zwischen Linux-Computern per Network File System NFS -
  • 0:23:12 Neuigkeiten bei Ubuntu 14.04: Amazon-Suche in der Ubuntu-Dash, Unitiy 7, verschwindende Menüleisten -
  • 0:34:29 Horst schaut unter Linux DVB-S Fernsehen per Sundtek USB-Stick mit Kaffeine und spielt mit XBMC herum -
  • 0:44:00 Gregors SciFi Film der Woche: Forbidden Planet (Alarm im Weltall) -
  • 0:47:30 Horst war im Kino: Die Mamba mit Michael Niavarani -
  • 0:52:47 Johnny war unbegeistert im Kino: Noah in 3D mit gerenderten Tieren -
  • 0:57:51 Buch: Linux mit dem RaspberryPi -
  • 0:59:26 Buch: The Greatest Show on Earth, Evolutionstheorie -
  • -
- - ]]>
- -No -Johnny erklärt DogeCoins, Gregor installiert Ubuntu 14.04 und schaut Forbidden Planets, Horst freut sich über NFS und Satelittenfernsehen mit Kaffeine, schaute die Mamba und las The Greatest Show on Earth. -Shownotes: http://goo.gl/8AxPtX http://biertaucher.at - -01:07:06 -Biertaucher, Podcast, 153, Dogecoin, Mycelium, Bitcoin, Ubuntu14.04, NFS, Samba, DVB-S, XBMC, Forbidden Planet, die Mamba, Michael Niavarani, Noah, RaspberryPi, The Greatest Show On Earth, Evolution, Creationismus - -
- - - - - Biertaucher Folge 152 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:152 - Wed, 16 Apr 2014 10:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher152.mp3 - - Horst JENS, Gregor PRIDUN, Harald PICHLER und Sven GUCKES plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/zRjIEj oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 152 zu sehen

- Horst JENS, Gregor PRIDUN, Harald PICHLER und Sven GUCKES plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:01:00 Sven erzählt vom Grazer Linuxtag, er hat Vorträge dort besucht und gehalten. Openstreetmap, wo ist die Mitte von Graz ? -
  • 0:04:00 Sven und Harald hatten W-Lan in der ÖBB ! -
  • 0:07:34 Heartbleed Bug (mit eigenem Logo), Security durch Closed Source vs. Open Source -
  • 0:19:13 Horst war (kurz) beim Python User Group Austria Treffen (PyUgat) und weiß seither wie StaticMethods in Python funktionieren -
  • 0:23:49 Python-Modul für Kalenderdatenerkennung -
  • 0:25:44 Harald erzählt über seinen Smartsara Vortrag und das letzte OsDomotics-Treffen mit TODO-Liste (autarke Wetterstation) -
  • 0:39:48 Sven empfiehlt verschiedene Linuxtage, Show und Tell im Metalab -
  • 0:47:43 Python-basierter Ebook-Server, -
  • 0:49:48 Sony schuld oder Youtube selbst schuld? Sintel (open source Blender Video) wurde fälschlich wegen Copyright-Verletzung kurz von Youtube entfernt. Das Schweigen der Internet Versteher -
  • 0:51:58 Crowd-Sourced Open Source Spiel: Keeper DL auf Indygogo. Gregor mag den offiziellen Dwarf Fortress Podcast -
  • 0:53:18 Horst guckt Youtube: Cardbord-Warfare (WW2 Flugsim Remake) -
  • 0:56:41 Gregors Film der Woche: The 5th estate (Wikileaks) -
  • 1:02:03 PyCon Videos sind online auf Youtube -
  • 1:02:23 Kino: Lego The Movie -
  • 1:09:59 Point-and-Click-Adventure: Sheeva, Genemi Rue -
  • 1:13:10 Cryptoparties -
  • -
- - ]]>
- -No -Sven gibt Linuxtag-Reisetipps und erzählt vom Grazer Linuxtag, Harald liest die OSDomotics-Todo-List vor, Gregor sorgt sich wegen dem Heartbleed-Bug und spielt Adventuregames, Horst mag Papierfliegerfilme auf Youtube und Lego-The-Movie im Kino -Shownotes: http://goo.gl/zRjIEj http://biertaucher.at - -01:19:05 -Biertaucher, Podcast, 152, OSDomotics, Graz, Linuxtag, Paperclip Warfare, Papierflieger, Youtube, Openstreetmap, Heartbleed, Python, Kalenderdaten, static methods, OSDomotics, Wetterstation, Störgeräusche, wikileaks, 5th Estate, Lego the Movie - -
- - - - Biertaucher Folge 151 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:151 - Fri, 11 Apr 2014 07:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher151.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/v6eEvg oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 151 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Bericht und Interview vom Linuxtag Graz, Bitcoin-Konferenz in Wien, diverse Hardware, Skynet zum selbermachen mit Ethereum, schöner leben mit Danger 5, Italian Spiderman und LadyKillers u.v.m… -Shownotes: http://goo.gl/v6eEvg http://biertaucher.at - -01:29:05 -Biertaucher, Podcast, 151, Hackerfunk.ch, Windows XP, Bridge Builder, Nexus7, Tholino, Okulus Rift, LPI, Bitcoin, Cebexpo, Stallman, Ethereum, Skynet, turing-completeness, Italian Spiderman, Danger5, LadyKillers - -
- - - - - - Biertaucher Folge 150 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:150 - Wed, 02 Apr 2014 10:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher150.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/qAuHJS oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 150 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - :00 Begrüßung, rituelle Frage, Veranstaltungshinweis Garip's kurdischer Abend in der Zypresse am 26-4-20140:01:49 Johnny heiratet !0:02:30 Gregor hat ein neues Android Smartphone: Moto-G von Motorola0:15:43 Barometer in Johnnys Nexus 4 Smartphone0:17:32 most awesome video editing Dad: Youtube Kindervideos mit Special Effects0:19:30 Horst bekommt ein E-book fürs tweeten über Packt-Publishing0:21:31 Johnny fährt mit herumstehenden Car-Sharing/Mietautos: Car2Go0:33:22 Car2Go verwendet MyFair Deskfire Zugrisskarten (NFC, proprietär)0:37:00 E-day der Wirtschaftskammer Wien: Videos sind online0:38:10 Humble Open Source Bundle: Magic Diary und Magical Tower Defense (Adobe Air)0:41:50 aktuelles Science Fiction Nerd/Mainstream-Kino: Her (Kinofilm) (Referenz zu Black-Mirror, siehe auch Biertaucherpodcast Folge 100)0:48:47 TED-Talk: Mind controlling parasites0:50:40 Cure Runners online (in Österreich)0:52:32 nettes Android-Hüpfspiel erstellt mit V-Play Engine: Pharao's Escape0:54:10 Leadworks: 3d game engine: 3d Spiele für Ubuntu auf Ubuntu entwickeln0:57:00 Kino: Everyday rebellion - gewaltfreier Widerstand1:05:05 freie Bücher (epub) über den 1. Weltkrieg: 4 Weeks in the trenches (Fritz Kreisler), wartime diary of an u-boat commander1:11:28 Kino: 300, Teil 2 (Splatter-Comic-Verfilmung, gerenderte Seekriegs Szenen)1:17:11 Podcastempfehlung Bitcoin-Udpate 681:17:58 Daniel empfiehlt das OpenSource Humble Bundle - -
- - ]]>
- -No -Johnny mietet Kleinwagen und heiratet, Gregor hat ein neues Smartphone und schaut Splatterfilme, Horst liest 100 Jahre alte Bücher, bekommt Geld fürs teweeten und freut sich über neue Computerspiel-Engines und Everyday Rebellion im Kino. -Shownotes: http://goo.gl/qAuHJS http://biertaucher.at - -01:20:04 -Biertaucher, Podcast, 150, Her, 300-Teil2, EverydayRebellion, Moto-G, Barometer, packt-publishing, Car2Go, CarSharing, E-Day, HumbleBundle, RenPy, Cure Runners, Pharaos_Escape, V-Play_Engine, Leadworks, 1.Weltkrieg, Bücher - -
- - - - - - - Biertaucher Folge 149 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:149 - Fri, 28 Mar 2014 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher149.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/Hp3caA oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 149 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • Inhalt noch in Arbeit -
  • -
- - ]]>
- -No -Kleinigkeiten -Shownotes: http://goo.gl/Hp3caA http://biertaucher.at - -00:51:01 -Biertaucher, Podcast, 149, Broken Sword, OpenTechschool, Issue.com - -
- - - - Biertaucher Folge 148 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:148 - Fri, 21 Mar 2014 22:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher148.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/Gmc6dq oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 148 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • Inhalt noch in Arbeit -
  • -
- - ]]>
- -No -Report vom Chemnitzer Linuxtag 2014 -Shownotes: http://goo.gl/Gmc6dq http://biertaucher.at - -0:49:45 -Biertaucher, Podcast, 148, Chemnitzer_Linuxtage, Budapest_Grand_Hotel, Episodes - -
- - - - Biertaucher Folge 147 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:147 - Thu, 13 Mar 2014 17:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher147.mp3 - - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/hWEnQQ oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 147 zu sehen

- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -norwegische Nordlichter, Pommes Frites in Brüssel, verheiratete Tintenfische, Kommissare mit Gemüsephobie, Vorfreude auf Chemnitz -Shownotes: http://goo.gl/hWEnQQ http://biertaucher.at - -1:30:05 -Biertaucher, Podcast, 147, Zypresse, kurdischer Abend, Getty Images, Raspberry, Microsoft, 3D Tisch, Thinkpad Yoga, Polivka hat einen Traum, Dadliest Catch, Norwegen, Brüssel, CLT, Chemnitz, Linuxtage, OSDomotics, Mahü, Macht Energie - -
- - - Biertaucher Folge 146 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:146 - Wed, 05 Mar 2014 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher146.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/G2VMLn oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 146 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, worüber wir reden werden -
  • 0:02:35 Lesefutter: Gratis Ebook -
  • 0:03:50 Evernote vs. Pocket: Offline Webseiten lesen -
  • 0:05:07 Firefox OS: zentrales Repository for Updates vs. Androids Herstellerchaos -
  • 0:10:00 Horst bekommt im Metalab ein Videomikrophon geschenkt -
  • 0:12:30 Firefox-Plugin Blockade -
  • 0:17:00 Schnell-Lese App Spritz -
  • 0:21:30 Gregor hat inzwischen mehrere Humble-Bundle Spiele für Android ausprobiert. -
  • 0:25:00 Schöner Spenden: Rap-News akzeptiert Spenden u.a. per Bitcoin und Flattr -
  • 0:26:49 Mozilla Badges: -
  • 0:31:00 freies Lerntool: Oppia.org praktisch Khan Academy zum selber machen. -
  • 0:36:12 Horst's erste Erfolge mit Catrobat -
  • 0:37:05 Gregor schaut prähistorische SciFi Filme von 1973: Soylent Green -
  • 0:41:53 Horst war im Kino: 47 Ronin -
  • 0:50:12 Graip über kurdischen Abend in der Zypresse -
  • -
- - ]]>
- -No -Johnnys NFC-Kartenleser, Haralds OSDomotics Hardware, Gregor kauft HumbleBundle, GameDevCafe Vienna, FSFE-Austria Treffen. Interviews: Linux Fail bei der evangelischen Karlsschule und CoWorking-Space Stockwerk -Shownotes: http://goo.gl/G2VMLn http://biertaucher.at - -0:50:51 -Biertaucher, Podcast, 146, Soylent Green, Pocket, Ebook, Überwachung, Firefox OS, Metalab, Pluginblockade, Spritz, Rap-News, OpenBadges, Oppia, Lerntool, Catrobat, 47 Ronin, kurdischer Abend - -
- - - - - Biertaucher Folge 145 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:145 - Tue, 04 Mar 2014 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher145.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/tYuOXO oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 145 zu sehen

- Horst JENS, Gregor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Johnnys NFC-Kartenleser, Haralds OSDomotics Hardware, Gregor kauft HumbleBundle, GameDevCafe Vienna, FSFE-Austria Treffen. Interviews: Linux Fail bei der evangelischen Karlsschule und CoWorking-Space Stockwerk -Shownotes: http://goo.gl/tYuOXO http://biertaucher.at - -2:16:27 -Biertaucher, Podcast, 145, Post, NFC, Smartcards, TED, GameDevCafeVie, HumbleBundle, GinaSisters, Threema, ChatSecure, WhatsApp, Snapchat, OSDomotics, UrzeitKrebse, Catrob, GPL, Linux, Schule, Uncle, Britcom, Family Tree, Astrologie - -
- - - - - Biertaucher Folge 144 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:144 - Fri, 21 Feb 2014 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher144.mp3 - - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/3AMIGu oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 144 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Johnny entwickelt Kreditkarten-App, Gregor war am Protestsongcontest, Horst bespaßt Kindergeburtstage, freut sich über das Robocop-Fanprojekt, war im Kino und muss The Undercover Economist strikes back nochmal lesen -Shownotes: http://goo.gl/3AMIGu http://biertaucher.at - -1:33:36 -Biertaucher, Podcast, 144, Wolf_of_Wallstreet, The_Undercover_Economist_Strikes_Back, Godot, Hacker_Public_Radio, Kreditkarten, BeagleBoneBlack, Emailprivacy, Mariahilferstraße, Sommerkurs, Protestsongcontest, Our_Robocop_Remake - -
- - - - - Biertaucher Folge 143 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:143 - Mon, 17 Feb 2014 15:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher143.mp3 - - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/247HtE oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 143 zu sehen

- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, Vorstellung -
  • 0:02:19 Florian kauft (erfolgreich) Regenschutzkleidung -
  • 0:06:31 Johnny über Bitcoin-Neuigkeiten -
  • 0:11:28 Mozilla bringt einen Android-Launcher heraus: Everything me -
  • 0:16:35 Horst hört über "das Aug": Logistiksysteme und Vercyberung von Lagerarbeitern, Paketierung durch Roboter, Untergrundeisenbahn im SMZ Ost -
  • 0:20:59 Werbung: Garip veranstaltet am 1. März 2014 in der Zypresse (Westbahnstraße 35a, 1070 Wien) einen kurdischen Abend -
  • 0:22:00 Autmatische Transportsysteme bei Containerhäfen, 2. Season von "The Wire", Verblödung durch Navi-Systeme (Digital-Demenz) -
  • 0:26:00 Statistik Austria macht Creative-Commons lizensiertes Open-Data Center -
  • 0:27:00 Johnny hat ein Moto-G Smartphone von Motorola um 199 Euro gekauft. -
  • 0:30:35 Johnny bekommt eine seltsame Android- Fehlermeldung wegen seiner App: Fehlendes Icon (Fdroid) -
  • 0:35:22 Open Build Service OWS (Florian) -
  • 0:36:48 Florian über sein Jolla Phone und sein Rückblick auf die FOSDEM-Konferenz in Brüssel, wo man in Wien belgisches Bier trinken kann. -
  • 0:48:00 Gregor war im Kino: Che - Revolution, Che - Guerilla, Contegaon -
  • 0:55:00 Horst war auf Subotron Vortrag über Sony und Indie-Games Entwicklung, Sony Vita. -
  • 1:07:40 Sci-Fi von 1976 (!): Logan's Run -
  • 1:19:52 Podcastempfehlung: Bitcoin-Update 62 -
  • -
- - ]]>
- -No -Florian erzählt von der FOSDEM Konferenz in Brüssel, Horst war auf Sony-IndyGameDev Vortrag, Johnny kauft Moto-G Smartphone, Gregor schaut Logans Run, Che und andere Filme -Shownotes: http://goo.gl/247HtE http://biertaucher.at - -1:20:28 -Biertaucher, Podcast, 143, Moto-G, Motorola, Wintersport, Smartphone, Subotron, Sony, Gamedev, Logans Run, Mozilla, Android-Launcher, Cyberaugen, Logistiksysteme, Roboter, Zypresse, The Wire, Digital-Demenz, OpenData, Icon, Launcher - -
- - - - - Biertaucher Folge 142 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:142 - Thu, 06 Feb 2014 07:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher142.mp3 - - Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/WUvUhB oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 142 zu sehen

- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Harald zeigt Raspberry Pi - ähnliche Boards und 6LoWPAN Boards für den Raspberry Pi, Gregor hört Nachrichten und Horst hört nicht mehr auf von der Fosdem in Brüssel zu erzählen… -Shownotes: http://goo.gl/WUvUhB http://biertaucher.at - -2:16:29 -Biertaucher, Podcast, 142, RaspberryPi, Urheberrecht, Merkurboard, OSDomotics, Fosdem, Konferenz, Brüssel, Open Source, Pandora, Python, Drama Engine, Science, Journale, Interviews, Wikipedia, Lobbyarbeit, Olimex - -
- - - - - Biertaucher Folge 141 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:141 - Thu, 30 Jan 2014 23:55:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher141.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/jT5Ezg oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 141 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor war am FM4 Festival, Horst war auf der Austria Game Jam, hat dort Interviews gemacht und auf Youtube Mario Warfare geguckt. -Shownotes: http://goo.gl/jT5Ezg http://biertaucher.at - -1:42:57 -Biertaucher, Podcast, 141, FM4, Austria Game Jam, GameJam, AGJ14, GGJ14, Mario Warfare, Youtube - -
- - - Biertaucher Folge 140 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:140 - Wed, 22 Jan 2014 14:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher140.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/lFwih2 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 140 zu sehen

- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Horst liest den Undercover-Economist sowie eine Visual Novel über Steve Jobs und launcht sein RIS-Journal, Gregor war im Kino Kinofilme Vampir- und Beziehungsfilme anschauen. Interview über OpenKarma. -Shownotes: http://goo.gl/lFwih2 http://biertaucher.at - -0:59:25 -Biertaucher, Podcast, 140, RISJournal, Mozilla, Ebook, Thalia, EPub, Tim Harford, The undercover economist strikes back, Venus im Pelz, Steve Jobs, Only Lovers left alive, OpenKarma, PyLadies, RISJournal, LaTeX, Steingeld, dribble, behance - -
- - - - Biertaucher Folge 139 - http://spielend-programmieren.at/de:podcast:biertaucher:2014:139 - Wed, 15 Jan 2014 20:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher139.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/BFFMGm oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 139 zu sehen

- Horst JENS, Gregor PRIDUN, Johnny ZWENG, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor schaut Borgen, Florian erfreut sich am Jolla Smartphone, Horst liest über geldloses Glück sah im Kino Bad Fucking, Johnny wurde zum Medienstar und erzählt über unsicheres berührungslose Bezahlvorgänge, Harald sah TV Doku über Reisanbau -Shownotes: http://goo.gl/BFFMGm http://biertaucher.at - -1:32:13 -Biertaucher, Podcast, 139, RISJournal, LaTeX, Bad Fucking, Kino, Borgen, TV, Jolla, Payment, drahtlos, NFC, Sicherheitslücke, bezahlen, OSDomotics, Reis, bargeldlos, Geldstreik - -
- - - - - - - Biertaucher Folge 138 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:138 - Wed, 08 Jan 2014 19:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher138.mp3 - - Horst JENS plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/BFFMGm oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 138 zu sehen

- Horst JENS plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor spielt Humble-Bundle Spiele, schaut TV-Serien und hört Podcasts. Horst redete mit Piloten, war in einer Robert-Cappa Ausstellung und in einem evang. Gottesdienst, beschäftigt sich mit LaTeX und staunt über Valve (Firma ohne Boss) -Shownotes: http://goo.gl/BFFMGm http://biertaucher.at - -1:01:09 -Biertaucher, Podcast, 138, RIS-Journal, LaTeX, Anomalie2, Gemini Rue, Mob City, American Horror Story, Pilot, Raven Master Thief, Valve, firma ohne boss, ChaosCongress, Sondersendung, 30C3, Kung Fury - -
- - - - - Biertaucher Folge 137 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:137 - Tue, 31 Dec 2013 16:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher137.mp3 - - Horst JENS plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/oQezGx oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 137 zu sehen

- Horst JENS plaudert über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Horst spricht einzig und alleine über sein neues Projekt, das RIS Journal, eine creative-commons lizensierte Open-Source Zeitschrift für Schulen -Shownotes: http://goo.gl/oQezGx http://biertaucher.at - -0:08:17 -Biertaucher, Podcast, RISJournal, Wien, OpenSource, Zeitschrift, CreativeCommons - -
- - - - Biertaucher Folge 136 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:136 - Tue, 24 Dec 2013 06:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher136.mp3 - - Horst JENS plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/GAi5Eq oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 136 zu sehen

- Horst JENS plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Horst macht ganz alleine einen Weihnachtspodcast, war im Kino und liest Meldungen vor. -Shownotes: http://goo.gl/GAi5Eq http://biertaucher.at - -0:13:36 -136, Biertaucher, Podcast, Wien, Fack ju Göhte, Metalab, EU, Michel Reimon, Zeitschriften, Shool in the cloud, geistiges eigentum - -
- - - - - - - Biertaucher Folge 135 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:135 - Wed, 18 Dec 2013 06:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher135.mp3 - - Florian SCHWEIKERT, Horst JENS und Chritian HAUMER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/HJNlEc oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 135 zu sehen

- Florian SCHWEIKERT, Horst JENS und Chritian HAUMER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:52 Horst und Florian sind stolze Beta-Tester von DataDealer und berichten über erste Eindrücke -
  • 0:03:37 Horst belauscht Martin beim Basiswappeln in einer Attac-Agrar Basisgruppe / Hackerspaceprojekt im Burgenland -
  • 0:04:42 Owncloud (statt Google Drive oder Dropbox), Owncloud Apps: Feedreader, Kalender, Links -
  • 0:06:42 Florian hat gutes gehört über Coquelicot: große Dateien clever verschicken -
  • 0:10:09 web-basierte Kalender und Adressenverwaltung: CalDav -
  • 0:13:26 Horst versynchronisiert sich: UbuntuOne und OwnCloud lieber trennen -
  • 0:16:23 Florian wartet auf sein Jolla Phone mit Wayland und austauschbarer Hardware im Gehäuse. Idee: Jolla mit Merkurboard ? -
  • 0:20:40 Gimp Magazin Issue 5, Abomodell bei Adobe Photoshop -
  • 0:22:49 Vermehrte Copyright Claims bei Youtube, cc-lizensierte Hintergrundmusik direkt in Youtube "verbessern" -
  • 0:26:09 Horst guckt Youtube: TheOnion.com: Thoug Season (Fantasy Football) und Sex House (Big Brother / Containershow) -
  • 0:36:58 Florian's Rant: Touristenbusse ! -
  • 0:39:40 Horst war bei 10-Jahres-Feier von Subotron, Wiens berühmten Videospiel-Shop im Museumsquartier. -
  • 0:41:00 Interview mit Spiele-Entwickler -
  • -
- - ]]>
- -No -Horst und Florian produzieren Störgeräusche im Metalab und reden über OwnCloud und CalDev und testen die Beta von Data Dealer. Florian wartet auf das Jolla Phone, Horst schaut auf Youtube die Onion-Parodie SexHouse. Interview mit Spieletester. -Shownotes: http://goo.gl/HJNlEc http://biertaucher.at - -0:59:45 -Biertaucher, Podcast, 135, Wien, DataDealer, Attac, Agrar, OwnCloud, CoQuelicot, CalDav, Hackerspace, Burgendland, Jolla, Youtube, Abmahnung, CopyrightClaim, TheOnion.com, SexHouse, ThougSeason, SexHouse, ContainerShow, BigBrother, Subotron - -
- - - - Biertaucher Folge 134 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:134 - Wed, 11 Dec 2013 13:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher134.mp3 - - Greor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/WcUuX4 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 134 zu sehen

- Greor PRIDUN und Horst JENS plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:01 worüber wir reden werden -
  • 0:00:02 Techno-Nomade Jonas aus Dänemark: absichtlich obdachlos, nie arbeitslos, Arbeiten mit Commandline ohne GUI, -
  • 0:10:00 Kultfilm Smoke (Jonas der Techno-Nomade) -
  • 0:13:41 Reportage: Roboxotica 2013, siehe Interview mit Band Elektroskop am Ende des Podcasts -
  • 0:37:00 Meldung: Skyjack Parrot Drohne mit Raspberry entführt andere Drohnen.. im Flug ! -
  • 0:40:41 TV-Serie mit Haudrauf-Humor: Eastbound and Down -
  • 0:44:00 Filmwarnung: Jumper Teleportations-Krimi -
  • 0:46:30 OSDomotics: Buch Web Apps mit JQuery, PhoneGap -
  • 1:05:10 Buchempfehlung: Wolfgang Löser, der Energierebell Peak_Oil, Schwungradenergiespeicher, Ölsaat, Agrarsprit, Fracking, Bürgerinitiativen, thermische und photovoltaische Solaranlagen, Energiesparlampen, Bürgerbeteiligungsmodelle, Bürgerkraftwerke -
  • 1:29:20 OSDomotics: Merkurboard Starterkit, Funk- Temperatur- und Feuchtefühler ohne verfälschte Messwerte, nächster OSDomotics Smarthome Stammtisch am 8. Jänner um 18:00 im Metalab: Howtos machen -
  • 1:37:50 Florian's "Overflow" Hardware Automat im Metalab. -
  • 1:38:53 Meldungen: -
  • 1:38:53 Freakonomics Studie: Violent Video Games reduce violence -
  • 1:40:00 Programmieren: Tynker, wie Scratch aber ohne Flash, sondern mit html5 -
  • 1:40:30 Termine: Re-publica, Linuxtag Berlin, 3D-Printer Kongress. -
  • 1:41:00 Ted Talk: warum Busse demokratisch sind, Fußgängerfreundliches Verkehrssystem in Bogota -
  • 1:43:13 Podcastempfehlung: Inhaltsverzeichnis vom Bitcoin-Update 55 -
  • 1:44:00 Interview Tyler über die Musikgruppe Elektroskop, offizielle Musik der Roboxotica. Siehe auch Biertaucherpodcast-Channel auf Youtube für noch folgende Videos von der roboxotica -
  • -
- - ]]>
- -No -Bericht und Innterview von Roboxotica, Bericht von Pyugat und Bitcointreffen, Energierebell Wolfgang Löser, OsDomotics Neuheiten, dänische Techno-Nomaden, Filmwarnung, Serienempfehlung und vieles mehr. -Shownotes: http://goo.gl/WcUuX4 http://biertaucher.at - -1:47:20 -Biertaucher, Podcast, 134, Roboxotica, Energierebell, Pyugat, Wolfgang Löser, Technonomad, Jumper, Obdachlos, ZombieDrohne, Skyjack, Eastbound and Down, JQuery, PhoneGap, Peak Oil, Fracking, Energiesparlampen, OsDomotics, Smarthome, Tynker, TED - -
- - - - - Biertaucher Folge 133 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:133 - Wed, 4 Dec 2013 13:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher133.mp3 - - Greor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/vZCd8v oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 133 zu sehen

- Greor PRIDUN und Horst JENS plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Gregor bastelt Elektronik-Adventskalender, schaut französische Filme und spielt The Cave. Horst liest Bücher von Terry Pratchett und Bill Bryson. Und vieles mehr.. -Shownotes: http://goo.gl/vZCd8v http://biertaucher.at - -58:31 -Biertaucher, 133, Podcast, Conrad, Elektronik, Adventkalender, Metalab, Hardware, Stallman, Emacs, Improv, Solarus, Zelda, Ausser Atem, Woody Allen, Havard Sailing Team, Terry Pratchett, Raising Steam, Bill Bryson, The Cave - -
- - - - Biertaucher Folge 132 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:132 - Wed, 27 Nov 2013 13:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher132.mp3 - - Greor PRIDUN, Horst JENS, Harald PICHLER und Albert KNORR plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/3TkJzJ oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 132 zu sehen

- Greor PRIDUN, Horst JENS, Harald PICHLER und Albert KNORR plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Hardware: OsDomotics Powerbox. Reportage: Buch Wien, Senior aktuell, Siemens Kindermatinee. Interview: Albert Knorr über sein Buch Mummy Island -Shownotes: http://goo.gl/3TkJzJ http://biertaucher.at - -1:13:51 -Biertaucher, Podcast, 132, Wien, Buch Wien, Senior Aktuell, Siemens, Kindermatinee, Black Mirror, Hunger Games - -
- - - - Biertaucher Folge 131 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:131 - Wed, 20 Nov 2013 17:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher131.mp3 - - Gregor PRIDUN, Horst JENS, Harald PICHLER, Ralf SCHLATTERBECK, Jörg WUKONIG und Roman SCHLEICHERT plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/cuJBpC oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 131 zu sehen

- Greor PRIDUN, Horst JENS, Harald PICHLER, Ralf SCHLATTERBECK, Jörg WUKONIG und Roman SCHLEICHERT plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Was letzte Woche passiert ist - Ankündigung von Interviews am Ende des Podcasts. -
  • 0:01:35 schöner bilden: Horst war auf der Interpädagogica Bildungsmesse in Graz am 14-11-2013: Desktop4Education, Helmuth Peer, Roman Schleichert's Quadrocopter (siehe Interview im Anschluss), Matthias Praunegger, Whiteboards, Lernmax -
  • 0:10:56 Lernspiel über Geld: Three Coins wird gerade entwickelt von Ovos, bekannt u.a. durch Physikspiel Ludwig -
  • 0:12:19 schöner installieren: Gregor korrigiert sich: Man kann Windows8 auch rein offline zu installieren. Spielekauf auf Steam via PayPal -
  • 0:13:51 schöner rätseln: Gregor kauft comic-basiertes Adventurespiel: The Wulf among us von Telltales -
  • 0:16:35 Gregor war im Burgtheater: Mutter Courage und ihre Kinder sowie im Akademietheater: Schatten von Elfriede Jelinek -
  • 0:20:34 schöner Workshop: Horst arbeitete erstmals im A1 Internet für alle Zentrum im 2. Bezirk (Scratch Workshop). Gregor freut sich auf Siemens Kindermatinee (Wissenschafts-Show für Kinder) -
  • 0:23:30 schöner Kinos-schauen: Gregor empfiehlt den neuen Woody Allen Film Blue Jasmin -
  • 0:26:31 schönes Festl: Elevate-Festival in Graz (siehe Interview von Ralf im Anschluss) -
  • 0:27:30 schöne Dienstreise: Osdomotics war Gütersloh um das Passivhaus von Kurt Gramlich (Skolelinux, Energiewende) mit 6lowPan-Mess-Sensoren zu bestücken (siehe Interview mit Harald in diesem Podcast), Technonomaden -
  • 0:32:14 schöner zweifeln: Ist die Bielefeld-Verschwörung ein Hoax ? -
  • 0:34:12 Tech-Meldungen: Cyanogen-Mod wird eine Firma, Oppo, kazaam? -
  • 0:38:28 PODCAST-Empfehlung: Inhaltsverzeichnis vom Bitcoin-Update 52 -
  • 0:39:06 INTERVIEW mit Roman Schleichert (Darstellende-Geometrie Lehrer im BG Weiz) erklärt wie man als Schule vom Unterrichtsministerium 3d-Drucker und Quadrocopter finanziert bekommt sowie Mädchen mit Lötkolben -
  • 0:46:13 INTERVIEW mit Dr. Ralf Schlatterbeck über das Elevate-Festival in Graz -
  • 0:49:45 INTERVIEW mit Harald Pichler zum Thema osdomotics und Passivhaus (technische Beschreibung, Preise von OSDomotics-Komponenten) -
  • 1:12:55 REPORTAGE von Jörg Wukonig über TedX Vienna 2013: Biorhythmus, Künstliche Intelligenz, Quasare, Blutkreislauf, künstliches Fleisch, Youtube, Aussteiger, gesprayte Textilien, Unicode, Krautrock u.v.m. -
  • -
- - ]]>
- -No -Bericht von der Interpädagogica Bildungsmesse, vom Elevate Festival in Graz, von Kurt Gramlichs Passivenergiehaus in Gütersloh und von TedXVienna. Außerdem Burgtheater (Mutter Courage), Akademietheater (Schatten) und Kino (Blue Jasmin). -Shownotes: http://goo.gl/cuJBpC http://biertaucher.at - -1:26:05 -Biertaucher, Podcast, 131, Interpädagoica, Desktop4Education, Helmuth, Peer, Roman Schleichert, Matthias Praunegger, ping solutions, Threecoins, Burgtheater, Blue Jasmin, Kurt Gramlich, Passivhaus, Energiewende, Elevate, TedX Vienna - -
- - - - Biertaucher Folge 130 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:130 - Thu, 14 Nov 2013 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher130.mp3 - - Horst JENS, Gregor PRIDUN, Harald PICHLER und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/0Gdw2H oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 130 zu sehen

- Horst JENS, Gregor PRIDUN, Harald PICHLER und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. - -
    - >
  • 0:00:00 Begrüßung, worüber wir reden werden -
  • 0:02:57 Johnny war im Kino: Primer (2004), ein verwirrend gutes Erstlingswert von Jane Carruth über Zeitreisen -
  • 0:12:08 Gregor über XMPP (JAbber -Protokoll), Artikel auf Heise.de -
  • 0:16:45 Johnny über Lavabit, Silent Circle?, Edward Snowden und das neue Kickstarter Projekt: Darkmail -
  • 0:22:47 DieTagesPresse.com (österr. Satiremagazin) mit Artikel wo sich Bundeskanzler Faymann aufregt dass er NICHT von der NSA abgehört wird -
  • 0:23:47 Horst war am (Brett)Spielefest im Wiener Konferenzzentrum und hat mit 3 Spieleentwicklern geredet -
  • 0:26:19 Schach-ähnliches Spiel aus Ungarn: Achtung U-Boot (link wird nachgereicht) -
  • 0:30:37 Harald fährt dieses Wochenende zum Skole-Linux Entwickler Kurt Gramlich um dessen Niedrigenergie-Haus mit Smarthome-Fühlern von osdomotics vollzustopfen -
  • 0:33:10 Harald hat eine interessante Email aus Russland bekommen: Smarthome-Lösung mayadomohome.com mit Blockly -
  • 0:38:14 Horst über Brettspiel "Schinderhannes" (Link zum Brettspiel wird nachgereicht), und Brettspiel-Selbstverlag, siehe auch CRE-Sendung zum Thema Brettspiel-Entwicklung -
  • 0:43:45 Carcasonne-Computerspiel-Umsetzung, Brettspiele im Eigenverlag produzieren lassen, Harald über Unterschied zwischen Musterschutz und Spielidee (nicht schützbar), Coding-Monkeys Podcast -
  • 0:47:35 Gregor hat das "Warner Brother" Humble Bundle WB gekauft. Windows als Steam-box: Batman, Gotham City, 4, 4-2, 4-3, Lord of the rings: war of the lords, scribblenauts. -
  • 0:55:35 Johnny kann Access-Points unter Windows einrichten: Netsh -
  • 0:59:07 Wiener Spielefest: Brettspiel mit Tablet-App: Leaders ( ähnlich wie Risiko oder Axis and Allies ): Crowdfunding für Brettspiele (link wird nachgereicht) -
  • 1:06:39 Ccomputerunterstützte nicht-computerspiele: Eye-Toy für Trading Card Games, Johnny über Kindheitserinnerung: Spiel mit Videokasette -
  • 1:10:26 Haralds Kinder spielen Brettspiele, Gregor über nervige Monopoly-Kreditkarten-Version -
  • 1:14:18 Hardware + Brettspiel: Tip-Toy über einen schlauen Stift mit Sprachausgabe und optischen Scanner -
  • 1:22:18 Osdomotics: Temperatur-Sensoren kalibrieren -
  • 1:31:29 Inhaltsverzeichnis vom Bitcoin-Update 51 -
  • 1:32:14 Jörg Wukonig erzählt vom Pinoeer Startup-Festival in Wien (siehe Folge 128) -
  • -
- - ]]>
- -No -Ein sehr verspielter Podcast -Shownotes: http://goo.gl/0Gdw2H http://biertaucher.at - -1:39:10 -130, Biertaucher, Podcast, Wien, Spielefest, Brettspiel, Achtung U-Boot, Schinderhannes, Leaders, Darkmail, Osdomotics, Temperaturfühler, TipToy, Pioneers Startup Festival, Humble Bundle, Warner Brothers, Batman - -
- - - - - Biertaucher Folge 129 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:129 - Wed, 06 Nov 2013 17:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher129.mp3 - - Greor PRIDUN, Horst JENS und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/uoSpjP oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 129 zu sehen

- Greor PRIDUN, Horst JENS und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No - -Shownotes: http://goo.gl/uoSpjP http://biertaucher.at - -1:18:57 -Biertaucher, Podcast, 129 - -
- - - - Biertaucher Folge 128 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:128 - Wed, 30 Oct 2013 12:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher128.mp3 - - Greor PRIDUN, Horst JENS, Harald PICHLER und Jörg WUKONIG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/hoMBcn oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 128 zu sehen

- Greor PRIDUN, Horst JENS, Harald PICHLER und Jörg WUKONIG plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:00 Begrüßung, was wir erlebt haben -
  • 0:01:35 Harald hat eine Box mit gebracht mit smarten Brandschutzmeldern (siehe OSDomotics) -
  • 0:09:28 Jörg Wukonig ist in Wien wegen dem Pioneers-Festival (Startup und Gründer Meeting) und der TedX Vienna Konferenz am Wochenende um sein Hirn zu lüften -
  • 0:16:30 Gregor outet sich als Evernote User und Foodblog-Fotograf. Wir rätseln über Wissensmanagement. -
  • 0:19:32 Jörg benutzt das Boomerang Plugin für Gmail um Emails in die Zukunft zu schreiben und erzählt warum er auf das Pioneer-Festival geht. -
  • 0:22:46 Prinzip der Reziprozität: Jörg ist absichtlich nett -
  • 0:23:36 Jörg freut sich auf das TedX Vienna im Volkstheater wo es angeblich noch Restkarten gibt. Thema "Grenzen der Wissenschaft". -
  • 0:26:10 Gregor war im Rabenhoftheater bei den Big Brother Awards (Anti-Datenschutz-Preis). NSA und österr. Bundesregierung und Microsoft (Kinect) haben gewonnen -
  • 0:29:08 Jörg hat seine Eltern ins Internet gebracht und nimmt sich vor seiner Mama Facebook zu verbieten. SEO]: Google liefert keine Daten zu Schlüsselwörtern mehr: "Not-Provided-Problem", möglicherweise damit nicht Facebook an Google Analytics Daten "mitnascht". -
  • 0:33:00 Cryptocat war nicht wirklich sicher. Harald will Smarthome-Sensoren verschlüsseln mit TLS und DTLS und verwendet dazu die tinydtls-lib -
  • 0:40:30 Gregor unterstützt die Crowd-Funding Kampagne für das neue Spiel der Wiener Spielefirma Broken Rules: Raetikon (indygogo) -
  • 0:43:40 Horst war im Kino: Bottled Live ( Nestle und die Wasser-Rechte) und fühlt sich an den Film Water (1985) erinnert. EU Streit über Wasser Privatisierung. Jörg lobt Garip's Essen. Man kann schon Luft in Dosen kaufen. -
  • 0:52:57 Musik-David gegen Konzern-Goliath in der Steiermark: Sir Oliver vs. S-oliver: Kleiderkonzern, Bluesmusik und Domaingrabbing. Wie Konzerne und Presse mit Shit-Storms und Social Media umgehen. -
  • 1:12:27 Bottled-Live und Water (1985) -
  • 1:13:19 Linus Thorvalds spricht über Valve (Steam) -
  • 1:14:48 Gregors Filmwarnung: after Earth (Will Smith und Sohn), unangenehmer Scientology Beigeschmack -
  • 1:16:54 Gregors Filmempfehlung: Der Europa Report Expedition zum Jupitermond -
  • 1:18:55 Europython 2014 findet in Berlin statt -
  • 1:19:30 Historicalsoftware alte 80-er Jahre Spiele im Webbrowser spielen. Warum alte Spiele heute schlecht sind. ( Pitfall Jörg liest Bücher über Commodore 64 und Amiga Firmenkultur. -
  • 1:28:25 wir spekulieren über die Zukunft von Microsoft. Neues gratis OS von Apple -
  • 1:29:07 Jörg's Mutter liest im Internet was ihr Sohn beruflich macht -
  • 1:31:47 damals in den 80ern: Wie Jugendliche programmieren gelernt haben (Commodore 64). Pleite von Data Becker. Über die Freude unverständliche Listings abzutippen und Wecker zu zerlegen. -
  • 1:41:00 Geek Humor und Hexzahlen -
  • 1:42:50 Inhaltsverzeichnis Bitcoin Update 49 -
  • -
- - ]]>
- -No -Jörg kommt aus Graz angereist und freut sich auf TedxVienna und Gründertreffen. Harald hat smarte Rauchmelder mitgebracht, Horst hat sich Bottled Life im Kino angeschaut, Gregor spricht Filmwarnungen aus und kauft Humble Bundle Spiele für Android -Shownotes: http://goo.gl/hoMBcn http://biertaucher.at - -1:43:36 -Biertaucher, Podcast, 128, Brandschutzmelder, Pioneers, Startup, TED, TedxVienna, Big Brother Awards, SEO, Cryptocat, TLS, DTLS, Raetikon, Wasser, Bottled Life, S_Oliver, Domaingrabbing, Europython, Historicalsoftware, 80er Jahre, Bildung - -
- - - - - - - - - Biertaucher Folge 127 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:127 - Wed, 23 Oct 2013 23:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher127.mp3 - - Greor PRIDUN, Horst JENS, Harald PICHLER und Florian SCHWEIKERT plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/D7dSZ6 oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 127 zu sehen

- Greor PRIDUN, Horst JENS, Harald PICHLER und Florian SCHWEIKERT plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Horst schaut Population Boom im Kino, Gregor rezensiert Bücher und freut sich über Ubuntu Gnome, Harald hat LED-Lichterketten und eine Lampe mit Bewegungssensor mitgebracht, Florian spricht über Arch-Linux und Verschlüsselung -Shownotes: http://goo.gl/D7dSZ6 http://biertaucher.at - -1:17:33 -Biertaucher Podcast 127 Games Dominions4 Crawl Oracle Ubuntu Arch Linux gamers iversity Harry_Quebert Gnome Population_Boom Osdomotics LED Synergy Server_side_copy_suppport Retroshare Of_the_record_messaging DTLS tinydtls Star_Command - -
- - - - - Biertaucher Folge 126 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:126 - Thu, 17 Oct 2013 22:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher126.mp3 - - Greor PRIDUN, Horst JENS, Harald PICHLER, Johnny ZWENG und Christoph SCHINDLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/DQV8Mx oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 126 zu sehen

- Greor PRIDUN, Horst JENS, Harald PICHLER, Johnny ZWENG und Christoph SCHINDLER plaudern über freie Software andere Nerd-Themen. -

- Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 0:00:17 Begrüßung, worüber wir reden werden -
  • 0:01:18 Kickstarter Projekt Gameduino2 - Aufsatz für Arduino -
  • 0:02:07 Hop arbeitet an einer Iphone App, 64-bit Versionen -
  • 0:11:34 Horst liest Balluch Blog über freigelassene Buttersäure-Attentäter, Freiland Fleisch etc. -
  • 0:13:27 Kino: alphabet: Angst oder Liebe (Tipp: Schulungsmaterial und Podcast mit Regisseur) über Bildungspolitik, Sir Ken Robinson, Zombies, Kreativität. Theses: Verschulung tötet Kreativität, lernen durch spielen. -
  • 0:18:09 Hop und Gregor über das Slashfilmfest: Wrong Cops, Rubber -
  • 0:19:55 alter Film mit Tom Hanks: Meine teuflischen Nachbarn (the Burbs), Filmwarnung: Big Bad Wolfes, Empfehlung: Zombie-Roadmovie mit gutem Soundtrack: The Battery, Schlangestehen beim Kartenkauf -
  • 0:29:05 Horst erzählt noch mehr über den Film Alphabet, Pisa-Siegerland China, Maler Arno Stern's Malwerkstatt, Homeschooling, Pablo Pineda Yo, también -
  • 0:41:28 Gregor hat sich das Mobile Humble Bundle2 gekauft und spielt am Android-Tablet. Eigene Android-App zum Humble-Bundle Spiele verwalten -
  • 0:47:45 Hop über eine angenehme Überraschung bei CD-Baby Online Musik Store -
  • 0:49:45 Osdomotics, Open-Source Haustechnik: Hop will von Harald einen Lichtschalter mit automatischer zeitverzögerter Ausschaltung. Dokumentation von eigenen Projekten. -
  • 1:01:13 Hop verrät seine Firmen-URL -
  • 1:02:57 Horst abschließend über Alphabet: Harz4-Jobs, Helfer-Experimet für Kleinkinder -
  • 1:06:23 Gregor hat sich einen Stanislav Lem SF-Film angeschaut: The Congress, Horst und Gregor über The Internship Nerd-Verhalten, nervige Werbung mit Verhaltensregeln in Wiener Verkehrsbetrieben -
  • 1:18:55 Google Hangout inkompatibel mit Jabber Accounts, Unterschiede zu Skype, offene Router-Firmware -
  • 1:25:00 neue Episode vom Podcast Alternativlos: Die Tinfoils hatten Recht, IT-Sicherheit, unfreie Hardware in der Raspberry Pi CPU -
  • 1:36:50 Gehackt-Werden Story im Spiegel, Lösung: Linux verwenden -
  • 1:38:25 IT-Sicherheit: Sich schützen gegen eingeschleusten Code -
  • 1:49:55 Harald hat eine Arte-Dokumentation gesehen über Chinas Wirtschaftshilfepolitik in Afrika -
  • 1:56:21 Inhaltsverzeichnis vom -No -Hop und Gregor waren am Slashfilmfest, Horst ist begeistert vom Film Alphabet, Gregor spielt Humble Mobile Bundle2 Spiele, Harald spricht über IT-Sicherheit und chinesische Entwicklungshilfe -Shownotes: http://goo.gl/DQV8Mx http://biertaucher.at - -1:56:52 -Biertaucher, Podcast, 126, Iphone, Balluch, Alphabet, Ken Robinson, Slashfilmfest, Rubber, Burbs, Battery, Zombies, Pisa, China, Arno Stern, Pablo Pineda, Humble Bundle, CD_Baby, Music, The Congress, Google Hangout, Alternativlos - - - - - - Biertaucher Folge 125 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:125 - Thu, 10 Oct 2013 22:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher125.mp3 - - Greor PRIDUN, Horst JENS, Harald PICHLER, Florian SCHWEIKERT, Johnny ZWENG und Stefan PIETRASZACK plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/OGqS5i oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 125 zu sehen

    - Greor PRIDUN, Horst JENS, Harald PICHLER, Florian SCHWEIKERT, Johnny ZWENG und Stefan PIETRASZACK plaudern über freie Software andere Nerd-Themen. -

    - Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - >
    • 0:01:00 worüber wir reden werden -
    • 0:01:12 Meldung: Betrug mit Open Access Zeitschriften -
    • 0:03:53 Ankündigung: Stefans Beitrag über Maker Fair Hannover im Sommer -
    • 0:05:04 Florian über Jolla] und Sailfish OS Neuigkeiten (Mego, Maemo): Jolla wird Android-kompatibel -
    • 0:12:21 Gregor war im Kino: Gravity -
    • 0:21:18 Podcastempfehlung: Stay Forever Gunnar Lott und Christian Schmidt (ex Gamestar Redakteure) reden über alte Computerspiele -
    • 0:24:00 Florian kauft sich ein Windows Spiel: L.A. Noir (Detektiv-Spiel mit GTA Engine) mit starker Mimik und Story -
    • 0:27:55 Wallpaper Changer für Ubuntu: Variety (lädt Fotos von Flickr) -
    • 0:31:40 Uhrzeit-abhängige Wallpaper-Helligkeit bei Gnome, diverse Ubuntu Versionen mit Gnome -
    • 0:36:02 Gregor war im Kino: The Internetship (Prakti.com) -
    • 0:42:58 IT Crowd Jubiläumsfolge und Rhett and Link: Epic Rap Battle Geek vs. Nerd -
    • 0:45:12 Johnny war in Tirol beim Almabtrieb und hat Fotos gemacht -
    • 0:50:10 Verkehrspolitik -
    • 1:02:04 OSDomotics Neuigkeiten.. Harald hat etwas mitgebracht -
    • 1:22:38 Inhaltsverzeichnis vom Bitcoin-Update 46 -
    • 1:23:29 Stefan erzählt von der Maker Fair Hannover im Sommer 2013 -
    • -
    - - ]]> - -No -Gregor war im Kino, weil es dort so schön warm ist. Horst wechselt Wallpaper mit Variety, Harald hat Hardware mitgebracht, Florian spielt L.A. Noire, Johnny war in Tirol beim Almabtrieb und Reporter Stefan berichtet über die Maker Fair Hannover. -Shownotes: http://goo.gl/OGqS5i http://biertaucher.at - -1:26:14 -Biertaucher Podcast 125 OpenAccess Supers Jolla Sailfish_OS Android Gravity Stay_Forever Variety Wallpaper prakti.com IT_Crowd Almabtrieb Rhett_and_Link L.A.Noire Maker_Fair_Hannover OSDomotics - - - - - - - Biertaucher Folge 124 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:124 - Wed, 02 Oct 2013 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher124.mp3 - - Greor PRIDUN und Horst JENS und Harald PCHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/zDexuJ oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 124 zu sehen

    - Greor PRIDUN und Horst JENSHARALD plaudern über freie Software andere Nerd-Themen. -

    - Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:47 Worüber wir reden werden: Slashfilmfest, GameCity, Jörg's Erlebnis, News -
    • 0:02:30 Jörg's Story: Er bekommt Emails von Cert.at wegen Steirischem Herbst Künstler -
    • 0:04:30 Steam OS kommt ! Und bringt (kommerzielle) Spiele auf einer Linux-Box in die Wohnzimmer... -
    • 0:08:00 Humble Bundle Spiele : Fez, bekannt aus Indiegame the movie sowie FTL (Faster than Light) -
    • 0:13:37 Gregors Slashfilmfest-Report: Vincent Vantali Film: Haunter -
    • 0:16:38 Technik Meldung: Bittorrent Fileformat (mit Nag-Screen) für Künstler -
    • 0:20:55 Cyanogenmod-freundliches, fettes Handy (fablet): oppo n1 -
    • 0:25:00 Horst (und Harald) über die Gamecity (siehe auch Horst's ausführlichen Blogeintrag) -
    • 0:28:36 Gamecity-Report: netter Platformer Schein, PC als Spieleplattform -
    • 0:36:16 Gamecity-Report: Harald hat eine leere Mädchenzone entdeckt, Tanz- und Hüpf- Spiele -
    • 0:40:49 Gamecity-Report: kleiner Messestand besser als großer Messestand (am falschen Ort), Helfer (heiliger) Franz von der Free Software Fondation Europe (FSFE), Horst's Rekrutierungserfolge -
    • 0:47:20 Slashfilm: Fäkalhorrorkomödie Bad Milo, 3D-Film: Tormented -
    • 0:52:11 Gamecity-Report: Lehrerinnen-Detektor, Blender, Blender-Kurs im Metalab -
    • 0:59:56 Gamecity-Report: Blogger und Youtuber vs. traditionelle Presse -
    • 1:05:48 Smarthome-Stammtisch am Mittwoch im Metalab, Merkurboard-Videos -
    • 1:08:00 Gamecity-Report: Youtuber, unabhängige Berichterstattung -
    • 1:18:10 Slashfilm: The Hole von Joe Dante (Gremlins, Die Reise ins Ich) -
    • 1:23:11 Haralds Hardware News: Programmer, Smarthome-Stammtisch -
    • 1:28:46 (teile vom Podcast wurden versehentlich zerstört) -
    • 1:28:47 Interview mit Mirko, Entwickler vom Adroid-Game Senoi -
    • -
    - - ]]>
    - -No -Horst und Harald berichten von der GameCity, Gregor war Slashfilme schauen und erzählt Jörg's Story. -Shownotes: http://goo.gl/zDexuJ http://biertaucher.at - -2:06:42 -Biertaucher, Podcast, 124, Wukonig, SteamOS, Steambox, Linux, Spiele, Fez, FTL, Gamecity, Mädchenzone, Senoi, Schein, Slashfilmfestival, Haunter, Steirischer Herbst, Bad Milo, Tormented, FSFE, Blender, Metalab, Blogger, Youtuber - -
    - - - - Biertaucher Folge 123 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:123 - Thu, 26 Sep 2013 14:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher123.mp3 - - Greor PRIDUN und Horst JENSHARALD plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/zDexuJ oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 123 zu sehen

    - Greor PRIDUN und Horst JENS und Harald PCHLER plaudern über freie Software andere Nerd-Themen. -

    - Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Gregor schaut fünf (!) Zombiefilme am Slashfilmfest, Horst spielt Dominions4, Harald baut Blumentopfsensoren, außerdem zwei Buchbesprechungen -Shownotes: http://goo.gl/zDexuJ http://biertaucher.at - -1:19:43 -Biertaucher, Podcast, 123, dominions4, slashfilm, sensoren, haustechnik, Forbidden Super Hero, Gothic Lolita Battle Bear, Hellbenders, Willow Greek, My Amityville Horror, From Zero To Maker, Christoph_Schlingenfiels, , Steam, Desura, Greenlight - -
    - - - - - Biertaucher Folge 122 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:122 - Thu, 19 Sep 2013 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher122.mp3 - - Greor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/JpDxiz oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 122 zu sehen

    - Greor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen. -

    - Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Robodrachen, Filme, Cyanogenmods u.v.m. -Shownotes: http://goo.gl/JpDxiz http://biertaucher.at - -1:04:24 -Biertaucher, Podcast, 122, Android, Kitkat, Cynogenmod, Real Humans, Roboter, Sailfish, Last Day on Earth, City Of Ember, Cyberangriffe, NSA - -
    - - - - Biertaucher Folge 121 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:121 - Thu, 12 Sep 2013 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher121.mp3 - - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/yJ1MoA oder http://biertaucher.at - - Bitte hier klicken um die Shownotes zur Folge 121 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Harald fährt mit Traisinen, Florian radelt im Burgenland, Gregor hört Podcasts und spielt Point and Click Adventures, Horst war auf der Freiheit statt Angst Demo und im Kino u.v.m -Shownotes: http://goo.gl/yJ1MoA http://biertaucher.at - -2:11:55 -Biertaucher, Podcast, 121, kindle, ebook, drm, adventuregames, opendata, wiener linien, kino, xmir, nsa, demonstration, freiheit statt angst, saudiarabien, das mädchen wadjda, osdomotics, traisinen - -
    - - - - - Biertaucher Folge 120 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:120 - Wed, 04 Sep 2013 14:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher120.mp3 - - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/bX36Nl oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/344501/Biertaucher-Podcast-allgemein - - Bitte hier klicken um die Shownotes zur Folge 120 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:55 Aufruf: Freiheit statt Angst Demonstration in Wien am Samstag -
    • 0:02:35 Film: Mad Max (Teil 1, von 1979) von mit Mel Gibson -
    • 0:07:30 Dokuwiki Plugin Metaheaders (um Youtube oder Google+ Seiten mit Dokuwiki-Subseiten zu verknüpfen), Google Analytics, Mediawiki -
    • 0:18:14 Wien Bericht: Gregor lebt zufrieden nahe der Fußgängerzone Mariahilferstraße, "Shared Space" zwischen Fußgängern, Radfahrern und Autofahrern, Haralds erforscht mit 3 Kindern durch die Mariahilferstraße -
    • 0:30:50 Technik: Tesla Roadster Elektroauto -
    • 0:45:00 Massive Open Online Courses: Florian hat einen online Kurs bei udacity ausprobiert und zieht Vergleiche zu Cousera, -
    • 1:05:18 OSDOmotics-Projekte für den Herbst: Smarthome-Stammtisch, Gamecity Wien, Robot Challenge, Funkroboter. Haustechnik: Led-Strips, Rolladensteuerung, Heizungssteuerung -
    • 1:14:32 Kino: Magnificia Presenca italienischer Kinofilm über Schauspieler und Geister -
    • 1:21:14 Webvideo: Funny or die: I Steve Parodie über Steve Jobs -
    • 1:24:00 Harald war (mit Kindern) im Kino: Pixars Monsters University 2, 3D Kinofilme -
    • 1:34:54 Gruselfilme: The Conjuring, The Cube inkl. Fortsetzungen -
    • 1:36:00 Film: Nothing (Film), I am Legend, Vanilla Sky -
    • 1:37:54 Video Game HighSchool Season 2, Kickstarter finanziert -
    • 1:42:26 Podcast: Schwarmthaler , ein Podcast über Kickstarter Projekte (und andere crowd-funding Plattformen) -
    • 1:49:39 Inhaltsverzeichnis vom Bitcoin-Update 41 -
    • -
    - - ]]>
    - -No -Horst und Florian berichten über die Froscon Linuxkonferenz, Interviews mit sehr jungem Pygame Workshopleiter, Interview mit Gamescon Besuchern, Buchbesprechung: Daemon, Verschlüsselung, Thomas Perl über Gpodder u.v.m. -Shownotes: http://goo.gl/bX36Nl http://biertaucher.at -Bitte flattern: http://flattr.com/thing/344501/Biertaucher-Podcast-allgemein -1:50:14 -Biertaucher, Podcast, 120, Magnificia Presenca, Udacatiy, Coursera, Freiheit statt Angst, Video Game High School, Dokuwiki, Metaheaders, Mariahilferstraße, Wien, Tesla, Udacity, iSteve, Schwarmtaler - -
    - - - - - Biertaucher Folge 119 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:119 - Thu, 29 Aug 2013 09:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher119.mp3 - - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Thomas PERSL, Johnny ZWENG und Martin MAYR plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/HOCDn2 oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1879152/Biertaucher-Podcast-Folge-119 - - Bitte hier klicken um die Shownotes zur Folge 119 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Thomas PERSL, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:02:39 Reportage Horst war mit Florian auf der Froscon Linuxkonferenz, Florians SmartSarah Vortrag, PYthon/Pygame Vortrag, Programmieren lernen mit Minecraft (siehe auch Interview), Thomas Perö's Frage ans Publikum (Gewinnspiel): eine IP mehrere Domains, wie heißt das ? -
    • 0:14:18 Auswirkungen von ebook-readern und Ebooks auf (edv) Fachbuchhandlung, Erfahrung mit Ebook-Reader, Zukunft von Papierbüchern -
    • 0:19:00 Florian berichtet über seinen ersten Froscon Besuch: Django Workshop, Key-Signing, CA-Cert, Browser-Verschlüsselung -
    • 0:40:39 GameCity Konferenz in Wien, Frog-Fachkonferenz, Subotron -
    • 0:43:17 Jörg's Buchempfählung: Daniel Suarez Daemon: Die Welt ist nur ein Spiel -
    • 0:50:54 Detlev gpodder Android Podcast Client (Github Projekt) -
    • 0:53:30 Horst über spielend-programmieren Kinder Computerkurse mit Git (Github, Bitbucket, Gitlab, Gitorious...) -
    • 0:57:55 Thomas über Gpodder.net Podcast Web-plattform, OPLM Dateien -
    • 1:00:00 Johnny über Daemon (Buchempfehlung), Kill Decision -
    • 1:02:00 Florians Themenliste: Jolla, Sailfish OS, -
    • 1:04:40 Ubuntu Edge hat Kickstarter Ziel nicht erreicht -
    • 1:07:20 L3T 2.0 Über das Internet gemeinsam erstelltes Lehrbuch über Computer und Pädagogik -
    • 1:09:09 Johnny über html5 Audio encoding (Audio ohne Flash) auf Samsung Geräten -
    • 1:11:14 Florian über Keysigning auf der Froscon: Caff u.ä. Florian's Keysigning Python Skript auf Github -
    • 1:19:00 Gewinnspiel -
    • 1:21:48 Werbung: Inhaltsverzeichnis Bitcoin-Update 40 -
    • 1:22:59 Interview: Python/Pygame workshop auf der Froscon für Kinder. Schlechte Audioqualität, besser auf Youtube -
    • 1:49:04 Interview: Dominik und Marvin erzählen von Ihrem Besuch auf der Gamescon, Starcraft2 -
    • -
    - - ]]>
    - -No -Horst und Florian berichten über die Froscon Linuxkonferenz, Interviews mit sehr jungem Pygame Workshopleiter, Interview mit Gamescon Besuchern, Buchbesprechung: Daemon, Verschlüsselung, Thomas Perl über Gpodder u.v.m. -Shownotes: http://goo.gl/HOCDn2 http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1879152/Biertaucher-Podcast-Folge-119 -1:55:18 -Biertaucher, Podcast, 119, Froscon, Ca-Cert, Key Signing, Linuxkonferenz, ÖBB, Bahn, Deutschland, Python, Pygame, Workshop, Gamescon, Buchbesprechung, Daemon, Daniel Suarez, Gpodder, OsDomotics, ebook, Buchhandel, Minecraft, Ebook-Reader, Nerd, GameCity, - -
    - - - - - Biertaucher Folge 118 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:118 - Wed, 21 Aug 2013 23:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher118.mp3 - - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/TlDYSu oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1841007/Biertaucher-Podcast-Folge-118 - - Bitte hier klicken um die Shownotes zur Folge 118 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:20 Gregor befördert unseren Sponsor zu DER Agentur, Inhaltsverzeichnis: Worüber wir reden wollen -
    • 0:02:12 Martins beschäftigt sich mit PGP und Festplattenverschlüsselung (SSD), Wohin mit den private Keys ? u.a. Bitlocker, Skydrive, TrueCrypt, -
    • 0:10:23 Johnny über die Adroid-Random-Seed Sicherheitslücke und deren Auswirkungen (Secure Random Klasse), CyanogenMod -
    • 0:27:59 arbeiten mit mehreren Google Accounts, Google+ und youtube verknüpfen, Biertaucher Youtube Channel -
    • 0:29:13 schöner Leben: Martin macht Hollermarmelade mit Agar Agar -
    • 0:32:16 Florian hat 2 verschiedene Vertäge beim Handyanbieter Drei und lästert über nicht-funktionierende Services, Übernahme von Orange, neue Tarifmodelle etc und berichtet über den 3 Like home Shitstorm, Roaminggebühren, "Leecher" -
    • 0:40:55 schöner Reisen: Harald fährt mit der ÖBB über den Semmering in überfülltem, überlangem Zug .... und kommt pünktlich in Wien an. DBB Probleme in Mainz -
    • 0:45:12 Kino: Horst und Florian waren im Johnny Depp Western "Lone Ranger", Man's Night im Artis Kino. Dreckige, dunkle Westernserien: Hells on Wheel, Deadwood -
    • 0:51:00 Kino: Gregor war nicht begeistert von Elysium, ganz im Gegensatz zu Horst. War District 9 besser ? -
    • 0:55:22 Kino: Gregor hat isch zur Erholung von Elysium Kick-Ass2 angeschaut -
    • 0:57:00 schöner basteln: Harald hat einen Roboter gebastelt (Bausatz zum selberlöten) und mit 6lowPan Funkmodul ("Merkurboard") ausgerüstet. Demnächst im OSDomotics Shop -
    • 1:10:42 wir Biertaucher Unterstützer, wir bedanken uns für die 17 (!) Euro Flattr Unterstützung im Juli -
    • 1:11:23 Inhaltsverzeichnis vom neusten Bitcoin-Update Podcast -
    • -
    - - ]]>
    - -No -Harald fährt Zug und lötet Funkroboter, Kino: Elysium, Lone-Ranger, Kick-Ass2, Johnny zu Android-Sicherheitslücken, Martins über Hollermarmelade und Festplattenverschlüsselung, Florian über drei -Shownotes: http://goo.gl/TlDYSu http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1841007/Biertaucher-Podcast-Folge-118 -1:11:53 -Biertaucher, Podcast, 118, PGP, Verschlüsselung, Festplattenverschlüsselung, private key, Bitlocker, Skydrive, TrueCrypt, Android, Sicherheitslücke, CyanogenMod, Google+, Youtube, Holler, Holunder, Marmelade, Agar Agar, drei, 3likehome, ÖBB, DB, Mainz, Lo - -
    - - - - - Biertaucher Folge 117 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:117 - Wed, 14 Aug 2013 10:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher117.mp3 - - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/6uVm12 oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1802936/Biertaucher-Podcast-Folge-117 - - Bitte hier klicken um die Shownotes zur Folge 117 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:01:14 Martin (ist wieder da und) trinkt Weihnachtsbier -
    • 0:02:00 worüber wir reden werden -
    • 0:03:07 Martin war am Attac Sommerakademie (Eisenstadt): Reset Finance ... Finanzierung(sprodukte) der Natur (CO2 Zetrtikfikate, Regenwaldzertifikate in Brasilien, Ausgleichsflächen für Straßenbau etc) -
    • 0:09:30 Tragedy of the Commons -
    • 0:12:11 Alpenverein, Bewertung von Bergflächen, Freiwilligkeit bei Instandhaltungsarbeiten (Wanderwege etc) -
    • 0:16:15 GHregor warnt vor schlechten Analogien, Dienstleistungen mit freie Software (Ökosystem) -
    • 0:20:03 Google größer als Apple und Microsoft ? -
    • 0:22:00 Jhonny hat tauchen gelernt ( mit Tauchcomputer ), Sticktoff im Blut, Film: Rausch der Tiefe -
    • 0:34:47 verschlüsselte Kommunikation, Cryptocat, closed Source, Bradley Manning wird u.a. angeklagt weil er WGET benutzt hat -
    • 0:37:00 Lavapit (Texas, USA) schließt Email-Anonymisierungs-Service (NAA, Snowden), Silent Circle -
    • 0:40:00 Airsync Veröffentlichkeitsstrategie trotz Veröffentlichungsverbot -
    • 0:41:25 Holzhammerargumente wie "Ich hab nix zu verbergen", Spionagemistkübel in Großbritannien -
    • 0:46:22 Nokia zurück zu Android ? Microsoft, Hardcore Gaming. -
    • 0:51:20 OsDomotics: Roboter zum selber bauen, mit 6lowPan Funkmodul (siehe Fotos) -
    • 0:54:56 Gregor hat die Comicreihe Der Sandmann gelesen, 0:58:14 schlechter Internetempfang in österreichischen Zügen (ÖBB) -
    • 1:08:30 Harald's Erfahrungen mit Cash4Web (prepaid-Kreditkarte) -
    • 1:11:40 Sicherheitsleck bei Android's Random-Funktion (wichtig für Bitcoin-Walltes am Android), private key storage management, backup Strategie, Cloud Storage -
    • 1:18:08 Harald endeckt SSH: Tunneln mit IPV6 -
    • -
    - - ]]>
    - -No -Johnny lernt Tauchen, Harald baut Roboter, kauft Kreditkarten und erfreut sich an SSH, Gregor liest Sandmann-Comics, Horst schweigt, Martin ist wieder da und berichtet vom Attac-Treffen u.v.m -Shownotes: http://goo.gl/6uVm12 http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1802936/Biertaucher-Podcast-Folge-117 -1:22:13 -Biertaucher, Podcast, 117, Attac, CO2 Zertifikate, Regenwald, Finanzierungsprodukte, Tragedy of the commons, Alpenverein, Google, Tauchen, Tauchcomputer, Rausch der Tiefe, Bradley Manning, Snowden, NSA, Verschlüsselung, Demokratie, geheime Gerichtsbeschlü - -
    - - - - - - Biertaucher Folge 116 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:116 - Thu, 08 Aug 2013 06:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher116.mp3 - - Horst JENS, Florian SCHWEIKERT und Greor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/VNL2i1 oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1771380/Biertaucher-Podcast-Folge-116 - - Bitte hier klicken um die Shownotes zur Folge 116 zu sehen

    - Horst JENS, Florian SCHWEIKERT und Greor PRIDUN plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Kinder, Bücher, Filme, Spiele, Politik -Shownotes: http://goo.gl/VNL2i1 http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1771380/Biertaucher-Podcast-Folge-116 -1:33:13 -Biertaucher, Podcast, 116, ebook, ebook reader, pdf, epub, calibre, Kobo, Aura HD, Mörbisch, Radtour, Ungarn, Wälderbahn, Bregenzerwaldbahn, Vorarlberg, Rayman, Dominions4, Desura, Bier, Cousera, Social Psychology, Ipython, Mathematik, Unterricht, Gamecit - -
    - - - - - - - Biertaucher Folge 115 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:115 - Wed, 31 Jul 2013 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher115.mp3 - - Horst JENS, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/bC5FXy oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1731048/Biertaucher-Podcast-Folge-115 - - Bitte hier klicken um die Shownotes zur Folge 115 zu sehen

    - Horst JENS, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Kinder, Bücher, Filme, Spiele, Politik -Shownotes: http://goo.gl/bC5FXy http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1731048/Biertaucher-Podcast-Folge-115 -1:08:33 -Biertaucher, Podcast, 115, Kickstarter, Legends of Aethereus, Roboter, Schulen, Kindergärtern, Lego, Mindstorm, Löten, Barefoot, College, Ted, Bunker Roy, Solar Mamas, Humble Bundle, NSA, Prism, JonDo, Tor, Kryptoparty, Überwachungsstaat, Barnaby, Jack, H - -
    - - - - Biertaucher Folge 114 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:114 - Thu, 25 Jul 2013 12:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher114.mp3 - - Horst JENS und Andreas BIDER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/U1y9E3 oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1700969/Biertaucher-Podcast-Folge-114 - - Bitte hier klicken um die Shownotes zur Folge 114 zu sehen

    - Horst JENS und Andreas BIDER plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Horst und Andreas plaudern über freie Software -Shownotes: http://goo.gl/U1y9E3 http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1700969/Biertaucher-Podcast-Folge-114 -34:38 -Biertaucher, Podcast, 114, Python, Pyladies, CodeAcademy, Blender, Pacific Rim, Idris Elba, Rinko Kikuchi, Pymove, Metalab, Sphinx, Smarthome, Fotografie, Salzburg, Wandern, Mountainbike, Stadionbad, Couchsurfing, TheCave, Steam, Linux, Lubuntu, Cubeworld - -
    - - - - - Biertaucher Folge 113 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:113 - Wed, 17 Jul 2013 18:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher113.mp3 - - Gregor PRIDUN, Florian Schweikert, Horst JENS und Harald PICHLER plaudern wir über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/6va0h oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1663094/Biertaucher-Podcast-Folge-113 - - - Bitte hier klicken um die Shownotes zur Folge 113 zu sehen

    - Horst JENS, Florian SCHWEIKERT, Harald PICHLER und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:00:00 (Gregor bespritzt Horst mit Bierschaum) -
    • 0:01:12 Inhaltsverzeichnis -
    • 0:02:40 Florian war beim Open-Data Treffen der Wiener Linien (Open Goverment Data), wir philosophieren über klimatisierte Staßenbahnen und Routenplaner -
    • 0:22:17 Ankündigung: Smarthome-Stammtisch im Metalab, Mittwoch, 17-7-2013, 18:00 -
    • 0:23:48 Harald zeigt OSDomotics Hardware: RasperryPi mit Merkurboard (6lowPan, wetterfeste Sensorschachtel für Funkfühler, Messwabe, RaspberryPi und Merkurboard, Funkknoten, Mesh-Netze, ... ) -
    • 0:38:14 Horst beschäftigt sich mit dem Python-Dokumentationsersteller Sphinx sowie mit Github Pages -
    • 0:43:35 Gregor war tollpatschig: Utf-8 Encodingprobleme, Wordpress war nicht (!) schuld -
    • 0:46:55 Harald scheitert am Bezahlautomaten der Wiener Hauptbücherei (Passwortvergabe) -
    • 0:51:48 Blog zum Filmtrailer zum Buch: Der Quereinstieg (Störgeräusche beim Filmdreh) -
    • 0:54:40 Gregors Podcastempfehlungen: Mentally Insane (Befindlichkeitspodcast von den Factory/Fubar Machern) -
    • 0:56:44 Harald hat Desktop-Fernwartung per VNC ausprobiert -
    • 1:03:12 Horst stört sich an Taser Productplacement im Kinofilm "Ich - unverbesserlich 2" -
    • 1:09:14 Harald's Projekt der Woche: eine wasserdichte, wetterfeste Plastikschachtel für Funksensoren, mit wasserdichten Kabelöffnungen. Für Funksensoren / Funksteuerung. Näheres demnächst im Osdomotics Wiki -
    • 1:12:57 Gregors Filmtipp: Warm Bodies - Zombieromanze -
    • 1:17:30 Gregors Filmtipp (Augartenspitz Sommerkino): The long Goodbye -
    • 1:19:57 erfolgreich auf Indiegogo: Iron Sky the coming race -
    • 1:22:04 Inhaltsverzeichnis Bitcoin-Update Folge 34 -
    • -
    - - ]]>
    - -No -Filmkritik "Ich, Unverbesserlich 2", Smarthome Hardware, wetterfeste Funkfühler, Filmbesprechungen, Podcastempfehlung, Harald und der Bezahlautomat, OpenData der Wiener Linien uvm -Shownotes: http://goo.gl/6va0h bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1663094/Biertaucher-Podcast-Folge-113 - -01:22:41 -Biertaucher, Podcast, 113, Wiener Linien, OpenData, OSDomotics, VNC, Smarthome, Relaisbox, RaspberryPi, 6lowPan, Sphinx, Python, Kino, Ich einfach unverbesserlich 2, Bücherei, Open Goverment Data, 6lowPan, Wien, Zombies, Taser - -
    - - - - - Biertaucher Folge 112 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:112 - Wed, 10 Jul 2013 07:10:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher112.mp3 - - Gregor PRIDUN lauscht Horst JENS, Bernd SCHLAPSI und Hop beim Berichten von der Europython Konferenz. Und natürlich plaudern wir über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/XmLXz oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1623952/Biertaucher-Podcast-Folge-112 - - - Bitte hier klicken um die Shownotes zur Folge 112 zu sehen

    - Horst JENS, Bernd SCHLAPSI und Hop erzählen Gregor PRIDUN von der Europython Konferenz undplaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:01:04 Erratum von Gregor: Planes war ein Mockbuster, aber kein original Disney-Film -
    • 0:02:00 Bericht von Europython 2013 -
    • 0:27:48 Aufruf zur nächsten Python User Group - PyUGAT am 24-7-2013 -
    • 0:28:47 Gregor hat Calibre Sever installiert -
    • 0:39:00 Musikplayer / Musikverwaltungssoftware, Squeezebox, podcasts mit doppelter Geschwindigkeit abspielen, -
    • 0:44:07 Gregors Trashwarnung: Wargames 2 -
    • 0:47:38 Hop's Filmtipp: am 20. 7. ? Kino im Kesselhaus in Krems, Glatt und Verkehrt Festival: Sugarman -
    • 0:50:00 Inhaltsverzeichnis Bitcoin-Update -
    • -
    - - ]]>
    - -No -Horst, Bernd und Hop berichten dem Gregor, der ausgiebigst trashige Science Fiction Filme geguckt hat und einen Calibre Server aufgesetzt hat, von der Europython Konferenz vergangene Woche. -Shownotes: http://goo.gl/XmLXz bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1623952/Biertaucher-Podcast-Folge-112 - -00:50:40 -Biertaucher, Podcast, 112, Calibre, Python, Europython, Florenz, Italien, Hotel, Disney, Blender, ebooks, Wargames2, Krems, Sugarman - -
    - - - - Biertaucher Folge 111 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:111 - Wed, 03 Jul 2013 07:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher111.mp3 - - Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/wLSJN oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1589398/Biertaucher-Podcast-Folge-111 - - - Bitte hier klicken um die Shownotes zur Folge 111 zu sehen

    - Johnny ZWENG und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:02:30 Inhalt: Johnny hat Bitmessage ausprobiert, Gregor's Beagle Bone Black ist angekommen, Gregor und Wordpress -
    • 0:04:24 Bitmessage, ein asynchrones Kommunikationsmittel (wie email) mit Verschlüsselung. Ersatz für GnuPG ? Bitmessage verschlüsselt nicht nur den Inhalt, sondern auch die Verbindungsdaten -
    • 0:19:48 Cryptocat, Chat - Verschlüsselung. Schwachstellen bei https Verschlüsselung mit Zertifikaten. -
    • 0:23:55 Wie sicher ist die Verschlüsselung bei Google Hangout ? -
    • 0:26:36 Gregor und sein Beagle Bone Black, Linux Shells für Windows -
    • 0:43:36 Gregor hat Wordpress am Raspberry Pi ausprobiert und findet die Pluginverwaltung besser gelöst als bei Joomla -
    • 1:01:18 Calibre Alternative Cops ? -
    • 1:02:00 Horst berichtet von der Europython 2013 aus Florenz von der Europython 2013. -
    • 1:05:00 Inhaltsverzeichnis vom neuesten bitcoinupdate.com -
    • - -
    - - ]]>
    - -No -Beagle Bone Black, Cryptocat, Bitmessage, Verschlüsselung, Europython uvm -Shownotes: http://goo.gl/wLSJN bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1589398/Biertaucher-Podcast-Folge-111 - -1:05:49 -Biertaucher, Podcast, 111, Sommerkino, Augartenspitz, Bitmessage, Verschlüsselung, GnuPG, Cryptocat, https, Zertifikate, Google Hangout, Beagle Bone Black, Shell, Wordpress, Joomla, RaspberryPi, Europython - -
    - - - - Biertaucher Folge 110 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:110 - Wed, 26 Jun 2013 12:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher110.mp3 - - Horst JENS und Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/xquXA oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1550072/Biertaucher-Podcast-Folge-110 - - - Bitte hier klicken um die Shownotes zur Folge 110 zu sehen

    - Johnny ZWENG, Horst JENS und Gregor PRIDUN plaudern über freie Software, Kickstarter-Projekte, schlechte Laune, Kinofilme, Bitcoins und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - - Shownotes sind in Arbeit - -
    - - ]]>
    - -No -Shownotes sind in Arbeit -Shownotes: http://goo.gl/xquXA bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1550072/Biertaucher-Podcast-Folge-110 - -0:34:15 - -Biertaucher, Podcast, 110, Kino, Monster University, Data Dealer, Kickstarter, Massive Chalice, Termperaturmessung, Beagle Board, Balluch, Terrorparagraph, Österreich - -
    - - - - Biertaucher Folge 109 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:109 - Thu, 20 Jun 2013 17:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher109.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/IeOp3 oder http://biertaucher.at Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1513767/Biertaucher-Podcast-Folge-109 - - - Bitte hier klicken um die Shownotes zur Folge 109 zu sehen

    - Horst JENS und Gregor PRIDUN plaudern über freie Software, Bitcoins und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - - Shownotes sind in Arbeit - -
    - - ]]>
    - -No -Shownotes sind in Arbeit -Shownotes: http://goo.gl/IeOp3 bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1513767/Biertaucher-Podcast-Folge-109 - -0:39:08 - -Biertaucher, Podcast, 109, Desura, Steam, Kino, Science-Fiction-im-Park, OwnCloud - -
    - - - - - Biertaucher Folge 108 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:108 - Wed, 12 Jun 2013 22:40:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher108.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Andreas LEHRBAUM plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/8RDzn bzw. http://biertaucher.at . Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1470486/Biertaucher-Podcast-Folge-108 - - - Bitte hier klicken um die Shownotes zur Folge 108 zu sehen

    - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern mit Andreas LEHRBAUM über freie Software, Bitcoins und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - - Shownotes sind in Arbeit - -
    - - ]]>
    - -No -Shownotes sind in Arbeit -Shownotes: http://goo.gl/8RDzn bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1470486/Biertaucher-Podcast-Folge-108 - -1:23:46 - -Biertaucher, Podcast, 108, Bitcoins, Mining, HumbleBundle - -
    - - - - - Biertaucher Folge 107 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:107 - Thu, 06 Jun 2013 10:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher107.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Florian SCHWEIKERT plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/FA6Oo bzw. http://biertaucher.at . Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1435022/Biertaucher-Podcast-Folge-107 - - - Bitte hier klicken um die Shownotes zur Folge 107 zu sehen

    - Horst JENS und Gregor PRIDUN plaudern mit Florian SCHWEIKERT und Johnny ZWENG über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Johnny ist verlobt und hat ein kaputtes Handy. Gregor schaut sehr viele sehr schlechte Gruselfilme. Horst vergleicht Steam mit Desura. Florian berichtet über die Open-Data Award Verleihung an Engerwitzdorf -Shownotes: http://goo.gl/FA6Oo bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1435022/Biertaucher-Podcast-Folge-107 - -1:27:47 - -Biertaucher, Podcast, 107, Hangover3, Steam, Desura, Kickstarter, Massive Chalice, Foxconn, Mozilla, Apple, Fairphone, Firefox, Flattr, Amazon, AFlattr, Haggis, Körperwelten, Narrenturm, Body Browser, Science Fiction im Park, Army of Darkness, - -
    - - - - - - Biertaucher Folge 106 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:106 - Fri, 31 May 2013 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher106.mp3 - - Horst JENS und Gregor PRIDUN plaudern mit Florian SCHWEIKERT über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/hdb5A bzw. http://biertaucher.at . Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1399471/Biertaucher-Podcast-Folge-106 - - - Bitte hier klicken um die Shownotes zur Folge 106 zu sehen

    - Horst JENS und Gregor PRIDUN plaudern mit Florian SCHWEIKERT über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Gregor hat ein Buch von Eva Menasse gelesen. -Shownotes: http://goo.gl/hdb5A bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1399471/Biertaucher-Podcast-Folge-106 - -0:54:07 - -Biertaucher, Podcast, 106, Python, Frauen, Pyladies, Termin, Wien, Eva Menasse, Buch, Quasikristalle -
    - - - - Biertaucher Folge 105 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:105 - Wed, 22 May 2013 10:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher105.mp3 - - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/92zsP bzw. http://biertaucher.at . Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1369256/Biertaucher-Podcast-Folge-105 - - - Bitte hier klicken um die Shownotes zur Folge 105 zu sehen

    - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Gregor berichtet von der re:publica Konferenz in Berlin und war nicht sehr begeistert von der Google IO Keynote. Horst war im Kino (Epic), spielt Scratch und liest "Emergency" von Neil Strauss. Gregor hört Podcast und sah "Iron Man 3" -Shownotes: http://goo.gl/92zsP bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1369256/Biertaucher-Podcast-Folge-105 - -1:14:12 - -Biertaucher, Podcast, 105, publica, epic, kino, emergency, buch, iron man 3, Vortrag, Konferenz, Berlin, Sractch, Playmobil, Nürnberg, Insert Moin, Youtube, Bericht -
    - - - - Biertaucher Folge 104 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:104 - Thu, 16 May 2013 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher104.mp3 - - Horst JENS, Johnny ZWENG, Florian SCHWEIKERT und Thomas KRONSTEINER plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/P7rt1 bzw. http://biertaucher.at . Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1350374/Biertaucher-Podcast-Folge-104 - - - Bitte hier klicken um die Shownotes zur Folge 104 zu sehen

    - Horst JENS und Johnny ZWENG Florian SCHWEIKERT und Thomas KRONSTEINER plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:01:20 Florian über seinen Vortrag bei den Linuxwochen über RasperryPi -
    • 0:17:30 Meldung von Sven Guckes: Grüsse an die Crew und die Hörer -
    • 0:18:00 De-Mail -
    • 0:24:00 Bitcoins - Johnny am Bitcoinstreffen -
    • 0:30:50 Thomas ist dazugekommen. Es geht über Währungen/Tauschhandel. -
    • 0:33:20 Schuldenclearingsystem Ripple -
    • 0:39:20 Amerikanische Politik - Homomorphe Kryptographie - Red Phone -
    • 0:45:40 Deutschland Einschränkung von Software Patenten -
    • 0:47:30 Thomas war im Kino: "Star Trek - Into Darkness" -
    • 0:49:30 Johnny vertreibt eine Taube aus dem Stiegenhaus -
    • 0:51:20 Horst schaut Youtube: The Mythical Show gesehen. -
    • 0:54:00 Opendata - Wiener Linien Petitions Crew möchte gerne ÖBB Daten -
    • 0:58:00 Florian - Open Streetmap Gespräche mit Flughafen Wien -
    • 1:04:00 Kickstarterprojekte - Jack the Lines - Sons of Noah -
    • 1:06:00 Ingress -
    • 1:13:00 Arbeiterkammer -
    • 1:17:00 Vorratsdatenspeicherung und Mobilunkbetreiber -
    • 1:22:00 Observe Hack and Make -
    • -
    - - ]]>
    - -No -Jonny hat einen Vogel befreit, Sven lässt und grüßen, Florian's RaspberryPi Vortrag, ätzt über De-Mail und war für Openstreetmap am Flughafen, Thomas hat Star-Trek im Kino angeschaut, Horst schaut Youtube, Gregor fehlt immer noch. -Shownotes: http://goo.gl/P7rt1 bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1350374/Biertaucher-Podcast-Folge-104 - -1:29:01 - -Biertaucher, Podcast, 104, Vorratsdatenspeicherung, Kino, Ingress, Kickstarter, Openstreetmap, Jack the Lines, Sons of Noah, Flughafen Wien Schwechat, Openstreetmap, Youtube, The Mythical Show, Startrek, Homomorphe Kryptographie, Ripple, Bitcoin, DeMail - -
    - - - - - - - Biertaucher Folge 103 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:103 - Wed, 08 May 2013 10:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher103.mp3 - - Horst JENS, Johnny ZWENG, Sven Guckes, Motz und Gäste plaudern über freie Software und andere Nerd-Themen. Shownotes auf http://goo.gl/dPl3w bzw. http://biertaucher.at . Bitte nach Möglichkeit trotzdem diesen Flattr-Link anlicken: http://flattr.com/thing/1326978/Biertaucher-Podcast-Folge-103 - - - Bitte hier klicken um die Shownotes zur Folge 103 zu sehen

    - Horst JENS und Johnny ZWENG Sven GUCKES, Motz und Gäste plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:00:57 Felix über Homomorphe Kryptologie, Helib auf GitHub -
    • 0:08:00 Sven Guckes über Linuxkongresse im allgemeinen und Graz, Eisenstadt und Wien im Besonderen, Michael über Svens Vortrag -
    • 0:13:00 Sven über Kolloboration im Internet, Google Keep, -
    • 0:15:00 Datenspuren-Kongress in Dresden -
    • 0:17:17 Johnny hat einen Bitcoin-Miner gebaut -
    • 0:26:40 Sven über nur-Tastatur-Rechner, FPGA, interne Bitcoin-Netzwerke -
    • 0:29:00 Johnny über LiteCoin -
    • 0:31;00 Sven und Motz über "trojanische Tastaturen" -
    • 0:32:43 Michael über Compiz für Sehbehinderte, blinde Computer-user, Braille-Zeilen, Text-to-Speech, -
    • 0:36:44 wir nörgeln über Flash -
    • 0:39:37 Motz spricht über Crawl, sein derzeitiges Lieblings-Rogue-Like, welches er im Textmodus spielt und welches er nicht beenden will obwohl er schon "gewonnen" hat -
    • 0:42:00 Horst hat sich Scary Movie V angeschaut (Spoiler) -
    • 0:44:08 Sven's Nachtrag zu den Linuxwochen Linz -
    • 0:45:46 Horst freute sich über den Education-Track auf den Linuxwochen Wien -
    • 0:47:24 VlizedLab Project Projekt -
    • 1:06:50 Veranstaltungshinweis: Hackcamp in Holland: OHM 2013 - -
    - - ]]>
    - -No -Felix spricht über homomorphe Verschlüsselung, Sven berichtet von Linuxtagen, Michael erzählt von schnellen Braille-Zeilen, Motz spielt immer noch Crawl im Textmodus, Horst war im Kino und Johnny baut sich einen Bitcoin-Miner. -Shownotes: http://goo.gl/dPl3w bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1326978/Biertaucher-Podcast-Folge-103 - -1:10:02 - -Biertaucher, Podcast, 103, Homomorphe Kryptologie, LinuxTage, Sven Guckes, Google Keep, Bitcoin, Mining, nur Tastatur Rechner, gpga, LiteCoin, Tastatur, blind, Compiz, Braille-Zeilen, Flash, Crawl, Kino, Scary Movie V, VlizedLab, OHM - -
    - - - - - Biertaucher Folge 102 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:102 - Fri, 03 May 2013 10:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher102.mp3 - - Gregor PRIDUN, plaudert mit Florian Schweikert und Motz und später mit Horst JENS über freie Software und andere Nerd-Themen. Diesmal ausnahmsweise keine detaillierten Shownotes auf http://biertaucher.at . Bitte nach Möglichkeit trotzdem diesen Flattr-Link anlicken: http://flattr.com/thing/1311949/Biertaucher-Podcast-Folge-102 - - - Bitte hier klicken um die Shownotes zur Folge 103 zu sehen

    - Gregor PRIDUN und Florian Schweikert und Motz und Horst JENS plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • Linuxtage Graz
    • -
    • diesmal leider keine genaueren Shownotes. Einfach reinhören !
    • -
    - - ]]>
    - -No -Bericht von Linuxtagen Graz uvm -Shownotes: http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1311949/Biertaucher-Podcast-Folge-102 - -1:17:47 - -Biertaucher, Podcast, 102, Linuxtage Graz - - -
    - - - - - - - Biertaucher Folge 101 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:101 - Thu, 25 Apr 2013 18:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher101.mp3 - - Gregor PRIDUN plaudert mit Horst JENS über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags etc. gibt es in den Shownotes: http://goo.gl/YKBsu (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1293028/Biertaucher-Podcast-Folge-101 - - - Bitte hier klicken um die Shownotes zur Folge 101 zu sehen

    - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Bericht von der MakeMunich Messe in München . Gregor installiert OwnCloud auf seinem RaspberryPi, hört Podcasts und war im Kino. Horst freut sich über einen Kickstarter-Nachbau von Master of Magic. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/YKBsu bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1293028/Biertaucher-Podcast-Folge-101 - -0:51:59 - -Biertaucher, Podcast, 101, LateX, Make, München, PartTimeScientist, TableTop, HackerspaceShop, Volksbegehren, SpringBreakers, Life of Pi, Black Mirror, Kickstarter, Master of Magic, Worls of Magic, Python - - -
    - - - - - Biertaucher Folge 100 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:100 - Tue, 16 Apr 2013 19:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher100.mp3 - - Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG, Horst JENS und viele Gäste plaudern über freie Software und andere Nerd-Themen. Bitcoin-News mit Andreas LEHRBAUM und Andreas PETERSSON. Interview mit @Floor. Mehr Information, Links, Bilder, Videos, Tags etc. gibt es in den Shownotes: http://goo.gl/kYH6w (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1260306/Biertaucher-Podcast-Folge-100 - - - Bitte hier klicken um die Shownotes zur Folge 100 zu sehen

    - Gregor PRIDUN Florian SCHWEIKERT, Johnny ZWENG, Horst JENS und viele Gäste plaudern über freie Software und andere Nerd-Themen. Bitcoin-News mit Andreas LEHRBAUM und Andreas PETERSSON. Interview mit @Floor. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:06 Gelächter weil Hop sein Bier schäumt, Begrüßung -
    • 0:02:26 Florian hat ein neues Bierprodukt mitgebracht: Zipfer Orangen-Limetten Radler -
    • 0:03:20 Bericht "Coders without borders" und Vienna.rb (ruby meeting), siehe auch Interview mit @Floor in diesem Podcast -
    • 0:05:08 CouchDB und No-SQL-Datenbanken , Gpodder.net, -
    • 0:11:35 Hop lädt ein: Python User Group Austria Treffen am Sonntag im Metalab. -
    • 0:12:43 Andreas Petersson über Bitcoin und Bitcoinpodcast, andere virtuelle Währungen, -
    • 0:19:39 Peter spricht über sein Smarthome -
    • 0:21:13 Johnny über blindenfreundliche Bankomaten mit Kopfhöreranschluss und Bezahlen mit Quick NFC Karte, Security -
    • 0:38:30 Smarthomes hacken -
    • 0:42:00 LateX Vorlagen, LateX-Editoren -
    • 0:49:00 Gregor ärgert sich über seinen Kobo Ebook-Reader. Calibre ebook-Verwaltung, epub Format. -
    • 1:01:30 Buch von Berharnd Ludwig: Die "Morgen darf ich essen, was ich will"-Diät" Intermitted Fasting -
    • 1:03:14 Buch: Arnold Geiger: Alles über Sally -
    • 1:04:37 TV-Serie: Black Mirror unpeinliche Science Fiction und Technik -
    • 1:09:19 Volksbegehren gegen Kirchenprivilegien, Volskbegehren für mehr Demokratie -
    • 1:11:22 Interview mit Floor über Coders without Borders -
    • 1:19:11 Bitcoin-News -
      • -
      • Neues all-time-high und crash -
      • Rekord: 180 Mio USD Handelsvolumen pro Woche -
      • Bitcoin24 bugs und Kontensperre -
      • Winklevoss Zwillinge investieren in Bitcoin -
      • Dan Kaminsky rekapituliert Bitcoin -
      • Paul Krugman versteht Bitcoin immer noch nicht -
      • GIMP & Vuze akzeptieren Spenden in Bitcoin -
      • Neuer daily Bitcoin podcast -
      • Was sind Namecoins -
      -
    - - ]]>
    - -No - Der 100. Biertaucherpodcast mit jeder Menge Gäste: Peter vom Smarthome Podcast, Hop von Python User Group Austria, Andreas von Bitcoin Austria, Bernd von Gpodder.net. Außerdem Interview mit @Floor über Coders without Borders. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/kYH6w bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1260306/Biertaucher-Podcast-Folge-100 - -2:15:04 - -Biertaucher, Podcast, 100, CouchDB, Ruby, Coders without borders, Bitcoin, Smarthome, Bankomat, Quick, NFC, LaTeX, ebook reader, epub, Diät, Alles über Sally, Buch, TV, Black Mirror, Volksbegehren - -
    - - - - Biertaucher Folge 099 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:099 - Wed, 10 Apr 2013 15:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher099.mp3 - - Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin-News mit Andreas LEHRBAUM, Andreas PETERSSON und Markus. Mehr Information, Links, Bilder, Videos, Tags etc. gibt es in den Shownotes: http://goo.gl/oM2uz (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1241688/Biertaucher-Podcast-Folge-099 - - - Bitte hier klicken um die Shownotes zur Folge 099 zu sehen

    - Gregor PRIDUN Florian SCHWEIKERT, Johnny ZWENGund Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin-News mit Andreas LEHRBAUM, Andreas PETERSSON und Markus. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:01:20 Florian beantwortet Gregors brennende Frage: Wo in Wien gibt es Haggis zu kaufen ? Beim Boobys Foodstore -
    • 0:04:21 Johnny hat erstmals auf Bitcoin.de Bitcoins verkauft -
    • 0:15:17 Die Ö1 App erlaubt es das Ö1Radioprogramm 7 Tage lang nachzuhören. Andreas Lehrbaum wurde im Ö1 Radio in der Sendung Digital Leben interviewt. -
    • 0:17:13 Gregor bürgert sich ein: Nach Bürgerkarte hat er sich einen Büchereiausweis geholt und damit elektronische, DRM-belastete, ebooks ausgeborgt. Ausborgen von digitalen Medien (Filmen, Musik etc) möglich. -
    • 0:30:14 Johnny war in Barcelona und hatte unerwartet Glück mit seinem Internet Roaming-Paket. Außerdem erzählt er von seiner Webcam-Wohnungsüberwachung. -
    • 0:39:19 Florian hat Gnome 3.8 auf Arch Linux ausprobiert -
    • 0:55:33 Horst hat sich nach langer Pause die Zeitschrift Yps gekauft -
    • 1:02:05 Johny spielt: fernbedienter Helium Fisch-Zeppelin. -
    • 1:05:25 Florian freut sich über Fortschritte beim Open Source Real-Time-Strategy Spiel 0_A.D.. -
    • 1:12:56 Gregors Podcastempfehlungen: Christian Schmitz Retro Spiele Podcast Stay Forever und 80er Jahre Podcast young in the 80 -
    • 1:19:21 Inspiriert von CRE "Hackerfilme" hat sich Gregor schlechte Filme angeschaut: Das Netz 2.0 -
    • 1:24:34 Florian und Gregor ereifern sich über schlechte SF Filme: Starcrash mit David Hesselhoff -
    • 1:27:05 Einladung: Mitmachen beim 100. Biertaucherpodcast im alten AKH, Hof 2 vor dem Hörsaalzentrum -
    • 1:28:30 Bitcoin-News mit Andreas Lehrbaum und Andreas Petersson und Markus
    • -
    - - ]]>
    - -No -Gregor schaut schlechte Filme und borgt sich in der Bücherei ebooks mit DRM aus, Florian kauft Haggis und benutzt Gnome 3.8, Johnny verkauft Bitcoins und spielt mit Helium-Zeppelinen, Horst liest YPS.Und Bitcoin-News! -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/oM2uz bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1241688/Biertaucher-Podcast-Folge-099 - -2:04:53 - - Biertaucher, Podcast, 099, Haggis, Bitcoin, Wien, Stadtbücherei, ebook, DRM, Barcelona, Roaming, Gnome, Yps, Zeitschrift, Helium, Zeppelin, 0AD, StayForever, MadTV, TheNet, Starcrash, Bitcoinnews - -
    - - - - - - Biertaucher Folge 098 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:098 - Tue, 02 Apr 2013 15:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher098.mp3 - - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/yIwPa (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1223701/Biertaucher-Podcast-Folge-098 - - - Bitte hier klicken um die Shownotes zur Folge 098 zu sehen

    - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Gregor hat sich eine Bürgerkarte besorgt, Gnome 3.8 bewundert und Sweettooth ausgelesen. Horst hat einen Blender Workshop abgehalten und lernt LaTeX. Gregor erhält vom Rollenspiel Paranoia, und beide schauen wir viel zu viel fern. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/yIwPa bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1223701/Biertaucher-Podcast-Folge-098 - -1:29:26 - -Biertaucher, Podcast, 098, Petition, Bürgerkarte, Wiener Linien, offene Daten, TheOldReader, RSS Reader, Comic, Sweettooth, Latex, Dungeon Slayer, Magazin, CRE, Hackerfilme, Paranoia, Blender, Batman, Stargate Atlantis, Alice, Office Space, Wargames - -
    - - - - - Biertaucher Folge 097 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:097 - Tue, 26 Mar 2013 23:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher097.mp3 - - Gregor PRIDUN, Horst JENS, Harald PICHLER und Motz plaudern über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON und Andreas LEHRBAUM. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/kSBVc (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1208063/Biertaucher-Podcast-Folge-097 - - - Bitte hier klicken um die Shownotes zur Folge 097 zu sehen

    - Gregor PRIDUN, Horst JENS sowie die Gäste Harald PICHLER und Motz plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON und Andreas LEHRBAUM. . -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:01:08 Gregor erlebte die Auspackung eines Raspberry Pi's und wundert sich über die Verpackungen -
    • 0:03:17 TV-Serienempfehlung von Harald: Stargate Atlantis, außerdem reden wir über Firefly sowie Eureka -
    • 0:09:44 Florian ruft auf zum Unterzeichnen der Open-Data Petition an die Wiener Linien -
    • 0:11:26 Harald erzählt vom OSDomotics-Messestand auf den Linuxtagen in Chemnitz vorige Woche: SmartSara Projekt, 6LowPan (Das Internet der Dinge) Funksensoren für Haustechnik, Contiki OS, SIP. Produktbesprechungen über OSDomotics Produkte. -
    • 0:42:40 Gnublin Elektronikfirma mit eigenem embedded Projcets Journal (creative-commons lizensiert!), der Open-Source Zeitschrift zum Mitmachen -
    • 0:46:16 Neuigkeiten vom OSDomotics-Shop und vom Hackerspace Shop -
    • 0:49:10 Ubuntu-Version für China, Samsung will eigenes OS, Software Patente, Nokia, Open-Source-Philosophie, Microsoft, EU-Einheitspatent -
    • 1:09:36 Motz berichtet über das Rogue-Like Rollenspiel Crawl (Dungeon Crawl Stone Soup), welches er auf PC und Android spielt. Gregor veweist auf die Nethack Folge von Chaos-Radio Express. Motz mag die Komfortfunktionen von Crawl (Autoexplore, Autocombat). -
    • 1:21:33 Gregor erzählt über seine Erlebnisse mit dem Pen' & Paper">RollenspielPandora -
    • 1:33:00 Bitcoin News mit Andreas Lehrbaum und Andreas Petersson: überblicks-Inhaltsverzeichnis -
      • neues Alltime-High beim Bitcoin-Kurs -
      • Bitcoin-Gesamtvermögen -
      • Anstieg der Hashleistung im Netz -
      • Al Gore mag Bitcoins
      • -
      -
    - - ]]>
    - -No -Motz spielt Dungeon Crawl, Harald schaut Stargate Atlantis (und erzählt über 6LowPan Funksensoren), wir schimpfen auf (Software)Patente, Gregor spielt Paranoia und wundert sich über Verpackungen, Aufruf OpenData-Petition Wiener Linien -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/kSBVc bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1208063/Biertaucher-Podcast-Folge-097 - -2:02:56 - -Biertaucher, Podcast, 097, OSDomotics, Haustechnik, 6LowPan, RaspberryPi, Verpackung, Stargate Atlantis, Haustechnik, SmartSara, OpenData, Wiener Linien, Petition, embedded projects journal, Gnublin, Pandora, Rollenspiel, Crawl, Bitcoin, Patente - -
    - - - - Biertaucher Folge 096 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:096 - Tue, 19 Mar 2013 22:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher096.mp3 - - Gregor PRIDUN, Florian Schweikert, Christoph "Hop" Schindler, Horst JENS, Johnny ZWENG, Thomas KRONSTEINER plaudern über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON und Andreas LEHRBAUM. Interview mit Michael Nußbaumer. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/rmu79 (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1190160/Biertaucher-Podcast-Folge-096 - - - Bitte hier klicken um die Shownotes zur Folge 096 zu sehen

    - Gregor PRIDUN, Florian Schweikert, Christop "Hop" Schindler, Horst JENS Johnny ZWENG und Thomas KRONSTEINER plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON und Andreas LEHRBAUM. Interview mit Michael NUSSBAUMER. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:57 Horst war auf den Chemnitzer Linuxtagen (siehe Fotogalerie). Hinweis auf Interview mit Michael Nußbaumer, Herausgeber vom TAU-Magazin -
    • 0:01:58 Teaser Bitcoin-News -
    • 0:02:40 Chemnitzer Linuxtage #clt2013 Hinfahrt, Gastgeschenke für Geany und Django, LaTeX -
    • 0:10:49 Hop berichtet vom PyUgat-Treffen und Coding Dojo am 13-3-2013 im Metalab, Django -
    • 0:17:07 Florian über #clt2013, Chemnitz als Stadt -
    • 0:21:15 Verpflegung und Backstage Bereich auf #clt2013, Reactos_OS -
    • 0:27:10 Hop über PyUgat, Metalab Führung für Neubesucher -
    • 0:29:20 Horst über Kurt Gramlich Skole-Linux Vortrag, Fail in Rheinland-Pfalz, Florian über FSFE Vortrag -
    • 0:46:20 Podcastempfehlung: Wir müssen reden, zwanzich-fuffzehn, die Wiederholungstäter -
    • 0:50:30 Johnny war offline -
    • 0:56:11 Horst über #clt2013 Organisation, Bankett , OpenOffice, Libreoffice -
    • 0:58:00 Google Reader stirbt, Alternativen: NewsBlur, Feedly -
    • 1:12:20 #clt2013 Kinderbetreuung, RaspberryPi Basteln, Arbeitskräftemangel in Sachsen, Rekrutieren, OsDomotics, Haustechnik -
    • 1:25:00 Horsts ätzende Tipps für Messestandbetreuer -
    • 1:27:27 Florian über Vortrag: Nebenläufigkeit in Python -
    • 1:36:55 Gregor hat den "schlechtesten Film aller Zeiten" gesehen: Das A-Team. TV-Serien Dr. Who, Sherlock -
    • 1:43:28 Thomas über Italo-Western und Django -
    • 1:51:00 Bitcoin-News mit Andreas & Andreas -
    • 1:51:58 Bankkontonenraum in Zypern -
    • 2:07:00 neues Bicoin-Kurshoch -
    • 2:18:00 Bitcoin schlägt Dollar bei Google Search Trends -
    • 2:20:31 Interview mit TAU Magazin Herausgeber Michael Nußbaumer -
    • -
    - - ]]>
    - -No -Horst und Florian waren in Chmenitz bei den Linuxtagen 2013, Gregor schläft beim schlechtesten Film der Welt im Kino ein und hört gute Podcasts, Johnny war offline, Hop war happy im Metalab, Thomas leidet unter seiner Personalpolitik. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/rmu79 bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1190160/Biertaucher-Podcast-Folge-096 - -2:48:12 - -Biertaucher, Podcast, 096, clt2013, Chemnitz, Linuxtage, Geany, Django, Python, Pyugat, Coding-Dojo, Kurt Gramlich, SkoleLinux, FSFE, zwanzichfuffzehn, NewsBlur, Google Reader, Feedly, Osdomotics, Haustechnik, A-Team, Bitcoin, TAU - -
    - - - - - - Biertaucher Folge 095 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:095 - Wed, 13 Mar 2013 17:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher095.mp3 - - Gregor PRIDUN, Florian Schweikert, Hop und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON und Andreas LEHRBAUM und Johannes. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/QqB0o (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1175519/Biertaucher-Podcast-Folge-095 - - - Bitte hier klicken um die Shownotes zur Folge 095 zu sehen

    - Gregor PRIDUN, Florian Schweikert, Hop und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON und Andreas LEHRBAUM und Johannes. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      -
    • 0:00:00 Grüße von Markus aus Deutschland -
    • 0:00:23 Hop hat Legend of Grimrock gespielt (am Mac) und erinnert sich an Eye of Beholder -
    • 0:10:30 Florian hat sich Wayland X-Nachfolger angeschaut (auf Arch Linux) und zeigt schiefe Terminalfenster -
    • 0:22:29 Hop hat gelesen: The End of Money and the Future of Civilization -
    • 0:28:00 Credit clearing circles -
    • 0:33:42 Rant: Florian hat versucht ein ÖBB-Ticket per Internet zu kaufen... -
    • 0:40:30 Podcastempfehlung: Gregor hörte zu viele Apple-Podcasts und hört deshalb Nerds.fm (Programmierpodcast) und Der Weisheit... (letzter Schluss) von Monoxyd -
    • 0:45:30 Ankündigung: Coding Dojo in der Python User Group Austria (PyUgat) am 13-3-2013 im Metalab, Python-Frauen: Pyladies -
    • 0:52:38 Horst' Buchempfehlung: Dodger (Terry Pratchett) ( Wikipedia Eintrag ) -
    • 0:54:44 Hop's Ipad-Empfehlung Interactive Ipad - Scheibenwelt-App (Karte von Ankh-Morkop) -
    • 0:57:27 Gregor empfiehlt Android Tablet-Apps für kleine Kinder: interaktives Kinderbuch "little Red" -
    • 1:02:08 Meldungen: Telepolis Artikel über Kulturflatrate in Deutschland: 5,70 Euro pro Jahr, Spielgel Artikel über unnötige Verleger und Buchpreisbindung -
    • 1:04:50 Gimp-Magazin 3 ist online mit Vergleich Photoshop vs. Gimp -
    • 1:09:50 Dieter Hildebrand sucht Crowd-Sponsoren für Kabarettsendung -
    • 1:12:00 freies Buch: Hacking the X-Box -
    • 1:13:08 Gregor hat gelesen: Neal Stevenson: Anathem , außerdem plaudern wir über Stevensson'S Barock-Cycle, -
    • 1:16:00 Gregor hat gelesen: Der Kameramörder: Roman und Das bin doch ich, beide von Thomas Glavinic. -
    • 1:22:52 Florian *lobt* (!) die Mistkübelreflektoren auf der Donauinsel (MA 48) -
    • 1:25:26 Bitcoin-News mit Andreas Lehrbaum und Andreas Petersson und Johannes. Johannes spricht über sein Projekt: Dokumentationsfilm über Bitcoins Bitcoindocumentary.org -
    • 1:35:40 Kursentwicklung, neues all-time-high -
    • -
    - - ]]>
    - -No -Podcastempfehlungen, Florian scheitert bim Fahrkartenkauf, wir rezensieren Bücher, Legend of Grimrock durchgespielt Florian spielt mit schiefen Terminalfenstern (Wayland), Bitcoin-Film -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/QqB0o bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1175519/Biertaucher-Podcast-Folge-095 - -2:36:26 - -Biertaucher, Podcast, 095, Dodger, Terry Pratchett, Python, Wayland, Bitcoin, ÖBB, Legend of Grimrock, Monoxyd, The End of Money, Pyladies, Öbb, Kinderapps, Kulturflatrate, Buchpreisbindung, Dieter Hildebrand, Hacking the Xbox, Anathem, Thomas Glavinic - -
    - - - - - Biertaucher Folge 094 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:094 - Tue, 05 Mar 2013 12:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher094.mp3 - - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON und Andreas LEHRBAUM. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/I2oO4 (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1160481/Biertaucher-Podcast-Folge-094 - - - Bitte hier klicken um die Shownotes zur Folge 094 zu sehen

    - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON und Andreas LEHRBAUM. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No - Linus Thorvald schimpft, Horst hustet, Gregor will weniger reden und Martin Mayr fehlt uns. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/I2oO4 bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1160481/Biertaucher-Podcast-Folge-094 - -1:34:29 - -Biertaucher, Podcast, 094, Geeklove, Kurt Razelli, Linus Thorvald, Evernote, Hack, Stigma Videospiele, Leistungsschutzrecht, Gamelab, Rebell, Open Education Week, NFC, TAU Magazin, A for Anarchy, Tech Tools for Acitivsts, Freedom Box, Gemeinschaftsgarten - -
    - - - - - - Biertaucher Folge 093 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:093 - Thu, 28 Feb 2013 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher093.mp3 - - Gregor PRIDUN , Florian SCHWEIKERT, und Horst JENS plaudern mit Gast Thomas PERL über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON, Andreas LEHRBAUM und Harald Schilly. Interview mit Nikolai Georgiev. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/VPzSs (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1154143/Biertaucher-Podcast-Folge-093 - - - Bitte hier klicken um die Shownotes zur Folge 093 zu sehen

    - Gregor PRIDUN, Florian SCHWEIKERT, und Horst JENS plaudern mit Gast Thomas PERL über freie Software und andere Nerd-Themen. Interview mit Nikolai Georgiev. Bitcoin News mit Andreas PETERSSON, Andreas LEHRBAUM und Harald Schilly. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No - Johnny sucht einen Briefkasten, Gregor spielt Paranoia und installiert Linux auf einem G4, Horst spielt ThePowderToy und schaut Oh Boy im Kino, sowie jede Menge Bitcoinnews -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/VPzSs bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1154143/Biertaucher-Podcast-Folge-093 - -1:43:42 - - Biertaucher, Podcast, 093, Rant, Gutschein, Python, Android, Podcatcher, Gpodder, Bitlove, Ubuntu OS, Gemeinwohl Ökonomie, Kongress, Tim Pritlove, Simple Chapters, Flattr, Linuxtage Chemnitz, OSDomotics, Openstack, Bitcoin, Solidarische Ökonomie - -
    - - - - - - Biertaucher Folge 092 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:092 - Sat, 23 Feb 2013 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher092.mp3 - - Gregor PRIDUN , Johnny ZWENG, und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News Mit Andreas PETERSSON, Andreas LEHRBAUM und Marcus. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/zkvSZ (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1147838/Biertaucher-Podcast-Folge-092 - - - Bitte hier klicken um die Shownotes zur Folge 092 zu sehen

    - Gregor PRIDUN, Johnny ZWENG, und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON, Andreas LEHRBAUM und Marcus. -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No - Johnny sucht einen Briefkasten, Gregor spielt Paranoia und installiert Linux auf einem G4, Horst spielt ThePowderToy und schaut Oh Boy im Kino, sowie jede Menge Bitcoinnews -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/zkvSZ bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1147838/Biertaucher-Podcast-Folge-092 - -1:51:45 - -Biertaucher, Podcast, 092, Briefkasten, IBook, Linux, cyanogenmod, OpenStack, Python, Steam, Tweetdeck, twitter, game, thepowdertoy, fairphone, kino, oh boy, berlin, paranoia, rollenspiel, bitcoinnews, btchip, Reddit - -
    - - - - - Biertaucher Folge 091 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:091 - Thu, 14 Feb 2013 20:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher091.mp3 - - Gregor PRIDUN , Florian SCHWEIKERT, Johnny ZWENG, Andreas PETERSSON und Horst JENS plaudern über freie Software und andere Nerd-Themen. . Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/db4aZ (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1137610/Biertaucher-Podcast-Folge-091 - - - Bitte hier klicken um die Shownotes zur Folge 091 zu sehen

    - Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG, Andreas PETERSSON und Horst JENS plaudern über freie Software sowie . -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:01:00 untote Hausmeisterthemen: Flattr-Einnahmen, Bitcoin-Spendenadresse -
    • 0:02:22 Gregor kann nicht Flattern ( Moneybookers ) -
    • 0:03:44 Johnnys Kreditkarte (Card complete)wurde gesperrt, weil jemand mit seiner Karte in Australien Autoersatzteile gekauft hat -
    • 0:05:10 Kreditkartenhack -
    • 0:06:04 Andreas empfiheltBlog von David Burch Hypiriam über Zahlungsmittel, Kreditkartenfails etc. -
    • 0:06:50 Johnny hat sich eine NFC-taugliche Quick-card gekauft (paylive) und berichtet über Erlebnisse und Hacks. simpleypaid.com -
    • 0:29:48 Spenden mit Bitcoins, Transaktionsgebühr und Traffic beim Bezahlen mit Bitcoins -
    • 0:31:52 Bitcoins ausgeben: Pizza gegen Bitcoins (USA, Papa Johns), Megaupload-Reseller -
    • 0:33:57 Bitcoin Mining, Transaktionsgebüheren -
    • 0:39:15 Florians Rant: Wordpress installieren, Piwiki Traffic-Analyse -
    • 0:49:00 Mailserver, Graylisting, Spamfiler -
    • 0:56:00 Buchbesprechung (Horst): The longest Way zu Fuß durch China((Amazon-Link)) -
    • 1:00:46 Webitpp (Johnny): onthisday80yearsago.com on this day 80 years ago -
    • 1:03:03 Film und Torrent-Tip (Gregor): The Pirate Bay Away from Keyboard -
    • 1:07:37 Wikileaks Film Tom-scheid-berg ? -
    • 1:09:05 Religion: Papstrücktritt, Pastafari (Spahgettimonster), Japan, Votivkirchengegenbesetzung -
    • 1:13:14 Kino (Horst): Bowling (Willkommen in der Bretagne) -
    • 1:15:24 Film-Nicht-Empfehlung (Gregor): Robot and Frank ? -
    • 1:17:30 Film Empfehlung (Gregor): Misfits (1961) -
    • 1:19:08 Podcastempfehlung (Andreas): Truth about markets (aktuell: Pferdefleischskandal) -
    • 1:22:23 Balluch Blog, Hunde vegetarisch ernähren, -
    • 1:23:28 Dokumentation von ARTE: 1929 Dokumentation über Weltwirtschaftskrise -
    • 1:25:18 Buchempfehlung: Überman von Tommy Jaud -
    • 1:27:15 Bitcoin-Kursentwicklung -
    - - ]]>
    - -No -Biertaucher, Flattr, Bitcoin, Quick, Kreditkarte, NFC, Wordpress, Mailserver, Graylisting, The longest way, onthisday80yearsago, Religion, Kino, Misfits, Truth about markets, Balluch, Tierschutz -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/db4aZ bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1137610/Biertaucher-Podcast-Folge-091 - -1:28:21 -Biertaucher, Podcast, Andrea Mayr, Juxx, Kinder, Linux, Distro, Zite, Kamera, Katzen, Bitcoin, Transparentgesetz, Medienbildung, Minecraft, Zeitschrifen, Slenderman, - -
    - - - - - Biertaucher Folge 090 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:090 - Wed, 06 Feb 2013 20:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher090.mp3 - - Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Interview: Andrea Mayr. Bitcoin-News: Andreas LEHRBAUM und Markus. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/KDPbp (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1125550/Biertaucher-Podcast-Folge-090 - - - Bitte hier klicken um die Shownotes zur Folge 090 zu sehen

    - Gregor PRIDUN und Horst JENS plaudern über freie Software sowie andere Nerd-Neuigkeiten. Interview: Andrea MAYR. Bitcoin-News: Andreas LEHRBAUM und Markus

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -
      - -
    • 0:00:35 Begrüßung, Teaser Andrea Mayr, Juxx, Kindergärten -
    • 0:02:30 Horst war auf der Anti-WKR/Akademikerball-Demonstraation -
    • 0:06:10 Feedback von Jörg, dem Sponsor: Zite, eine "Hamsterapp" -
    • 0:10:12 Gregor versucht eine closed-Source Security Kamera per Linux zu benutzen -
    • 0:16:47 Telepolis-Artikel über Überwachungskamerazerstörung in Berlin -
    • 0:18:48 Katzenkameras, zu viele Katzen (Spiegel-Artikel) -
    • 0:21:09 NFC auf der Bankomatkarte -
    • 0:21:50 Teaser Bitcointreffen -
    • 0:23:06 Aufruf Petition unterschreiben: Transparenzgesetz.at -
    • 0:24:12 Tim Berners-Lee warnt vor Mobilgeräten ohne Root-Zugriff -
    • 0:29:00 böse Zeichenfolge lässt Apple Computer abstürzen -
    • 0:26:37 Probleme mit UEFI, Samung und Ubuntu -
    • 0:31:10 Medienbildung jetzt Konferenz, Minecraft für Schüler -
    • 0:34:11 Filmtipp: The Android mit Klaus Kinski, StarCrash -
    • 0:38:44 pdf Zeitschriften online lesen auf Issuu.com, indische Linuxzeitschriften -
    • 0:40:40 Jugendrepoter Karim empfiehlt: Slenderman -
    • 0:44:43 Facebook-Mobbing -
    • 0:45:47 Interview mit Andrea Mayr über www.Juxx.eu JUXX Linuxdistros für Kinder -
    • 1:02:13 Bitcoin-News mit Andreas Lehrbaum und Markus, Bericht vom Bitcointreffen im Metalab, neuer Bitcoin-Client, spezielle Mining-Rechner -
    • -
    - - ]]>
    - -No -Anti-WKR Ball Demo, JUXX, Bitcoinnews, Kamerahack, Katzenkamera, Star Crash, Slenderman u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/KDPbp bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1125550/Biertaucher-Podcast-Folge-090 - -1:22:41 -Biertaucher, Podcast, Andrea Mayr, Juxx, Kinder, Linux, Distro, Zite, Kamera, Katzen, Bitcoin, Transparentgesetz, Medienbildung, Minecraft, Zeitschrifen, Slenderman, - -
    - - - - - Biertaucher Folge 089 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:089 - Wed, 30 Jan 2013 14:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher089.mp3 - - Gregor PRIDUN, Horst JENS, Peter SCHLEINZER, Harald PICHLER und Christoph Schindler plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/0LYaO (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1116827/Biertaucher-Podcast-Folge-089 - - - Bitte hier klicken um die Shownotes zur Folge 089 zu sehen

    - Gregor PRIDUN, Horst JENS, Peter SCHLEINZER, Christoph Schindler und Überraschungsgast Harald PICHLER plaudern über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Nadeldrucker, Brython, Austria Game Jam, Searching for the Sugarman, Limuxgate u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/0LYaO bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1116827/Biertaucher-Podcast-Folge-089 - - 2:01:17 - - -
    - - - - Biertaucher Folge 088 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:088 - Wed, 23 Jan 2013 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher088.mp3 - - Gregor PRIDUN, Horst JENS und Überraschungsgast Christoph Schindler (Hop) plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/huFyc (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1109613/Biertaucher-Podcast-Folge-088 - - - Bitte hier klicken um die Shownotes zur Folge 088 zu sehen

    - Gregor PRIDUN, Horst JENS, und Überraschungsgast Christoph Schindler (Hop) plaudern über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Horst und Gregor benörgeln den Souverän, schauen fern und waren im Kino, Horst codet mit Google Script, Hop beantwortet Fragen über Python und PyPy, Stallman schreibt zum Thema Fair use (Anti-Stalker-Vampir-Remix-Video), Lehrer verwenden Minecraft uvm. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/huFyc bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1109613/Biertaucher-Podcast-Folge-088 - - 1:33:16 - - -
    - - - Biertaucher Folge 087 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:087 - Wed, 16 Jan 2013 15:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher087.mp3 - - Gregor PRIDUN, Horst JENS, und Überraschungsgast Hop plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/yfPsW (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1102419/Biertaucher-Podcast-Folge-087 - - - Bitte hier klicken um die Shownotes zur Folge 087 zu sehen

    - Gregor PRIDUN, Horst JENS, Thomas KRONSTEINER, und FLorian SCHWEIKERT plaudern über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Florian erzählt vom 29C3 und gibt Reisetipps, Peter hatte ein nettes Supporterlebnis und fährt Elektroauto, Horst hat „Isch geh Schulhof“ und „Bilal - als Illegaler auf dem Weg nach Europa“ gelesen und Gregor hat ein offline (!) Rollenspiel gespielt -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/TKyal bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1095962/Biertaucher-Podcast-Folge-086 - - - 2:06:33 - Biertaucher, Podcast, 086, Bitcoin, Hackerspace, RaspberryPI, Education, Elektroauto, Nissan, Rollenspiel, Paranoia, Bilal, Schule, Flüchtling, 29C3, CCC, Nexus4, Bluetooth - -
    - - - - - - - - Biertaucher Folge 085 - http://spielend-programmieren.at/de:podcast:biertaucher:2013:085 - Fri, 4 Jan 2013 12:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher085.mp3 - - Horst JENS, Johnny ZWENG und Harald PICHLER plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/TE5Ju (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1090645/Biertaucher-Podcast-Folge-085 - - - Bitte hier klicken um die Shownotes zur Folge 085 zu sehen

    - Horst JENS, Johnny ZWENG und Harald PICHLER plaudern über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Johnny macht Kugelfotos, Harald misst drahtlos Raumfeuchte und wollte in Kärnten Wlan-Router kaufen, Horst hat Makers: the new Revolution gelesen und war im Kino (Beasts of the Southern Wild, What Happiness is). -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/TE5Ju bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1090645/Biertaucher-Podcast-Folge-085 - - - 1:19:17 - Biertaucher, Podcast, 085, W-Lan-Router, Photosphere, Ubuntu OS, 6lowPan, OsDomotics, Wired, 3dPrinter, Maker, open hardware, Drohnen, Buddypress, Kino, Beast of the southern wild, What hapiness is - -
    - - - - Biertaucher Folge 084 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:084 - Thu, 27 Dec 2012 20:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher084.mp3 - - Horst JENS plaudert über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/gV5iu (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1080487/Biertaucher-Podcast-Folge-084 - - - Bitte hier klicken um die Shownotes zur Folge 084 zu sehen

    - Horst JENS plaudert über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -No -Ganz kurzer WeihnachtsferienVideo(!)podcast von Horst über 2 Bücher ( Debt, Makers ) und eine Website ( Ted-Ed ) -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/gV5iu bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1080487/Biertaucher-Podcast-Folge-084 - - - 7:42 - Biertaucher, Podcast, 084, Debt, Makers, Ted, TedEd, Education, Buchbesprechung - -
    - - - - - - - - Biertaucher Folge 083 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:083 - Thu, 20 Dec 2012 22:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher083.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG, Andreas BIEDER, Harald PICHLER sowie das Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/py15e (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1074552/Biertaucher-Podcast-Folge-083 - - - Bitte hier klicken um die Shownotes zur Folge 083 zu sehen

    - Gregor PRIDUN, Horst JENS, Johnny ZWENG, Andreas BIEDER, Harald PICHLER und das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM plaudern über freie Software sowie andere Nerd-Neuigkeiten.

    -

    - Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - -
- - ]]>
- -No -Andreas hat Verstärker und Fotoapparat mitgebracht, Horst hat im Kino „Wreck it Ralph“ gesehen, Gregor hat „The Bard's Tale“ durchgespielt, Harald baut ein Merkur Breakoutboard, Bitcoin-News mit Andreas und Andreas u.v.m -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/py15e bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1074552/Biertaucher-Podcast-Folge-083 - - - 2:24:49 - Biertaucher,Podcast,083,kino,Hobbit,HFR,Wreck_it_Ralph,Galaxy,timelapse,Ingress,Socl,Microsoft,steam,linux,fotografie,Merkur,Breakoutboard,BardsTale,Game,Android,Bitcoin,Wikipedia,Bitcoinstore,mywallet - -
- - - - - - - - - - Biertaucher Folge 082 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:082 - Thu, 13 Dec 2012 15:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher082.mp3 - - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Interviewgäste Matthias, Michael und Sven GUCKES sowie das Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/djJLU (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1065390/Biertaucher-Podcast-Folge-082 - - - Bitte hier klicken um die Shownotes zur Folge 082 zu sehen

- Gregor PRIDUN, Horst JENS, Florian Schweikert, das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM sowie die INTERVIEWGÄSTE Mattihas, Michael und Sven Guckes plaudern über freie Software sowie andere Nerd-Neuigkeiten.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Bericht von Roboxotica2012, Retrobörse, Bürgerrecht-statt-Bankenrecht-Demonstration. Interview über Atari-ST Nachbauprojekt und CCal textbasierten Kalender. Ausführlichste Bitcoinnews u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/djJLU bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1065390/Biertaucher-Podcast-Folge-082 - - - 2:08:22 - Biertaucher,Podcast,082,Bitcoin,FMA,Roboxotica,GEA,Heini Staudinger,Demonstration,Mitch Altmann,Sven Guckes,CCal,Interview,Light,Kickstarter,Joschka Sauer,Crowdfunding,Richard Stallman,Privacy,Atari,Google communitys,Kunst hat recht,flattr,reddit - -
- - - - - - - - - - - - Biertaucher Folge 081 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:081 - Sat, 08 Dec 2012 17:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher081.mp3 - - Horst JENS, Gregor PRIDUN, sowie Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/zVPGk (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1055948/Biertaucher-Podcast-Folge-081 - - - Bitte hier klicken um die Shownotes zur Folge 081 zu sehen

- Gregor PRIDUN, Horst JENS und das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM plaudern über freie Software sowie andere Nerd-Neuigkeiten.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - -
  • 0:00:47 Hausmeisterthemen -
  • 0:02:52 Gregor's Nerdhöhle mit Caca-Kaminfeuer -
  • 0:05:32 Horst war auf der Roboexotica 2012 ( Fotoalbum ) -
  • 0:10:15 Aufruf: Bitte Biertaucher-Kalender anschaun, Mitch Altmann und Sven Guckes im Metalab -
  • 0:12:38 Android Tablets: Acer A 2010 , Asus TF 300 T, sowie Pocket Bookmarklet (read it later) -
  • 0:16:57 Comic Reader für's Tablet, cbr, cbz Format, Tablet-Tastaturen -
  • 0:23:10 Horst war in Spittal/Drau (Kärnten )in einer NMS Programmierschulung machen und erzählt über Schule in Bewegung / jonglieren ( Hermann Rohrer ) -
  • 0:28:11 Horst liest immer noch Debt, the first 5.000 years -
  • 0:31:00 Gregors postacopalyptische Comicempfehlung: Sweettooth -
  • 0:34:30 die 2. Ausgabe vom Gimp Magazin ist erschienen -
  • 0:36:12 Web-TV Serie auf Geek and Sundry: Space Janitors -
  • 0:37:07 wir warten auf Johnny um Themen wie Tor-Server-Raid und Google's Politkampagne zu besprechen -
  • 0:37:42 Bios Nachfolger U-Efi - Linux booten verboten ? -
  • 0:40:12 Crowdfunding Plattform Indygogo akzeptiert Euros, Steam für Linux, Gregor will zahlen für Androidspiele -
  • 0:42:15 zdf dokumentation über Energiewende und ihre Gegner ( nicht mehr ) auf Youtube, inkl. Rohquellen -
  • 0:44:08 Bitcoin-News mit Andreas und Andreas - Block Reward wurde halbiert - die Hälfte aller Bitcoins wurde bereits erzeugt -
  • li> -
- - ]]>
- -No -Horst berichtet direkt aus Gregor's Nerd-Höhle von großen Tablets, Comic-Readern und Ascii-Kaminfeuer. Reportage: Schule in Bewegung (Spittal/Drau) und Roboexotica. Und Natürlich Bitcoin-News mit Andreas und Andreas. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/zVPGk bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1055948/Biertaucher-Podcast-Folge-081 - - - 1:04:19 - Biertaucher, Podcast, 081, Roboexotica, Schule, Schule in Bewegung, Spittal, Bictoin, Dept, Buch, Space Janitors, Comics, Mitch Altmann, Metalab, Sven Guckes, pocket, read it later, Gimp Magazin, Indygogo, Steam, Linux, Energiewende, Bitcoin - -
- - - - - - - - Biertaucher Folge 080 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:080 - Thu, 29 Nov 2012 14:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher080.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG, Gäste: Felix, Peter, Karem sowie Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/ezPlF (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1037458/Biertaucher-Podcast-Folge-080 - - - Bitte hier klicken um die Shownotes zur Folge 080 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG , Gäste: Peter, Karem, Felix und das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM plaudern über freie Software sowie andere Nerd-Neuigkeiten.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    -
  • 00:01:00 Hausmeisterthemen -
  • 00:02:00 Felix über seinen Geburtsort, Hitler, Johnny Cash und Landsberg -
  • 00:04:30 Peter über Raumthermostate und Smartmeter -
  • 00:22:47 Sailfish-OS und seine Geschichte -
  • 00:28:16 Felix über Alte Handys und Kids mit ihrem Bezug zu Smartphones -
  • 00:34:00 Der intelligente Fenstergriff und Peters Smarthome -
  • 00:40:00 Felix ber die Sozialarbeit -
  • 00:45:30 Pädagogik Medienkompetenz Kinder und Technik -
  • 01:06:00 Email seine Flaws und andere Netz-Kommunikationsformen -
  • 01:10:00 Freiburg läßt OSS-Strategie fallen -
  • 01:17:00 Bank Austria Gutschein -
  • 01:21:00 Karem (13) quatscht mit uns alten Nerds über Smartphones, Tablets und Facebook in seiner Schule -
  • 01:41:00 Horst hat weiter im Buch „Debt - the fist 5.000 years“ gelesen -
  • 01:45:00 John McAfee -
  • 01:50:30 Bitcoinupdate mit Andreas und Andreas -
  • - -
- - ]]>
- -No -Felix berichtet von Sozialarbeit mit Kindern, Peter spricht mit seinem Smarthome, Karem (13) berichtet von seiner Schule und stellt viele Fragen, Horst ereifert sich über Freiburg, Andreas und Andreas liefern ein Bitcoinupdate u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/ezPlF bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1037458/Biertaucher-Podcast-Folge-080 - - - 1:56:11 - Biertaucher, Podcast, 080, Raumthermostat, Smartmeter, Sailfish, Smartphone, Sozialarbeit, Kinder, Pädagogik, Email, Freiburg, Bictoin, Dept, Buch - - -
- - - - - - Biertaucher Folge 079 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:079 - Thu, 22 Nov 2012 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher079.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG (sowie Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON und Interviewgast Martin MAYR) plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/kljcc (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/1019864/Biertaucher-Podcast-Folge-079 - - - Bitte hier klicken um die Shownotes zur Folge 079 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG sowie Martin MAYR und das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM plaudern über freie Software sowie andere Nerd-Neuigkeiten.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Nerd-Neuigkeiten, Bobo-Lebensberatung mit Martin Mayr, Dumpstern, Foodcoops, Permakultur, Buch- und Filmtipps, Bitcoinnuews u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/kljcc bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/1019864/Biertaucher-Podcast-Folge-079 - - - 2:49:49 - Biertaucher, Podcast, 079, Foodcoops, Dumpstern, Permakultur, Braunschlag, Treatment, Kino, Ubuntu, Shopping-Lens, FreeBSD, Hacker, Dept, Latitude, Roboexotica, Chaising Aurora, Schulen, Ponytime, Powerplay, Vorgedacht, Unity, Yps -
- - - - - - Biertaucher Folge 078 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:078 - Thu, 15 Nov 2012 11:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher078.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Thomas KRONSTEINER (sowie Bitcoin-news Team Andreas LEHRBAUM und Andreas PETERSSON) trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/kEDf8 (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/995813/Biertaucher-Podcast-Folge-078 - - - Bitte hier klicken um die Shownotes zur Folge 078 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Thomas KRONSTEINERsowie das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -JGoogle Jobinterviews, vermeidbare Kinofilme, indische 20$-Tablets, Elite Weltraumspiel auf Kickstarter, Bitcoinnuews u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/kEDf8 bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/995813/Biertaucher-Podcast-Folge-078 - - - 2:15:08 - Biertaucher, Podcast, 078, Google, Jobs, buch, microserfs, Linux, Mint, Xubuntu, zensur, Film, Surrogates, Looper, kickstarter, elite, 20$-tablet, ebooks, energieautoark, wahlcomputer, usa, alternativlos, disney, lucasfilm, xkdc, bitcoin -
- - - - - Biertaucher Folge 077 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:077 - Wed, 07 Nov 2012 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher077.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG, Florian SCHWEIKERT und Andreas PETERSSON sowie Andreas LEHRBAUM trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/PUxVf (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/976442/Biertaucher-Podcast-Folge-077 - - - Bitte hier klicken um die Shownotes zur Folge 077 zu sehen

- Gregor PRIDUN, Horst JENS, Florian SCHWEIKERT, Johnny ZWENG sowie das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - - -
  • 00:01:19 Hausmeisterthemen -
  • 00:04:00 Florian erzählt von der Cryptoparty im Metalab -
  • 00:10:00 Nexus 4 und Google/LG (Preis)Strategien -
  • 00:17:00 Samsung verärgert die Android-Community -
  • 00:21:00 Ex-Nokianer und ihr mobiles Betriebssystem Jolla/Motorola -
  • 00:23:00 Florian und Johnny mit ihren RaspberryPis als Mediacenter -
  • 00:40:00 Horst und sein missglücktes Interview über Pioneers Startup Konferenz -
  • 00:47:30 Florian wird den CCC-Kongress in Hamburg besuchen und hat schon Ticket gekauft -
  • 00:53:00 Der Bank Austria Fail -
  • 00:59:00 Hersteller GEA-Schuhe hat Streit mit der Finanzmarktaufsicht -
  • 01:01:40 Paybox stellt den Feldversuch ein -
  • 01:08:25 Kino: Horst hat Looper gesehen -
  • 01:12:05 Ubuntu und unverschlüsselte Verbindungen zu Amazon -
  • 01:16:40 Gregor auf der Suche nach alternativen Distributionen (Archlinux/systemd/Gnome3.6/Linux Mint/Cinnamon/Xubuntu) -
  • 01:31:32 OLPC vom Helicopter - lernen ohne Lehrer -
  • 01:36:50 Teaser:Florian beginnt mit owncloud, conft einen RaspberryPi-Präsentationscomputer und testet die Spracherkennungsengine Julius -
  • 01:39:51 Rehear: Hörempfehlung: Ubuntu UK Podcast Episode S05E17 mit Interview mit Mark Shuttleworth - - - -
- - ]]>
- -No -Johnny ärgert sich über Bank Austria, Gregor sucht eine Linuxdistro, Florian war auf Cryptoparty, Horst war im Kino, Bitcoinnuews mit Andreas und Andreas -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/PUxVf bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/976442/Biertaucher-Podcast-Folge-077 - - - 2:01:49 - Biertaucher, Podcast, 077, Cryptoparty, Nexus4, Jolla, RaspberryPi, Mediacenter, Startup, Konferenz, pioneers, CCC, 29C3, Bank Austria, GEA, FMA, paybox, Looper, Arch, Gnome3.6, Xubuntu, OLPC, Julius, Spracherkennung -
- - - - - Biertaucher Folge 076 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:076 - Tue, 30 Oct 2012 23:59:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher076.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG, Harald PICHLER und Andreas PETERSSON trinken Bier und plaudern über freie Software und andere Nerd-Themen. INTERVEWS mit Andreas BIEDER und Jörg WUKONIG. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/bBDvT (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/968180/Biertaucher-Podcast-Folge-076 - - - Bitte hier klicken um die Shownotes zur Folge 076 zu sehen

- Gregor PRIDUN, Horst JENS, Harald PICHLER, Johnny ZWENG und Gast: Andreas PETERSSON trinken Bier und plaudern über freie Software sowie andere Nerd-Themen. INTERVIEWS: Jörg Wukonig und Andreas Bieder.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - - -
  • 00:01:31 Bitcoinnews, Hausmeisterthemen -
  • 00:04:01 Displaybruch von Gregors Nexus S. Google Präsentation der neuen Geräte (Nexus4 und Tablet Nexus10) -
  • 00:06:38 Johnnys Medion Tablet freezt on Bootup -
  • 00:12:50 Haralds Keksdosen-Roboter "Keksi", -
  • 20:55 Andreas war am B1-Hackathon für Mobile-Payment-Apps -
  • 00:33:50 Filmvorschau Robot & Frank -
  • 00:37:00 Horst hat sich "Vermessung der Welt" angesehen -
  • 00:39:00 Funny-Van-Dannen konzert in der Arena -
  • 00:40:20 Filme: Babylon AD, Deer Hunter, 6teilige BBC-Serie The Last Train -
  • 00:44:00 TV-Serie Eureka -
  • 00:45:55 Musik: Garfunkel und Oats Webserie: Wainydays von David Wain -
  • 00:48:00 Harald öffnet seinen Roboter "Keksi" -
  • 00:52:00 Andreas kündigt 2 Veranstaltungen an. Bitcointreffen am 6.11. im Metalab Wien -
  • Aufgezeichnete Interviews: -
  • 00:57:00 Interview Andreas "Zeitraffer" Bieder -
  • 01:24:00 Interview Jörg Wukonig ( Internetagentur Graz ) -
  • - -
- - ]]>
- -No -Keksdosenroboter, Youtube, programmieren, Tablet. Interviews: Zeitraffer-Fotografie, Jörg Wukonig über Internetagentur und Graz -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/bBDvT bzw. http://biertaucher.at -Bitte flattern: http://flattr.com/thing/968180/Biertaucher-Podcast-Folge-076 - - - 1:19:33 - Biertaucher, Podcast, 076, Kino, Bitcoin, Nexus, osdomotics, Keksdose, Roboter, Kino, Mobile-payment, Robot and Frank, zeitraffer, fotografie, internetagentur, wukonig, Graz, Garfunkel and Oates, David Wayne -
- - - - - - - - Biertaucher Folge 075 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:075 - Wed, 24 Oct 2012 16:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher075.mp3 - - Horst JENS, Florian SCHWEIKERT, Harald PICHLER, Peter SCHLEINZER, Andreas BIEDER sowie die Bicoin Experten Andreas LEHRBAUM und Andreas PETERSSON trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, etra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/mKeVm (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Link anlicken: http://flattr.com/thing/954124/Biertaucher-Podcast-folge-075 - - - Bitte hier klicken um die Shownotes zur Folge 075 zu sehen

- Florian SCHWEIKERT, Horst JENS, Harald PICHLER, Peter SCHLEINTER und Gast: Andreas BIEDER sowie die Bitcoin-Andreasse Andreas LEHRBAUM und Andreas PETERSSON trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Keksdosen- und Gelenk-Roboter, WLAN mit Richtfunkantenne, RaspberryPi's, Smarter-home Podcast, Zeitraffer-Videos, Kickstarter-finanzierte Spiele, Kino (Madasgaskar3), Publizistikstudentinnen und Bitcoin-News von Andreas und Andreas. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/mKeVm -Bitte flattern: http://flattr.com/thing/954124/Biertaucher-Podcast-folge-075 - - - 1:28:53 - Biertaucher, Podcast, 075, Bitcoinnews, Ultraprune, Tipping Bot, HashBounty, Zeitraffer, RaspberryPi, osdomotics, openhab, haussteuerung, homeserver, Flattr, Ubuntu 12.10, 6lowpan, OpenGarden, Richtfunk, WLan -
- - - - - - - Biertaucher Folge 074 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:074 - Thu, 18 Oct 2012 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher074.mp3 - - Horst JENS und Gregor PRIDUN sowie die Bicoin Experten Andreas LEHRBAUM und Andreas PETERSSON trinken Bier und plaudern über freie Software und andere Nerd-Themen. Gast-Interview: Julian. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/50iZE (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/951506/Biertaucher-Podcast-Folge-074 - - - Bitte hier klicken um die Shownotes zur Folge 074 zu sehen

- Gregor PRIDUN, Horst JENS, Gast: Julian und Andreas LEHRBAUM und Andreas PETERSSON und Gast Lukas trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - - -
  • 00:01:35 Hausmeisterthemen -
  • 00:08:00 Horst auf der Gamecity -
  • 00:18:30 Nachtrag Hasumeisterthemen Erratum -
  • 00:22:00 Gregor und sein neuer RaspberryPi -
  • 00:42:00 Demo für Festplattenabgabe und die Grünen Fixabgabe für Internetzugang -
  • 00:45:00 Hackberry -
  • 00:46:30 Island und Facebookfail bei Telefonnummern -
  • 00:49:40 Liveinterview mit unserem Gastgeber Garib -
  • 00:53:00 Bitcoinupdate:
  • -
      - >
    • scientific american: http://www.scientificamerican.com/article.cfm?id=3-years-in-bitcoin-digital-money-gains-momentum -
    • stockexchange: http://bitcoin.stackexchange.com/ -
    • Vergelich Bitcoin mit anderen distributed projekten: http://www.reddit.com/r/Bitcoin/comments/11eqay/is_bitcoin_now_the_biggest_distributed_computing/ -
    • -
    -
  • 00:11:50 Interview mit Profi-Couterstriker Julian
  • - -
- - ]]>
- -No -Horst war unter lauter Zombies auf der Gamecity, Gregor macht Urlaub mit seinem RaspberryPi, Profi-Counterstriker Julian im Interview, Bitcoinupdates, Festplattenabgabe, kurdische Küche u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/50iZE -Bitte flattern: http://flattr.com/thing/951506/Biertaucher-Podcast-Folge-074 - - - 1:23:07 - Biertaucher, Podcast, 074, Gamecity, Zombies, spielend-programmieren, FSFE, Erratum, RaspberryPi, Politik, Internetabgabe, Kurdistan, Zypresse, Wien, Bitcoin, scientific american, stockexchange, Counterstrike, Esport -
- - - - - - Biertaucher Folge 073 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:073 - Wed, 10 Oct 2012 10:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher073.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Lukas sowie die Bicoin Experten Andreas LEHRBAUM und Andreas PETERSSON trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, etra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/bQkk9 (bzw. http://biertaucher.at ) Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/931182/Biertaucher-Podcast-Folge-073 - - Bitte hier klicken um die Shownotes zur Folge 073 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Andreas LEHRBAUM und Andreas PETERSSON und Gast Lukas trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Johnny wird von Publizistikstudentinnen belästigt und freut sich über den scientific Paper Generator, Gregor empfiehlt Podcasts und spricht über das Android OpenSource Projekt,Gamecity, bitcoin-news -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/bQkk9 -Bitte flattern: http://flattr.com/thing/931182/Biertaucher-Podcast-Folge-073 - - - 1:20:26 - Biertaucher, Podcast, 073, Science-Paper-Generator, Science, Food, Konferenz, Mailand, Otalien, Südtirol, Publizistik, Universität, Bitcoin-News, Ernährungssouveränität, CSA, Community-Supported-Agriculture, Liquid-Democracy, Github, -
- - - - - Biertaucher Folge 072 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:072 - Tue, 2 Oct 2012 23:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher072.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, etra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/oieU0 (bzw. http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Button anlicken: https://flattr.com/thing/918286/Biertaucher-Podcast-Folge-072 - - - Bitte hier klicken um die Shownotes zur Folge 072 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- -No -Johnny war beim Vienna Night Run und testet Sport-Apps, Gregor kauft (!) Android Games und schläft beim Slashfilmfestifal (nicht jugendfrei!) im Kino ein, Horst spielt Indie Humble Bundle 6 und schaut „The Guild“, Andreas bringt Bitcoin News u.v.m -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/oieU0 -Bitte flattern: https://flattr.com/thing/918286/Biertaucher-Podcast-Folge-072 - - - 1:07:44 - biertaucher, podcast, 072, Vienna Night Run, Sport-Apps, Game, Android, Spirit of Eternity, Broken Sword, Granny Smith, Humble Bundle, Torchlight, self driving car, Udacity, Blender, Film, Tears of Steel, Ubuntu, Amazon -
- - - - - - - - - Biertaucher Folge 071 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:071 - Thu, 27 Sep 2012 23:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher071.mp3 - - Horst JENS, Gregor PRIDUN, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, etra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/zBj6a (bzw: http://biertaucher.at ) Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/905851/Biertaucher-Podcast-Folge-071 - - - Bitte hier klicken um die Shownotes zur Folge 071 zu sehen

- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - - ]]>
- -No -Überraschung: Erstere Einspielung von unserem Finanzreporter Andreas „Bitcoin“ Lehrbaum! Außerdem: Gregors Crapware-Rant, Drohnenkriege, Mapocalpyse, Slashfilmfestival (hirnlöffelnde Killerclowns) u.v.m. -Shownotes mit Links, Bildern, Videos etc: http://goo.gl/zBj6a -Bitte flattern: http://flattr.com/thing/905851/Biertaucher-Podcast-Folge-071 - - - 47:45 - biertaucher, podcast, 071, Drohnen, Rant, Crawpware, Bitcoin, SlashfilmFestival, Subotron, FAZ, Wettrüsten, Kill Decision, Android, Root, Asus, Mapocalypse, Iphone5, Samsung, Apple, Kino, Nightbreed -
- - - - - - - - - Biertaucher Folge 070 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:070 - Tue, 18 Sep 2012 09:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher070.mp3 - - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Andreas LEHRBAUM und Gäste trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, extra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/KN1Vx ( bzw: http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/891289/Biertaucher-Podcast-Folge-070 - - - Bitte hier klicken um die Shownotes zur Folge 070 zu sehen

- Gregor PRIDUN, Horst JENS, Florian SCHWEIKERT, Andreas LEHRBAUM und Gäste trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Andreas LEHRBAUM. Gäste: Mario (W24), Mary, Thomas, Alex - No - Andreas war auf der Bitcoin-Konferenz in London, Florian war am Software Freedom Day, W24 filmt uns, Mary schneite vorbei, Gregor ist Root auf seinem Smartphone, Horst war im Kino und lernt Django, Interview mit Oberpirat usw, usf: - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/KN1Vx -Bitte flattern: http://flattr.com/thing/891289/Biertaucher-Podcast-Folge-070 - - 1:18:39 - biertaucher, podcast, 070, Flattr, CashForWeb, Bitcoin, London, Richard Stallman, Python, Django, Ubuntu, W24, TV-Sender, Google, Nexus, Root, Software Freedom Day, Piratenpartei, Interview, bitfilm, QR-Feld, RaspberryPi, -
- - - - - - Biertaucher Folge 069 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:069 - Wed, 12 Sep 2012 22:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher069.mp3 - Horst JENS, Florian SCHWEIKERT Johnny ZWENG und Harald PICHLER trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos, Tags, Transkripte, etra-soundfiles etc. gibt es in den Shownotes: http://goo.gl/VbNjr (bzw: http://biertaucher.at ). Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/881212/Biertaucher-Podcast-Folge-069 - - - Bitte hier klicken um die Shownotes zur Folge 069 zu sehen

- Harald PICHLER, Horst JENS, Florian SCHWEIKERT und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - - -
  • 0:00:47 Hausmeisterthemen: wir treffen uns Montags -
  • 0:01:25 ur peinliche Pause -
  • 0:01:37 Reportage: Harald wollte Toastbrot kaufen -
  • 0:05:36 Johnny drucken per Google Cloud und Google Chrome -
  • 0:09:45 Twitter Skandal: Buch über Tweets -
  • 0:11:41 Owncloud -
  • 0:15:17 Computerclub Sendung: 3d Fingerscanner -
  • 0:28:50 Chinesische Patent-Trolle patentieren Iphone5 Design bevor Apple es tut -
  • 0:34:20 Rasberry Pi updates -
  • 0:36:21 DNP Datenschutz Konferenz (niemand von uns war dort) -
  • 0:37:50 Neues von OSDomotics: Funkmodul und Bootloader sind fertig -
  • 0:41:37 selbstbalancierendes Einrad von Honda -
  • 0:47:00 Wiktravel vs. Wikivoyage, Balluch Blog posting ( zeitangabe stimmt wahrscheinlich nicht) -
  • 0:48:50 Google Tablet in Österreich erhältlich -
  • 0:53:00 Teaser: Bitcoin-Interview vom Bitcoin-Treffen im Metalab am 6.9.2012, Johnny besitzt einen Zehntel Bitcoin -
  • 0:55:33 Bitcoinbanküberfall: Bitfloor wurde gehackt -
  • 0:58:50 freies Gimp Magazin -
  • 1:00:48 Anonymous Hack ( Apple UID ) und Redakteur im Tutu mit Schuh am Kopf -
  • 1:04:00 Rettungshubschrauber (echter Soundeffekt) -
  • 1:04:50:wir gratulieren Hoaxilla zur 100. Folge -
  • 1:05:17 WhatsApp Passwortlücke -
  • 1:09:04 Harald's Schlusswort -
  • 1:09:46 letztes Hausmeisterthema: wir haben eine neue URL: biertaucher.at. -
  • 1:10:25 Interview vom Bitcoin-Treffen im Metalab ( 4.9.2012 ): Bitcoin-Andreas erzählt Bitcoin-Neuigkeiten -
  • - -
- - ]]>
- - Horst JENS, Harald PICHLER, Florian SCHWEIKERT, Johnny ZWENG - No - Harald wollte Toastbrot kaufen und spricht über Biometrie, Fingerabdruckscanner, Funksteuerung. Florian und Johnny ignorieren größtenteils die gesammelten Meldungen und plaudern stattdessen über Android Tablets, Hoaxilla, - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/VbNjr -Bitte flattern: http://flattr.com/thing/881212/Biertaucher-Podcast-Folge-069 - - 1:14:46 - biertaucher, podcast, 069, Biometrie, Fingerabdruckscanner, 3d-Scanner, Toastbrot, Twitter, Identi.ca, cloud printing, owncload, Funksteuerung, OSDomotics, Lichtschalter, Einrad, Honda, Wikitravel, Wikivoyage, Croudsourcing, Creative-Commons-Lizenz -
- - - - - Biertaucher Folge 068 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:068 - Wed, 05 Sep 2012 12:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher068.mp3 - Gregor PRIDUN, Horst JENS, Martin MARY, Florian SCHWEIKERT und Johnny ZWENG trinken Bier und plaudern über freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder, Videos und ein Interview-Transskript gibt es in den Shownotes: http://goo.gl/WJTLN bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/872232/Biertaucher-Podcast-Folge-068 - - - Bitte hier klicken um die Shownotes zur Folge 068 zu sehen

- Gregor PRIDUN, Horst JENS, Martin MARY, Florian SCHWEIKERT und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- -
    - -
  • -
  • 0:00:35 Hausmeisterthemen: Feedback Kreditkarten (siehe Themensammlung, tagging, Sponsor -
  • 0:06:17 die rituelle Frage -
  • 0:06:48 Martin: Brombeerhecke Längenfeldgasse wurde auf polizeiliche Anordnung entfernt weil: Drogenumschlagplatz ! -
  • 0:09:00 Florian kommt direkt von einer Auslandsreportage aus Afrika Großbritannien und hat u.a. Haggis gegessen und hat sich rundum sicher und beobachtet gefühlt. -
  • 0:17:29 Johnny liest den NFC Chip von einem Reispässe per Android-App aus -
  • 0:23:10 Johnny erzähtl über NFC-fähige Kreditkartenkommunikation, Florian über NFC Türsysteme -
  • 0:26:16 Horst war auf den Weizer Knoppixtagen, am Ende der Sendung: Interview mit Klaus Knopper und hat einen Vortrag über Creative Commons Lizenzen, Udacity und Khan Academy gehalten -
  • 0:33:51 Martins's Veranstaltungstipp: Lebensmittelproduktion rund um Wien, siehe Biertaucher-Kalender -
  • 0:36:21 Podcastempfehlung: Florian hat Hoaxilla gehört -
  • 0:38:00 Johnny hat sein Handy nicht vollständig verlorenund hat ein Upgrade auf Android Jelly Bean gemacht und Anti-Diebstahlapps installiert -
  • 0:44:21 Kino: Johnny hat in Glasgow Brave angeschaut -
  • 0:46:13 Studienplatzbeschränkungen für Informatikstudierende an der TU Wien -
  • 0:48:18 Gnomebuntu: ein Ubuntu mit voller Gnome Shell und ohne Unity -
  • 0:55:03 freie Spieledatenbank: Oregami.org ( gehört im Spieleveteranenpodcast , kleiner Rant ) -
  • 0:58:10 Amazon Store: freie App des Tages gibt's **nicht** für Österreich -
  • 1:01:54 Kickstarter Projekt: Point-and-click Adventure: Broken Sword -
  • 1:02:34 Kickstarter Projekt: Planetary Annihilation (siehe auch Spring RTS) -
  • 1:08:28 Kino: Total Recall Filmkritik -
  • 1:11:47 Buchkritik: Florian hat The Hunger Games gelesen -
  • 1:14:05 Florian's Rant: Rasberry pi werden nicht geliefert -
  • 1:17:01 Bruce Willis kann seine iTunes Sammlung nicht vererben -
  • 1:18:53 Interview mit Knoppix-Erfinder Klaus Knopper (siehe Transskript in den Shownotes) -
  • -
- - ]]>
- - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT, Johnny ZWENG - No - Florian war in Schottland im Kino, Horst war in Weiz auf den Knoppixtagen und hat Klaus Knopper interviewt, Johnny kann Daten aus Reisepässen per NFC-Smartphone auslesen, Gregor sorgt sich um Gnomebuntu, Brombeerhecken für Drogendealer - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/WJTLN -Bitte flattern: http://flattr.com/thing/872232/Biertaucher-Podcast-Folge-068 - - 1:46:54 - biertaucher, podcast, 068, klaus knopper, knoppix, live cd, desktop4education, weiz, helmut peer, knoppixtage, england, schottland, brave, kino, schwarzenegger, total recall, brombeerhecke, drogendealer, wien, guerilla gardening, gnome -
- - Biertaucher Folge 067 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:067 - Thu, 30 Aug 2012 08:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher067.mp3 - Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder und Videos gibt es in den Shownotes: http://goo.gl/4nSKS bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/863342/Biertaucher-Podcast-Folge-067 - - - Bitte hier klicken um die Shownotes zur Folge 067 zu sehen

- Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- - Gregor PRIDUN, Johnny ZWENG - No - Gregor und Horst waren auf der Aninite 2012 in Wien, Gregor lebt im Hardwaregeddon und war im Kino ( Prometheus ), Johnny spricht über Open Source Backup Software, Windows 8 bespitzelt User, Nexus 7 in Deutschland u.v.m. - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/4nSKS -Bitte flattern: http://flattr.com/thing/863342/Biertaucher-Podcast-Folge-067 - - 1:05:26 - biertaucher, podcast, 067, Aninite, Wien, Cosplay, Manga, Prometheus, Kino, Preyproject, Bictoin, Bacula, Backup, Prometheus, Kino, Windows 8, Kickstarter, Ken Starks -
- - Biertaucher Folge 066 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:066 - Thu, 23 Aug 2012 12:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher066.mp3 - Horst JENS Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder und Videos gibt es in den Shownotes: http://goo.gl/AlnLO bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/853733/Biertaucher-Podcast-Folge-066 - - - Bitte hier klicken um die Shownotes zur Folge 066 zu sehen

- Horst JENS Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- - Horst JENS, Gregor PRIDUN, Johnny ZWENG - No - True Crime Story von Johnnys verlorenem Handy, Gregor schaut Science Fiction Filme und hört Comicpodcasts, Horst war im Coding-Dojo, Interview mit Frau Dr. Roesler-Schmidt zum Thema Augartenverbauung. Und natürlich jede Menge Tech-Meldungen - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/AlnLO -Bitte flattern: http://flattr.com/thing/853733/Biertaucher-Podcast-Folge-066 - - 1:12:07 - biertaucher, podcast, smartphone, Diebstahl, Diebstahlsicherung, Wien, Finderlohn, fdroid, Metalab, Python, Coding-Dojo, Test driven development, Twitter, Mitt Romney, Google Hangout on Air, Tweetdeck, Tweakdeck, First Fantasy, pycrawl -
- - Biertaucher Folge 065 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:065 - Tue, 14 Aug 2012 11:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher065.mp3 - Horst JENS und Gregor PRIDUN trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder und Videos gibt es in den Shownotes: http://goo.gl/5Q7Ph bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/843559/Biertaucher-Podcast-Folge-065 - - - Bitte hier klicken um die Shownotes zur Folge 065 zu sehen

- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- - Horst JENS, Gregor PRIDUN und Freunde - No - Gregor war in Berlin in Comics lesen und auf der Documenta in Kassel. Horst hat sich rumänische Kurzfilme angeschaut, programmiert ein rogulike game in python3 und erzählt aus „Why nations fail“. Und: wir haben einen Sponsor ! - Shownotes mit Links, Bildern, Videos etc: http://goo.gl/5Q7Ph -Bitte flattern: http://flattr.com/thing/843559/Biertaucher-Podcast-Folge-065 - - 59:31:00 - biertaucher, podcast, sponsor, wukonig, Supervac, flattr, paypal, guadec, gnome, unity, firefox os, chromium os, berlin, kassel, documenta, Didi und Stulle, Comicpodcast, comicladen, Espresso, Kurzfilmfestival, Rumänien, Corneliu Porumboiu -
- - Biertaucher Folge 064 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:064 - Wed, 08 Aug 2012 10:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher064.mp3 - Horst JENS, Martin MAYR, Florian SCHWEIKERT, Harald PICHLER, Goesta SMEKAL und Marvin TAUCHNER trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links, Bilder und Videos gibt es in den Shownotes: http://goo.gl/uAojv bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/820684/Biertaucher-Podcast-Folge-064 - - - - Bitte hier klicken um die Shownotes zur Folge 64 zu sehen

- Horst JENS, Martin MAYR, Florian SCHWEIKERT, Harald PICHLER, Goesta SMEKAL und Marvin TAUCHNER trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - ]]>
- - Horst JENS, Gregor PRIDUN und Freunde - No - Marslandung, Aquariensteuerung per 6lowpan, aufsprühbare Batterien, organische Solarzellen, Buchvorstellung: Why nations fail, Stimme der Jugend (Marvin) berichtet über ein Jahr Aufenthalt in England u.v.m - Shownotes mit Links, Bildern, Videos etc. finden Sie hier: http://goo.gl/uAojv -Bitte flattern: href="http://flattr.com/thing/820684/Biertaucher-Podcast-Folge-064 - 01:14:00 - biertaucher, podcast, Marslandung, Krautfunding, Why nations fail, Buchbesprechung, organische Solarzellen, Solarzellen, aufspraybarer Akkumulator, Batterien, Rasen am Ring, Ringstrasse, autofreie Stadt, Wien, Barcamp, Foodcamp -
- - Biertaucher Folge 063 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:063 - Thu, 02 Aug 2012 18:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher063.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT, Johnny ZWENG und als Gast Harald PICHLER trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/V488Q bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/800035/Biertaucher-Podcast-Folge-063 - - - - - - Bitte hier klicken um die Shownotes zur Folge 63 zu sehen

- Horst JENS, Gregor PRIDUN Martin MAYR, Florian SCHWEIKERT, Harald PICHLER und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - - ]]>
- - Horst JENS, Gregor PRIDUN und Freunde - No - Diesmal zu Gast ist Harald Pichler, der über seine Funksteckdosenfernsteuerung berichtet; Martin hat Sara zum Thema CSA (Cultural supported agriculture) interviewt und liest aus Büchern vor (lernen / Montessori) - Shownotes mit Links, Bildern, Videos etc. finden Sie hier: http://goo.gl/V488Q -Bitte flattern: http://flattr.com/thing/800035/Biertaucher-Podcast-Folge-063 - 01:36:02 - biertaucher, podcast, internet, urlaub, kroatien, Buchempfehlung, krautfunding, montessori, fdroid, android, samsung, galaxy s, cyanogenmod, Zipfer Radler, demokratische banken, RasberryPI, The Pacific, Stallman, Computerspiele, Bud Spencer -
- - Biertaucher Folge 062 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:062 - Wed, 25 Jul 2012 10:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher062.mp3 - Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/kU8Ds bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/772933/Biertaucher-Podcast-Folge-062 - - Bitte hier klicken um die Shownotes zur Folge 62 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - - ]]>
- - Horst JENS, Gregor PRIDUN und Freunde - No - Report von MACOnvention in Linz (Manga, Anime), Jelly Bean für Android, Forschungsreaktor, Hangout, Internet Defense League, Filmtipps, Podcastempfehlungen u.v.m. - Shownotes mit Links, Bildern, Videos etc. finden Sie hier: http://goo.gl/kU8Ds bzw. auf http://biertaucher.at -Bitte flattern: http://flattr.com/thing/772933/Biertaucher-Podcast-Folge-062 - 01:36:02 - biertaucher, podcast, iTunes, google hangout, Maconvention, Linz, Manga, Anime, Cosplay, Brettspiel, Super Dungeons, Android, Jelly Bean, Raspberry Phi, Linus Torvalds, Spracherkennung, Sierra Zulu, Kickstarter, Forschungsreaktor -
- - Biertaucher Folge 061 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:061 - Wed, 18 Jul 2012 23:59:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher061.mp3 - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG und Andreas PETERSSON trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/Yhk3T bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/743009/Biertaucher-Podcast-Folge-061 - - Bitte hier klicken um die Shownotes zur Folge 61 zu sehen

- Horst JENS, Gregor PRIDUN Florian SCHWEIKERT, Johnny ZWENG und Gast Andreas PETERSSON trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

- - - - - - - ]]>
- -
- - Biertaucher Folge 060 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:060 - Wed, 11 Jul 2012 23:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher060.mp3 - Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/kVXxV bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/735983/Biertaucher-Podcast-Folge-060 - - Bitte hier klicken um die Shownotes zur Folge 60 zu sehen

- Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf google+ -
- - - - - - ]]>
- -
- - Biertaucher Folge 059 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:059 - Thu, 05 Jul 2012 23:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher059.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Patrick trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/GCNUc bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/733856/Biertaucher-Podcast-Folge-059 - - Bitte hier klicken um die Shownotes zur Folge 59 zu sehen

- Horst JENS, Gregor PRIDUN, Martin MAYR und Florian SCHWEIKERT und Patrick trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf google+ -
- - - - - - ]]>
- -
- - Biertaucher Folge 058 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:058 - Wed, 27 Jun 2012 11:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher058.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Johnny ZWENG trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/2XrZI bzw: http://biertaucher.at. Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/725247/Biertaucher-Podcast-Folge-058 - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 58 zu sehen

- Horst JENS, Gregor PRIDUN, Martin MAYR und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - - ]]>
- -
- - Biertaucher Folge 057 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:057 - Wed, 20 Jun 2012 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher057.mp3 - Horst JENS, Florian SCHWEIKERT, Johnny ZWENG und Christopher PARR trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/JGBNf bzw: http://biertaucher.at. - - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 57 zu sehen

- Horst JENS, Florian SCHWEIKERT, Johnny ZWENG und Christopher PARR trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- ]]>
- -
- - Biertaucher Folge 056 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:056 - Wed, 13 Jun 2012 23:59:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher056.mp3 - Horst JENS und Gregor PRIDUN trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/8rCx3 bzw: http://biertaucher.at - Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/716279/Biertaucher-Podcast-Folge-056 - - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 56 zu sehen

- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - ]]>
- -
- - Biertaucher Folge 055 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:055 - Thu, 07 Jun 2012 08:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher055.mp3 - Horst JENS und Gregor PRIDUN trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/vT7oa bzw: http://biertaucher.at - Bitte nach Möglichkeit diesen Flattr-Button anlicken: http://flattr.com/thing/713146/Biertaucher-Podcast-Folge-055 - - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 55 zu sehen

- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr thisHier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - ]]>
- -
- - Biertaucher Folge 054 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:054 - Wed, 30 May 2012 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher054.mp3 - Horst JENS, Gregor PRIDUN und Martin MAYR trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/BWEzh bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 54 zu sehen

- Horst JENS, Gregor PRIDUN und Martin MAYR trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.

-

- Bitte Flattern: - -Flattr this -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - ]]>
- -
- - Biertaucher Folge 053 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:053 - Thu, 24 May 2012 08:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher053.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Johnny ZWENG und Stargast Marlena trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/XRMKd - - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 53 zu sehen

- Horst JENS, Gregor PRIDUN, Martin MAYR, Johnny ZWENG und Stargast Marlena plaudern über freie Software und andere Nerd-Themen.

-

-
Bitte Flattern: -Flattr this -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - ]]>
- -
- - Biertaucher Folge 052 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:052 - Thu, 17 May 2012 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher052.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Peter SCHLEINZER trinken Bier und plaudern freie Software und andere Nerd-Themen. Mehr Information, Links und Bilder gibt es in den Shownotes: http://goo.gl/DFXKZ bzw: http://biertaucher.at - - - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 52 zu sehen

- Horst JENS, Gregor PRIDUN, Martin MAYR und Peter SCHLEINZER plaudern über freie Software

-

-
Bitte Flattern: -Flattr this

- -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

-siehe auch Themensammlung auf reddit -
- - - - - ]]>
- -
- - Biertaucher Folge 051 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:051 - Wed, 09 May 2012 22:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher051.mp3 - Horst JENS, Johnny ZWENG, Martin MAYR und Andreas und Andreas vom Bitcoin Verein Österreich trinken Bier und plaudern freie Software und andere Nerd-Themen. Hauptsächlich über Bitcoins. Siehe auch Shownotes http://goo.gl/ZZw9J bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 51 zu sehen

- Horst JENS, Martin MAYR, Johnny ZWeng und Gäste Andreas und Andreas plaudern über freie Software, wichtige Nerdthemen und Bitcoins.

-

- -Hier das Inhaltsverzeichnis **ohne** Anspruch auf Vollständigkeit (siehe auch Themensammlung auf reddit)

-( bitte Flattern: -Flattr this )

- - - ]]>
- -
- - Biertaucher Folge 050 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:050 - Thu, 03 May 2012 10:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher050.mp3 - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Martin MAYR feiern die 50. Folge vom Biertaucherpodcast trinkend und über freie Software und andere Nerd-Themen plaudernd: siehe auch Shownotes http://goo.gl/n9w2I bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 50 zu sehen

- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Martin MAYR und als Gäste Peter und Harald vom Smarthome-podcast plaudern über freie Software und andere Nerd-Themen:

-

- -Hier das Inhaltsverzeichnis **ohne** Anspruch auf Vollständigkeit (siehe auch Themensammlung auf reddit)

-( bitte Flattern: -Flattr this )

- -
    - -
  • 0:01:00 Podcast: Aethermicro neuer Podcast von Daniel Messner und Anna Masona -
  • 0:05:00 Selbstbeweihräucherung: Entwicklung Biertaucherpodcast -
  • 0:06:00 Retrogaming: Das waren Zeiten als Gregor noch jung war und Wirstschaftssimulationen spielte... -
  • 0:08:00 Politik: Microsoft ünterstützt nicht mehr Cispa -
  • 0:08:50 Meldung: Gefägnisroboter in Korea -
  • 0:11:11 Tech: Google Drive -
  • 0:19:10 Tech: Terminator Shell -
  • 0:21:20 Tech: 3D Drucker für 500 Dollar -
  • 0:22:00 Reportage: Martin berichtet von der Mayday Demo -
  • 0:27:00 Tech: GTA04 Openmoko -
  • 0:30:22 KINO: Battleship wurde für überhaupt nicht empfehlenswert befunden ( -3 Biertaucherflaschen ) -
  • 0:32:00 TV Serie: Black Adder (BBC) mit Rowan Atkinson (bekannt alsMr. Bean) -
  • 0:37:00 GÄSTE: Peter und Harald vom Smarter Home Podcast berichten über IPv6 und explodierende Hörerzahlen -
  • 0:46:00 Kultur: Tim Pritlove über Flattr -
  • 0:49:20 Reportage: Grazer Linuxtag (siehe auch Interviews am Ende des Podcasts) -
  • 1:00:00 Politik: Video Die Boku (Universität für Bodenkultur) Wien lässt ein von Guerilla Gärtnern besetztes Feld räumen. Siehe auch: Bienensterben. -
  • 1:09:30 Tech: SPDY das Protokoll, siehe auch Wikipedia Eintrag zu Spdy -
  • 1:12:52 Interviews vom Linuxtag Graz: -
  • - ]]>
    - -
    - - Biertaucher Folge 049 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:049 - Wed, 25 Apr 2012 22:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher049.mp3 - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG und Martin MAYR plaudern über freie Software und andere Nerd-Themen: siehe auch Shownotes http://goo.gl/ZDy7D bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 49 zu sehen

    - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG und Martin MAYR plaudern über freie Software und andere Nerd-Themen:

    -

    - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit

    -(siehe auch Themensammlung auf reddit )

    - - - ]]>
    - -
    - - Biertaucher Folge 048 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:048 - Thu, 19 Apr 2012 09:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher048.mp3 - Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen: siehe auch Shownotes http://goo.gl/N4IfH bzw. bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 48 zu sehen

    - Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen:

    Bitte klicken Sie auf diesen Link um die Shownotes für Folge 48zu sehen.

    Inhalt:

    -
      - - -
    • 0:00:00 Welche Folge hamma ? -
    • 0:00:30 Historischer Exkurs zum 1. Biertaucher Podcast -
    • 0:01:24 Hausmeisterthemen vom Gregor, Android Launcher, Google Nexus Updates -
    • 0:03:34 Shownotes, Flattr -
    • 0:04:34 Termine: Critical Mass , Barcraft Vienna, Tierversuchsdemo, TU Wien Kino: Der Prozess, Pyweek -
    • 0:09:00 OpenGameArt, Montessori Veranstaltung, Twittagessen -
    • 0:11:00 Lange Nacht der Forschung, Sternwartepark -
    • 0:13:05 KINO: Menace II society -
    • 0:14:03 BUCH: Sofies Welt -
    • 0:16:30 neues Google+ Design -
    • 0:17:38 es hat 48 Sendungen gebraucht bis Gregor dieser freudsche Versprecher einfäll: Bier**B**aucher Podcast -
    • 0:19:30 Chor der Uni Wien -
    • 0:21:00 Spiegel online: Shitstorm für Piraten -
    • 0:22:39 Abmahnungen wegen Pinnwandposting auf Facebook -
    • 0:23:17 Spanien: Aufruf zu Demonstrationen strafbar. ( siehe Balluch Blog: niederösterreichische ÖVP) -
    • 0:25:22 authentisches Vogelgezwitscher, Debatte: gläserner Patient, Google Health -
    • 0:27:30 KINO: The Bruexelles Business -
    • 0:33:00 Alternativlos Podcast -
    • 0:33:28 REPORTAGE: Boku Versuchsgarten Landbesetzung in Wien Jedlersdorf, Tag des kleinbäuerlichen Widerstandes -
    • 0:37:25 Guerilla Gardening Seed balls -
    • 0:40:20 Volksküche -
    • 0:41:00 Teaser: Studentendemonstration "Internationale Entwicklung" (am Ende des Podcasts) -
    • 0:41:45 Bericht: Python User Group im Metalab: -
      • http://pyug.at/ -
      • http://stackoverflow.com/ -
      • Ubuntu user voting system -
      • Coding Dojo -
    • 0:46:00 Austria Game Jam Review im Subotron -
    • 0:46:46 POCAST: Die Fressefreiheit, Blog: Denkdreck.de Hörsuppe, Datensuppe -
    • 0:50:17 Viewranger, OpenStreetmap, OpenCycleMap -
    • 0:52:35 Netidee: Geld für Open Source Projekte -
    • 0:53:19 Moos Graffitti -
    • 0:55:45 Teaser Android "Launcher" -
    • 0:58:19 "Warum Apple die Mobile Industrie 10 Jahre zurückgeworfen hat" -
    • 0:59:12 INTERVIEW mit Streikenden IE Studierenden -
    • - -
    - ]]>
    - -
    - - Biertaucher Folge 047 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:047 - Thu, 12 Apr 2012 09:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher047.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Johnny ZWENG und Gast Peter vom Smarthomepodcast plaudern über freie Software und andere Nerd-Themen: siehe auch Shownotes http://goo.gl/Un2J7 bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 47 zu sehen

    - Inhalt: Horst JENS, Gregor PRIDUN, Martin MAYR, Johnny ZWENG und Gast Peter vom Smarthomepodcast plaudern über freie Software und andere Nerd-Themen:

    - siehe auch : Themensammlung auf reddit

    - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -
    - - Biertaucher Folge 046 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:046 - Thu, 05 Apr 2012 09:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher046.mp3 - Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen: siehe auch Shownotes http://goo.gl/G7nEy bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 46 zu sehen

    - Inhalt: Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen:

    - siehe auch : Themensammlung auf reddit

    - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - - - ]]>
    - -
    - - Biertaucher Folge 045 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:045 - Wed, 28 Mar 2012 22:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher045.mp3 - Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen: siehe auch Shownotes http://goo.gl/Edgi1 bzw: http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 45 zu sehen

    - Inhalt: Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen:

    - siehe auch : Themensammlung auf reddit

    - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - Martin beim Guerilla Gardening Nähe Wien Längenfeldgasse - ]]>
    - -
    - - Biertaucher Folge 044 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:044 - Thu, 22 Mar 2012 14:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher044.mp3 - Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 44 zu sehen

    - Inhalt: Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen:

    - siehe auch : Themensammlung auf reddit

    - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - Buchcover: Why the West rules - for now - ]]>
    - -
    - - Biertaucher Folge 043 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:043 - Wed, 14 Mar 2012 15:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher043.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen, siehe Shownotes auf http://biertaucher.at - - Bitte klicken Sie auf diesen Link um die Shownotes zur Folge 43 zu sehen

    - Inhalt: Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen:

    - ( siehe auch Themensammlung auf Google+ ):



    - - -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - - Robot Challenge 2012 Wien - ]]>
    - -
    - - Biertaucher Folge 042 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:042 - Wed, 07 Mar 2012 18:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher042.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Zur Feier der 42. Biertaucher-Folge diesmal mit Handtüchern. siehe Shownotes auf http://biertaucher.at - - Horst JENS
    , Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen. Zur Feier der 42. Biertaucher-Folge diesmal mit Handtüchern.

    - siehe auch Themensammlung auf Google+

    - Mehr Information gibt es in den Shownotes

    -Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:

    - -

    -NFC-Kommunikation zwischen N9 und Google Nexus - - - ]]> - - - - Biertaucher Folge 041 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:041 - Thu, 01 Mar 2012 10:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher041.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Gast Peter plaudern über freie Software und andere Nerd-Themen siehe Shownotes auf http://biertaucher.at - - Horst JENS
    , Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Gast Peter plaudern über freie Software und andere Nerd-Themen.

    - Siehe auch Themensammlung zu dieser Folge auf Google+

    - Sie können diese Podcastfolge per Flattr unterstützen.

    - Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit: - -

    - in-ga.me logo -

    - - - ]]> - - - - Biertaucher Folge 040 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:040 - Wed, 22 Feb 2012 21:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher040.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen siehe Shownotes auf http://biertaucher.at - - Horst JENS, Gregor PRIDUN, Martin MAYR, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen.

    - Siehe auch Themensammlung zu dieser Folge auf Google+

    - Sie können diese Podcastfolge per Flattr unterstützen.

    - -

    - Aufnahmen zur Biertaucherfolge 40 - Sun Age screenshot - Gratitous Tank battle screenshot -

    - - - ]]>
    - -
    - - Biertaucher Folge 039 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:039 - Wed, 15 Feb 2012 09:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher039.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Johnny ZWENG plaudern über freie Software und andere Nerd-Themen siehe Shownotes auf http://biertaucher.at - - - - - Biertaucher Folge 038 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:038 - Wed, 08 Feb 2012 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher038.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Florian Schweikert plaudern über freie Software und andere Nerd-Themen. Diesmal zu Gast: Johnny und Amin (?). Johnny liest Meldungen vor die wir gesammelt haben aber im Podcast nicht verwenden, Florian berichtet von der FOSDEM Konferenz in Belgien, Martin hat eine Montessori-Schulung besucht und erzählt davon, Horst berichtet vom Bitcoinstammtisch. Außerdem plaudern wir über Softwarelizenzen, Programmiersprachen, das offene Tablet Spark, über Shodan, die Suchmaschine für Hacker und Scriptkiddys. Gregor und Florian haben sich die erste Fogle vom Smarthomepodcast angeschaut, Horst war im Kino Empire_Me anschauen und hat den freien ebook Roman Incommunicado von Michel Reimon verschlungen. - - - - - Biertaucher Folge 037 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:037 - Wed, 01 Feb 2012 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher037.mp3 - Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen. Horst berichtet von seinen Erlebnissen auf der Austria Game Jam 2012. Horst und Gregor machen sich über den Watschenmann der Woche - Ansgar Heveling - lustig und scheitern (nicht ganz) an einer Near-Field-Communication zwischen 2 Android Handys. Gregor spricht über die Boxee-Box und Android4 Ice Cream Sandwich. Horst ist von Christoph Derndorfer (OLPC Austria) hat auf ein interessantes Video-Interview von Isaac Asimov Interview aus dem Jahr 1988 aufmerksam gemacht worden (computer-based individual learning). Weiters gibt es allerlei vermischte Meldungen. Abschließend im schöner-Leben Teil freuen wir uns auf den Iron-Sky Film aus Finnland und Gregor stellt einen neuen Podcast aus Wien vor: Gesellschaftliche Spannungsfelder der Informatik. - - - - - Biertaucher Folge 036 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:036 - Wed, 25 Jan 2012 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher036.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Florian SCHWEIKERT plaudern über freie Software und andere Nerd-Themen. Zwischen explodierenden Mate-Flaschen, Schokosüchtigen Schnorrerrinnen und lernenden Studenten vor denen wir in einen Uni-Hörsaal flüchten geht es dismal um folgende Themen: Acta, Sopa, Anonymus, episch blöde Reaktion auf Literaturkritik, Marint's Bericht von Subotron-Lecture über Cloud-Gaming, Bücherbesprechung: Hackerbrause, Bhudda (Grapical Novel), The Boy who harnessed the Wind (Kinderbuch). Filmbesprechung: Ziemlich beste Freunde. Außerdem gibt es allerlei zu OpenData, Openstreetmap (Linz), offline-lesen am Android, Apples Schulbücher u.v.a. - - - - - Biertaucher Folge 035 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:035 - Wed, 18 Jan 2012 18:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher035.mp3 - Horst JENS, Gregor PRIDUN, Martin MAYR und Florian SCHWEIKERT plaudern über freie Software und andere Nerd-Themen. Diesmal erstmalig dabei ist Florian SCHWEIKERT. Themen u.a.: Metaday zum Thema Urheberrecht, Sopa, Raspberry Pi, Kobo Ebook-Reader, zeichnemit.at, Petitionen, Vorratsdatenspeicherung. Buchbesprechungen: Umberto Ecco: Der Friedhof in Prag; Amy Chua: Battle Hymn of the Tiger Mother. Film: Sherlock Holmes. - - - - - Biertaucher Folge 034 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:034 - Wed, 11 Jan 2012 23:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher034.mp3 - Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen. Themen u.a.: Hühnerfleischskandal, CES, OLPC XO, Fernseher mit Myspace, Nokia, Retro-Gaming am Commodore C128 (C64), Elektroplankton (Musikspiel), Biertaucher-Kalender u.v.a. - - - - - Biertaucher Folge 033 - http://spielend-programmieren.at/de:podcast:biertaucher:2012:033 - Wed, 04 Jan 2012 08:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher033.mp3 - Horst JENS, Gregor PRIDUN und Martin MAYR plaudern über freie Software und andere Nerd-Themen. Diesmal zu Gast sind Harald PICHLER und Peter SCHLEINZER mit den Themen Haustechnik, Smart Home, Energie. Zuerst berichtet Gregor vom Podcaststammtisch und von seinen Erfahrungen mit Flattr. Horst spricht kurz über Frozen Planet (BBC-Serie), Open University und sinnlose Vorlesungen. Martin hat seit Weihnachten ein I-Pad getestet und verrät uns seine Erfahrungen damit. Anschließend erzählt Peter von seinen Versuchen einen smarten Pellet-Brennkessel zu kaufen und von seinem Smart Home. Harald erklärt Energie(politische) Themen wie Spannungsschwankungen im Stromnetz, Stromzähler (Smartmeter) und per Funk fernsteuerbare Steckdosen. Das Gespräch dreht sich in Folge um die Themen Energiesparen / Energieverschwendung und Energieverbrauch im Zusammenhang mit Wohnen, Heizen und Haushaltsgeräten. - - - - - Biertaucher Folge 032 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:032 - Fri, 30 Dec 2011 08:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher032.mp3 - Horst JENS plaudert über freie Software und andere Nerd-Themen: Diesmal geht es hauptsächlich um Computerspiele. Es gibt eine ausführliche Besprechung vom Humble Bundle 4. Man kann (Open-Source) Spiele per Flattr unterstüzten, u.a. Minecraft. Zum Abschluss ein Interview mit Spielend-programmieren Schüler Michael über sein (mit SCRATCH) selbst programmiertes Spiel Bat-Bomber. Außerdem Neues von Martin Balluchs Blog. - - - - - Biertaucher Folge 031 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:031 - Thu, 22 Dec 2011 15:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher031.mp3 - Horst JENS und Martin Mayr trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal ohne Gregor Pridun und daher mit schlechter Soundqualität. Themen u.a.: Westbahn, schöner leben in Wien (Kaffe trinken und vegetarisch essen), Helmpflicht beim Radfahren, Bikeboxen, Kopfhörer, Symbian, Google Docs, Spielebesprechungen (Dungeons of Dredmor und Gratuitous Space Battles, Humble Bundle), Filmbesprechung: Der (Tierschützer) Prozess, Habemus Papam. - - - - - Biertaucher Folge 030 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:030 - Thu, 15 Dec 2011 10:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher030.mp3 - Gregor PRIDUN, Horst JENS und Martin MAYR trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal ohne Gäste aber mit mehreren externen Interviews am Ende des Podcasts. Erstmals mit einer (Vor)lesung: Horst liest 3 entscheidende Seiten aus Martin Balluch's Buch Tierschützer-Staatsfeind vor. Gregor berichtet von seinen Erfahrungen mit dem neuen OYO E-reader. Martin reportet von Symbian Belle am Nokia N8. Horst war im Happylab und vor allem im Metalab beim SuperGameDevWeekend und hat dort ein Interview über 2 Jahre Python User Group Wien geführt (am Ende des Podcasts angefügt). Gregor hat noch immer nicht Blade Runner geschaut aber immerhin Bücher von Phillip K. Dick gelesen und sich den Nachttaxi Podcast angehört. Gregor und Martin erörtern Unterschiede zwischen der alten und der neuen Battlestar-Galactica TV-Serie. Horst hat sich den Film American Passages im Kino angschaut. Martin liefert seine erste Außenreportage von einer Kaffeeverkostung / mit insgesamt 3 Interviews (ebenfalls am Ende des Podcasts angefügt) u.a. zum Thema Fair-Trade und Kafeebauern. - - - - - Biertaucher Folge 029 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:029 - Wed, 07 Dec 2011 08:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher029.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Zu Gast: Max und Martin M. Max spricht über sein Informatik-Kustgeschichte Projekt http://www.explorartorium.info/ sowie über Computerspiele zum Thema Kunst. Horst hat einen Vortrag von Martin Balluch über dessen Buch „Tierschützer Staatsfeind“ gehört und berichtet kurz davon, Martin erzählt ausführlichst von seiner Vegetarierwerdung. Gregor war mit Horst auf der Roboxoticawährend um von Robotern gemixte Cocktails zu drinken. Außerdem: Computerspiele beim Humble Inroversion Bundle und Bericht von der Retro-Börse für klassische Computergames auf der TU Wien. Im Podcast inkludiert, aber auch extra abrufbar: Interviews von der Retro-Börse mit dem österreichischem Ti-99 club und einem retrogames-Verleger. Buchbesprechung: Snuff von Terry Pratchett. - - - - - Biertaucher Folge 028 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:028 - Wed, 30 Nov 2011 20:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher028.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Zu Gast: Martin M. und Motz. Horst outet den Wappler der Woche, Gregor spricht über englische Fernsehserien, Martin über Bluetooth, Symbian Handys und Songbird, Motz spricht über Ufo:Ai. Dazu gibt es wie immer kleinere Themen und Meldungen. Und erstmals wird aus dem Biertaucherkalender für die kommende Woche vorgelesen. - - - - - Biertaucher Folge 027 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:027 - Wed, 23 Nov 2011 09:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher027.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Schon zum zweiten Mal zu Gast ist diesmal Thomas Perl, der über Spieleprogrammierung, Nokia und Python Konferenzen, mobilen Plattformen, 3D-Grafik mit Pygame und seine Podcatcher-Software Gpodder berichtet. Danach plaudern wir über Ebooks, E-Reader, die Software Calibre und das epub-Format. Gregor hat im Kino u.a. Melancholia und Tim und Struppi angeschaut und erzählt davon. Außerdem gibt's ein aufgezeichnetes Gespräch zwischen Horst und Motz zum Thema Rogue-likes, Nethack und Dungeon Crawl. - - - - - Biertaucher Folge 026 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:026 - Fri, 18 Nov 2011 08:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher026.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Wobei wir diesmal vor lauter zuhören fast auf's Biertrinken vergessen haben. Zu Gast in dieser Folge sind Martin „Der Hörer“ Mayr. und Joseph „Aircraft“ Mangan. Martin hat heroischerweise das neue Spiel von Broken Rules probegespielt und berichtet darüber. Joseph erzählt (auf Englisch) von seinen Plänen die (Passagierjet) Pilotenausbildung zu open-sourcen. Horst war auf der Buchmesse Wien und hat die (Co)Autoren Albert Knorr und Marlen Raab interviewt (sehr interessantes Leser-Rekrutierungstool) sowie die Verlegerin Veronika Maria Stix vom Wiener Fantasy-only Verlag „Mondwolf“. Ganz kurz präsentiert wird das Buch „Die drei Drachen“ von Lukas Jamy, erwähnt wird ferner das Bildungsvolksbegehren. - - - - - Biertaucher Folge 025 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:025 - Wed, 09 Nov 2011 07:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher025.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal geht's um die brandneuen „Pages“ bei Google+, etwas ältere bulgarische Apple-Computer, Jogis Subotron Vortrag (Game Gardening Institute in Holland), Computerspiele (Humble Bundle, Horst's wöchentliches scheitern bei Dungeon Crawl), es gibt österreichische Podcast-Empfehlungen, wir reden über Programmiersprachen - - - - - Biertaucher Folge 024 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:024 - Wed, 02 Nov 2011 10:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher024.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal ohne Gregor (da krank), dafür mit den beiden Gästen Martin „der Hörer“ und Harald „the Developer“ Pichler. Leicht chaotisch geht es um Open Hardware und Open Source in der Haustechnik, Arduino, Beagle-Board und Open-Hardware Lizenzen (Harald). Martin steuert Podcastempfehlungen bei und gibt bemerkenswerte Einsichten in die Subkultur der Kaffebohnen-Selbströster. Horst berichtet vom Viennale - Film „Tahrir, Liberation Square“ (Aufzeichnung der Podiumsdiskussion mit dem Regisseur Savano gibt es unter Extra-Content). Im Anschluss folgt ein langes Interview auf Englisch mit Joseph Mangan ( eingewandert aus den USA nach Österreich, siehe auch Extra-Content) zum Thema (u.a.) kulturelle Unterschiede in der Business - Kultur zwischen Österreich, Brasilien und den USA. - - - - - Biertaucher Folge 023 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:023 - Wed, 26 Oct 2011 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher023.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal mit großem Bericht von der Gamecity 2011 im Wiener Rathaus, Interview mit Jogi Neufeld von Subotron und Harald Pichler (Linuxbox, Haussteuerung). Horst fordert auf, den „Profil“-Artikel zum Ösi-Trojaner zu lesen, Gregor und Horst berichten über ihre Erfahrungen mit Ubuntu 11.10 und erzählen über Podcasts, die sie gehört haben. U.v.m. - - - - - Biertaucher Folge 022 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:022 - Wed, 19 Oct 2011 20:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher022.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal mit Bericht vom Podcast-Barcamp, Unterschiede zwischen Flattr und Kachingle, Demoberichterstattung: OccupyVienna, Interview mit Schriftsteller Martin Auer. - - - - - Biertaucher Folge 021 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:021 - Wed, 12 Oct 2011 08:15:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher021.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal mit doppeltem Kulturteil: Filmbesprechung "Wie man leben soll" und Bericht über Mascheks Produktion "101010". Technik: Gregor berichtet vom Django-Programmieren und anderen CMS-Systemen. Politik: Horst erzählt vom Hanfwandertag (Demonstration) letzte Woche. u.s.w., u.s.f. - - - - - Biertaucher Folge 020 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:020 - Wed, 05 Oct 2011 07:45:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher020.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal Jubiläumsgeplauder in eine „tote Katze“: Horst bericht von Jogi's (Subotron) Spiele-Entwicklerparty (e-sport in Österreich, Spiel „Ludwig“, GameCity, Frog) und Vortragsreihe sowie dem Ganzkörperspiel „Ninja“ (kein (!) Computerspiel), Gregor philosphiert über die CMS-Systeme Joomla und Drupal, Horst berichtet vom Hanfwandertag und vom neusten Indy-Humble-Bundle game „Frozen Synaptic“, Gregor berichtet vom Film „Red State“, Horst vom Film „The Guard“ u.v.m. - - - - - Biertaucher Folge 019 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:019 - Wed, 28 Sep 2011 09:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher019.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal: Zombies ! Der Biertaucherpodcast verfolgt einen Zombieflashmob, bespricht das Buch „Civilisation“, berichtet vom Slash-Film-Festival, redet über Wikis und philosphiert über Microsoft neustes Rütteln am Watschenbaum (Windows 8 hardware lock). - - - - - Biertaucher Folge 018 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:018 - Wed, 21 Sep 2011 12:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher018.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal: VPN Netzwerke, Buchbesprechungen, Slash-Film-Festival. - - - - - Biertaucher Folge 017 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:017 - Thu, 15 Sep 2011 21:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher017.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal: Horst berichtet von der Sugarcamp Konferenz in Paris und bejammert den Diebstahl seines Handys. Gregor hat sich die Gnome Shell und Unity auf Ubuntu 11.10 angeschaut und empfiehlt Anime und Podcasts. - - - - - Biertaucher Folge 016 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:016 - Thu, 08 Sep 2011 13:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher016.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal: Horst berichtet von den Weizer Knoppixtagen, Gregor berichtet vo der AniNite´11 (Manga) auf der TU-Wien. Ferner: Knoppix, Computer(spiele) für Blinde, Sugar on a stick, Gregor hat genug vom Planet der Affen, Wilfred (US Serie) , Burgbau in Friesach. - - - - - Biertaucher Folge 015 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:015 - Thu, 01 Sep 2011 07:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher015.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal berichtet Gregor vom Planet der Affen (Teil1, 1968). - - - - - Biertaucher Folge 014 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:014 - Fri, 26 Aug 2011 17:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher014.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Gregors Küchenkastelcomputer mit Google-OS, Interview mit Christoph Derndorfer über das One-Laptop-per-Child Projekt (XO, 100$-Laptop), Gregors Aufzeichnung vom Bitcoinstammtisch im Metalab. - - - - - Biertaucher Folge 013 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:013 - Thu, 18 Aug 2011 08:30:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher013.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal mit Gastbeitrag von spielend-programmieren-Schüler Paul. Themen: Horst berichtet vom Chaos Communication Camp ( #cccamp11 ), Paul beschreibt das Opens-Source Spiel Xmoto und Gregor berichtet vom Bitcoinstammtsich. - - - - - Biertaucher Folge 012 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:012 - Tue, 09 Aug 2011 09:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher012.mp3 - Gregor PRIDUN und Horst JENS trinken Bier und plaudern über freie Software und andere Nerd-Themen. Diesmal mit Gast Armin PECHER. Themen u.a.: Horst will nach Berlin auf das CCCamp, Armin doziert über Wirtschaft und Film, Gregor pack seinen Onyo-Reader erzählt vom Film „The Boss of it all“. Außerdem: Neues vom Humble-Indie-Bundle3, Factor-E-Farm (open source ecology) - - - - - Biertaucher Folge 011 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:011 - Tue, 02 Aug 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher011.mp3 - Die 11. Biertaucher-Folge mit Horst JENS und Gregor PRIDUN. Themen u.a.: Biertaucher Podcast Folge 011: Horst und Gregor besuchen das Metalab, Gregor erzählt über seine schwierige Beziehung mit einem Motorola Handy und empfiehlt Podcasts. Horst hat versagt, "Virus Auto" gelesen und das "Humble Bundle 3" angespielt. Ankündigung vom Podcast-Barcamp, Voten beim European Podcast Award und einiges mehr. - - - - - Biertaucher Folge 010 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:010 - Tue, 26 Jul 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher010.mp3 - Die 10. Biertaucher-Jubiläums-Folge mit Horst JENS und Gregor PRIDUN. Themen u.a.: Huddle, Google+, Android, Scratch, Appinventor, Dwarf Fortress, OLPC, XO, TED, Ubuntu, Linux Advanced, Destop4Education, Lernstick, Transmetropolitan - - - - - Biertaucher Folge 009 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:009 - Tue, 19 Jul 2011 22:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher009.mp3 - Die 9. Biertaucher Folge mit Horst JENS aber ausnahmsweise ohne Gregor PRIDUN. Diesmal Mit Gastbeiträgen von Andreas und Andreas (Bitcoin) und Andie und Melanie (Partygespräche). Themen: - Buch: The Undercover Economist (Tim Harford), TED-Talk, Bericht vom Bitcoin-Stammtisch, Partygespräche über Nerd-Themen, Spiel: Heroes of Might and Magic - - - - - Biertaucher Folge 008 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:008 - Tue, 12 Jul 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher008.mp3 - Die 8. Biertaucher diesmal mit Gast Thomas Perl. Themen u.a.: - Google+, Gpodder, Europython, Buch: Adapt (Tim Harford), Comic: Transmetropolitan, Film: Ideocrazy - - - - - Biertaucher Folge 007 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:007 - Fri, 08 Jul 2011 08:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher007.mp3 - Die 7. Biertaucher-Folge (etwas verspätet) berichtet vom Vortrag von "RMS" Stallman in Wien, befasst sich mit dem verändern von Router-Software und bespricht u.a. 4x Spiele und den Film "Moon" - - - - Biertaucher Folge 006 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:006 - Wed, 29 Jun 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher006.mp3 - Die sechste Biertaucher-Folge dreht ums Thema "Krimskrams" bzw. "Spiele" und wird passenderweise durch nervige Störgeräusche von lärmenden spielenden Kindern untermalt. - - - - Biertaucher Folge 005 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:005 - Tue, 21 Jun 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher005.mp3 - Die fünfte Biertaucher-Folge dreht sich um die Themen Hardware zum Spielen und um Computerspiele. U.a.: Horst vermisst die nervigen Störgeräusche, Gregor liest viel zu spät Installationsanleitungen und beide sprechen eine Einladung für nächsten Dienstag aus zum Mitmachen beim Biertaucher-Podcast. - - - - Biertaucher Folge 004 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:004 - Tue, 14 Jun 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher004.mp3 - Die vierte Biertaucher-Folge handelt von Hardware, Spielen und -wie immer- dem nervigen Störgeräusch der Woche. - - - - Biertaucher Folge 003 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:003 - Tue, 07 Jun 2011 19:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher003.mp3 - Die dritte Biertaucher-Folge dreht sich um die Themen freie Software und Geld: speziell Flattr und Bitcoin. Ferner: Linuxwandertag, Steve Jobs, seltsame Geräusche in einem Uni-Stiegenhaus. - - - - Biertaucher Folge 002 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:002 - Tue, 31 May 2011 21:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher002.mp3 - In der zweiten Biertaucher-Folge plaudern Gregor und Horst über freie Software, steicheln pelzige Tiere von Alpha Centauri, werden von nervig quasselenden Studenten gestört, ätzen über Microsoft-Kunden, wundern sich über Gnome-Shell, Unity und einiges Mehr. Themen unter anderem: : freie Software, Unity, Gnome-Shell, Prägung, Windows-Käufer, Re:Publica, Mathematik, GameJam, Thomas Perl - - - - Biertaucher Folge 001 - http://spielend-programmieren.at/de:podcast:biertaucher:2011:001 - Tue, 24 May 2011 21:00:00 +0100 - http://spielend-programmieren.at/biertaucherfiles/biertaucher001.mp3 - In der ersten Biertaucher-Folge plaudern Gregor und Horst über freie Software und spekulieren über DEN Hörer. Themen: Richard Stallman, Free as Fredom 2.0, freie Software, Bier, schöne Frauen, github - - -
    -
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/dailymail.co.uk.xml b/vendor/fguillot/picofeed/tests/fixtures/dailymail.co.uk.xml deleted file mode 100644 index 8210943..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/dailymail.co.uk.xml +++ /dev/null @@ -1,1328 +0,0 @@ - - - - News | Mail Online - http://www.dailymail.co.uk/news/index.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Check out the latest breaking UK and world news with in-depth comment and analysis, pictures and videos from the Daily Mail and Mail on Sunday. - - en-gb - Copyright 2015 Associated Newspapers Ltd - Thu, 02 Jul 2015 12:33:53 +01:00 - Thu, 02 Jul 2015 12:33:53 +01:00 - editorial@mailonline.co.uk (Editor) - News - - Regional/Europe/United_Kingdom/News_and_Media/Newspapers - - - News | Mail Online - - http://i.dailymail.co.uk/i/furniture/mastHead_1_rss.png - - - http://www.dailymail.co.uk/news/index.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - - Laura Bassett comforted after England lionesses lose World Cup match to Japan - - - http://www.dailymail.co.uk/sport/sportsnews/article-3146732/Heartbreak-tears-England-Lionesses-crash-Women-s-World-Cup-defender-Laura-Bassett-scores-freak-goal-injury-time-Japan-final.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Laura Bassett, 31, had to be helped from the field by her teammates following a surprise own goal in the final minute of injury time against Japan which saw England crash out of the tournament. - - - Thu, 02 Jul 2015 23:18:09 +01:00 - - http://www.dailymail.co.uk/sport/sportsnews/article-3146732/Heartbreak-tears-England-Lionesses-crash-Women-s-World-Cup-defender-Laura-Bassett-scores-freak-goal-injury-time-Japan-final.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - FIFA via Getty Images - - - - - Ryanair passenger pinned to Tenerife airport tarmac after 'fighting and passing out' - - - http://www.dailymail.co.uk/travel/travel_news/article-3146903/Ryanair-passenger-pinned-airport-tarmac-police-Tenerife-fighting-behaving-inappropriately-women-passing-toilet.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - One passenger on board who photographed the incident, described how the man would not calm down after being led from the plane, which led to police restraining him on the airport apron. - - - Thu, 02 Jul 2015 22:52:29 +01:00 - - http://www.dailymail.co.uk/travel/travel_news/article-3146903/Ryanair-passenger-pinned-airport-tarmac-police-Tenerife-fighting-behaving-inappropriately-women-passing-toilet.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - BNPS.co.uk (01202 558833) -Pic: KeiranCampbell/BNPS -This is the dramatic moment a British holidaymaker was pinned down by police on an airport apron after causing havoc among passengers on board a flight. -Spanish police were waiting to detain the aggressive holidaymaker as the Ryanair plane landed in Tenerife after he was said to have acted inappropriately towards women passengers on board. -The incident happened on a 7am flight from Bournemouth to Tenerife on Tuesday. - - KeiranCampbell/BNPS - - - - - UK weather sees inch-wide hailstones fall as thunderstorms sweep the country - - - http://www.dailymail.co.uk/news/article-3146860/Summer-s-98F-Britain-bakes-hottest-July-day-record-thunderstorms-lightning-hailstones-size-2ps-fall.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Just hours after Britain experienced the hottest July day on record, thunderstorms swept through the north of the country leaving more than 57,500 homes without power today. - - - Thu, 02 Jul 2015 22:42:45 +01:00 - - http://www.dailymail.co.uk/news/article-3146860/Summer-s-98F-Britain-bakes-hottest-July-day-record-thunderstorms-lightning-hailstones-size-2ps-fall.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - JAMES LINSELL-CLARK / SWNS.com - - - - - Alton Towers crash again as Sonic Spinball ride carriages collide - - - http://www.dailymail.co.uk/news/article-3146958/Riders-left-hanging-Alton-Towers-rollercoaster-gets-stuck-mid-ride.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - This is the latest set-back to hit the beleaguered amusement park in Staffordshire - last month 16 people were injured when two carriages on the Smiler rollercoaster crashed into each other. - - - Thu, 02 Jul 2015 19:43:28 +01:00 - - http://www.dailymail.co.uk/news/article-3146958/Riders-left-hanging-Alton-Towers-rollercoaster-gets-stuck-mid-ride.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Adam Croft and partner Nikki Pepperell convert a VAN into their flat of dreams - - - http://www.dailymail.co.uk/news/article-3146971/A-mobile-home-Couple-fed-cost-renting-spend-10-000-create-flat-dreams-old-white-VAN.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Adam Croft and Nikki Pepperell from Stroud in Gloucestershire have converted a £3,500 Ford Transit van into their own home after finding the cost of renting a house too much to bear. - - - Thu, 02 Jul 2015 18:38:31 +01:00 - - http://www.dailymail.co.uk/news/article-3146971/A-mobile-home-Couple-fed-cost-renting-spend-10-000-create-flat-dreams-old-white-VAN.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Alastair JohnstoneSWNS.com - - - - - The bargain £6.50 sun cream that outshines one costing £158 - - - http://www.dailymail.co.uk/femail/article-3146349/Safe-cheap-not-greasy-plus-no-streaky-white-marks-bargain-6-50-sun-cream-outshines-one-costing-158.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Is it worth splashing out on pricey sun creams? FEMAIL's Marianne Power puts six to the test, ranging in price from basement-bargain options to the ridiculously expensive. Guess which came top? - - - Thu, 02 Jul 2015 17:37:20 +01:00 - - http://www.dailymail.co.uk/femail/article-3146349/Safe-cheap-not-greasy-plus-no-streaky-white-marks-bargain-6-50-sun-cream-outshines-one-costing-158.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Getty Images - - - - - Cabinet fury as BBC refuses to stop using 'Islamic State' to be FAIR to terror group - - - http://www.dailymail.co.uk/news/article-3146855/We-fair-ISIS-BBC-refuses-MPs-demand-stop-using-Islamic-State-refer-terrorist-group.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Tony Hall, the director general of the BBC, said that using the alternative Arabic name 'Daesh' would imply support for those who oppose ISIS, breaking the BBC's commitment to impartiality. - - - Thu, 02 Jul 2015 16:31:10 +01:00 - - http://www.dailymail.co.uk/news/article-3146855/We-fair-ISIS-BBC-refuses-MPs-demand-stop-using-Islamic-State-refer-terrorist-group.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Tony Hall, the Director-General of the BBC, awaits the arrival of Queen Elizabeth II to open the new BBC Broadcasting House on June 7, 2013 in London, England. - -LONDON, UNITED KINGDOM - JUNE 07: (EMBARGOED FOR PUBLICATION IN UK NEWSPAPERS UNTIL 48 HOURS AFTER CREATE DATE AND TIME) - - -(Photo by Max Mumby/Indigo/Getty Images) - - Getty Images - - - - - Medals awarded to British spy Violette Szabo set to sell for £300k - - - http://www.dailymail.co.uk/news/article-3147043/Medals-awarded-beautiful-British-spy-tortured-executed-Nazis-daring-missions-inspired-film-Carve-Pride-set-sell-300-000.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - British spy Violette Szabo, who was executed by the Germans, was posthumously awarded the prestigious George Cross for her heroism in Nazi occupied France. - - - Thu, 02 Jul 2015 16:24:43 +01:00 - - http://www.dailymail.co.uk/news/article-3147043/Medals-awarded-beautiful-British-spy-tortured-executed-Nazis-daring-missions-inspired-film-Carve-Pride-set-sell-300-000.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - DixNoonanWebb/BNPS - - - - - Sexymp is Parliament's most popular banned website with Urban Dictionary 2nd - - - http://www.dailymail.co.uk/news/article-3145052/Most-popular-banned-website-Parliament-one-rates-sexy-MPs-half-million-attempts-view-sexymp-uk.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Parliamentarians, peers and their staff tried to access www.sexymp,co.uk created by Made in Chelsea star Francis Bouille (pictured) 484,683 times from computers in Westminster last year. - - - Thu, 02 Jul 2015 15:23:16 +01:00 - - http://www.dailymail.co.uk/news/article-3145052/Most-popular-banned-website-Parliament-one-rates-sexy-MPs-half-million-attempts-view-sexymp-uk.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - SWNS.com - - - - - House prices show a surprise dip in June says Nationwide - - - http://www.dailymail.co.uk/money/mortgageshome/article-3146867/House-prices-surprise-dip-June-says-Nationwide.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Mortgage lender Nationwide said house prices dropped by 0.2 per cent on the month in June - well below economists' forecasts of a 0.2 per cent rise. - - - Thu, 02 Jul 2015 15:12:11 +01:00 - - http://www.dailymail.co.uk/money/mortgageshome/article-3146867/House-prices-surprise-dip-June-says-Nationwide.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - St Lawrence church and town hall in Reading. - - - -Pictures By Graham Hussey - - None - - - - - Britain could start bombing ISIS in Syria after Tunisia beach attack - - - http://www.dailymail.co.uk/news/article-3147000/Britain-start-bombing-ISIS-Syria-wake-Tunisia-attack-ministers-warned-no-military-necessity.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Defence Secretary Michael Fallon will today tell MPs that it is 'illogical' for UK forces to carry out strikes in Iraq but not in Syria, but he faces claims there is little the the UK can do to help US strikes. - - - Thu, 02 Jul 2015 15:05:22 +01:00 - - http://www.dailymail.co.uk/news/article-3147000/Britain-start-bombing-ISIS-Syria-wake-Tunisia-attack-ministers-warned-no-military-necessity.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Picture (Device Independent Bitmap) 1.jpg - - None - - - - - BBC announces plans to slash 1,000 jobs over £150m licence fee shortfall - - - http://www.dailymail.co.uk/news/article-3146994/BBC-announces-plans-slash-1-000-jobs.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The job cuts were initially expected to be 'in the high hundreds' as the broadcaster aims to become 'leaner and simpler' - but the number of jobs to go is higher than anticipated. - - - Thu, 02 Jul 2015 15:02:55 +01:00 - - http://www.dailymail.co.uk/news/article-3146994/BBC-announces-plans-slash-1-000-jobs.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - PA - - - - - South Wales man calls in ghostbuster to catch demon molesting his wife - - - http://www.dailymail.co.uk/news/article-3147073/Husband-calls-ghostbuster-catch-demon-molesting-wife.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Father-of-three Keiron Fry, 32, from New Tredegar, south Wales, paid a paranormal investigator £100 to banish three ghosts which have been terrorising his family for nine months. - - - Thu, 02 Jul 2015 14:29:36 +01:00 - - http://www.dailymail.co.uk/news/article-3147073/Husband-calls-ghostbuster-catch-demon-molesting-wife.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - WALES NEWS SERVICE - - - - - Goldfinger gangster John Palmer shot dead outside his Essex cottage - - - http://www.dailymail.co.uk/news/article-3146467/Goldfinger-gangster-John-Palmer-shot-dead-outside-Essex-cottage.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Notorious timeshare conman John ‘Goldfinger’ Palmer, pictured, has been shot dead in the back garden of his isolated rural cottage in Essex. He was found collapsed outside his house last week. - - - Thu, 02 Jul 2015 14:09:31 +01:00 - - http://www.dailymail.co.uk/news/article-3146467/Goldfinger-gangster-John-Palmer-shot-dead-outside-Essex-cottage.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Irish singer Val Doonican dies aged 88 - - - http://www.dailymail.co.uk/news/article-3147046/Irish-singer-television-personality-Val-Doonican-dies-peacefully-home-aged-88.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Doonican passed away peacefully at his home in Buckinghamshire yesterday evening his family confirmed in a statement that paid tribute to him as a 'wonderful husband, father and grandfather'. - - - Thu, 02 Jul 2015 14:02:10 +01:00 - - http://www.dailymail.co.uk/news/article-3147046/Irish-singer-television-personality-Val-Doonican-dies-peacefully-home-aged-88.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - BBC - - - - - Man who turned derelict land into a community garden is ordered to dig it up - - - http://www.dailymail.co.uk/news/article-3147053/Keen-gardener-spent-5-000-turning-derelict-land-block-flats-urban-oasis-ordered-rip-didn-t-permission.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Jam Imani Rad, pictured, spent his life savings on plants, trellises and statues to transform the empty plot in front of his flat in Preston, Lancashire, into a vibrant outdoor space for his neighbours. - - - Thu, 02 Jul 2015 13:57:37 +01:00 - - http://www.dailymail.co.uk/news/article-3147053/Keen-gardener-spent-5-000-turning-derelict-land-block-flats-urban-oasis-ordered-rip-didn-t-permission.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - rossparry.co.uk - - - - - Lightning bolt strikes Newcastle home inches from where woman was watching TV - - - http://www.dailymail.co.uk/news/article-3146886/Lightning-bolt-strikes-home-inches-woman-watching-TV.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Lorraine Gibson was watching TV in her bedroom in Newcastle when the lightning tore a huge hole in the roof - sparking a blaze that ripped through the loft and second floor. - - - Thu, 02 Jul 2015 13:34:45 +01:00 - - http://www.dailymail.co.uk/news/article-3146886/Lightning-bolt-strikes-home-inches-woman-watching-TV.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Newcastle Chronicle - - - - - Calais strike crisis sees 3,000 lorries stuck in Kent on UK's 'hottest day' - - - http://www.dailymail.co.uk/news/article-3145596/Travellers-face-disruption-Calais-today-French-union-leader-threatens-ll-block-summer-shutting-Channel-Tunnel-port.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - In scenes haulage bosses described as ‘absolute mayhem’, stranded truckers were yesterday forced to beg for food and water in 100F heat as migrants and strikers ran riot in Calais. - - - Thu, 02 Jul 2015 13:25:54 +01:00 - - http://www.dailymail.co.uk/news/article-3145596/Travellers-face-disruption-Calais-today-French-union-leader-threatens-ll-block-summer-shutting-Channel-Tunnel-port.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Michael Pickin - - - - - Britain sends £300m to Africa and the Middle East to stop flow of of migrants - - - http://www.dailymail.co.uk/news/article-3147017/Britain-sends-300million-Africa-Middle-East-stop-growing-flow-migrants-wanting-travel-Europe.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - International Development Secretary Justine Greening said the growing migrant crisis in Calais and the Mediterranean was proof that 'the world's problems touch our lives here in Britain'. - - - Thu, 02 Jul 2015 12:53:42 +01:00 - - http://www.dailymail.co.uk/news/article-3147017/Britain-sends-300million-Africa-Middle-East-stop-growing-flow-migrants-wanting-travel-Europe.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Pictured: a vessel in distress and packed with migrants is brought alongside one of HMS Bulwark's Landing Craft in the Mediterranean on 20th June 2015.\n\n\nHMS Bulwark brings onboard over 300 migrants during a recent Safety of Life at Sea (SOLAS) rescue. HMS Bulwark is conducting SOLAS operations under OP Weald the UK¿s contribution to the saftey of life at sea with migrants traveling from Libya to Europe.\n\n\n - - Engineering Technician Louise George, Royal Navy? - - - - - One in five migrants granted citizenship in Europe choose to live in the UK - - - http://www.dailymail.co.uk/news/article-3146799/One-five-migrants-granted-citizenship-Europe-choose-live-UK-200-000-successfully-applied-one-year-second-Spain.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - More than 207,000 migrants were granted citizenship in the UK in 2013, an average of 560 people a day, compared to just just 97,000 in France and 115,000 in Germany. - - - Thu, 02 Jul 2015 12:51:55 +01:00 - - http://www.dailymail.co.uk/news/article-3146799/One-five-migrants-granted-citizenship-Europe-choose-live-UK-200-000-successfully-applied-one-year-second-Spain.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Undated handout images released by the Home Office of the biometric ePassport, with the symbol on display below the Royal crest denoting a biometric document. PRESS ASSOCIATION Photo. Picture date: Monday 24 July 2006. Passport fees are to rise for the second time in 10 months - with an overall jump of 57% - to pay for new security measures, the Government announced today. From October 5, a standard 10-year British passport will cost 66, up from the current 51 or a 29% rise. Photo credit should read: Home Office/PA - - PA - - - - - Golf GTi joins 70s and 80s sportscars in fastest rising classic cars - - - http://www.dailymail.co.uk/money/cars/article-3145744/Golf-GTi-joins-70s-80s-sportscars-fastest-rising-classic-cars.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Lesser known classic cars have seen the biggest gain in price during the last six months according to the latest index from expert valuation firm Hagerty. - - - Thu, 02 Jul 2015 12:51:33 +01:00 - - http://www.dailymail.co.uk/money/cars/article-3145744/Golf-GTi-joins-70s-80s-sportscars-fastest-rising-classic-cars.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Hagerty - - - - - Teenager reveals how she escaped after being raped in a churchyard - - - http://www.dailymail.co.uk/femail/article-3146929/Teenager-punched-ground-raped-horrifying-churchyard-ordeal-reveals-escaped.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Ashleigh Roscow, 18, was attacked by Adam Riding, 24, in a churchyard near her home after a night out last year. Riding forced her to call him 'master' and punched her while assaulting her. - - - Thu, 02 Jul 2015 12:11:25 +01:00 - - http://www.dailymail.co.uk/femail/article-3146929/Teenager-punched-ground-raped-horrifying-churchyard-ordeal-reveals-escaped.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - PA Real Life/Tony Spencer - - - - - Heather Watson says she won't let death threats ruin Wimbledon 2015 chances - - - http://www.dailymail.co.uk/news/article-3146972/Heather-Watson-says-won-t-let-death-threats-ruin-Wimbledon-chances.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Speaking before yesterday's match at Wimbledon, the British number one revealed that she has faced online death threats – mainly from gamblers who lost money betting on her. - - - Thu, 02 Jul 2015 12:03:53 +01:00 - - http://www.dailymail.co.uk/news/article-3146972/Heather-Watson-says-won-t-let-death-threats-ruin-Wimbledon-chances.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Graham Chadwick - - - - - Brits flee Herne Bay after a SHARK is spotted off the Kent coast - - - http://www.dailymail.co.uk/news/article-3146760/Terrified-Brits-flee-water-grab-children-safety-SHARK-spotted-just-25-yards-Kent-coast.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Swimmers fled the waters around Herne Bay today after what appeared to be a shark's fin was spotted protruding from the water before moving off towards the town of Reculver. - - - Thu, 02 Jul 2015 11:53:07 +01:00 - - http://www.dailymail.co.uk/news/article-3146760/Terrified-Brits-flee-water-grab-children-safety-SHARK-spotted-just-25-yards-Kent-coast.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - kent 999 herne bay 2.JPG - - None - - - - - 60 Minute Makeover's Michelle Watt killed herself because of chronic headaches - - - http://www.dailymail.co.uk/news/article-3146969/Michelle-Watt-killed-chronic-headaches.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Former lightweight world champion Jim Watt, 66, said his daughter Michelle (pictured together) became depressed and took her life at her home in Stirlingshire, Scotland. - - - Thu, 02 Jul 2015 11:34:47 +01:00 - - http://www.dailymail.co.uk/news/article-3146969/Michelle-Watt-killed-chronic-headaches.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - - - - - - Mister Eaters takeaway boss creates 2k calorie deep-fried Big Mac in doner meat - - - http://www.dailymail.co.uk/news/article-3146893/Kebab-burger-Takeaway-boss-creates-2-000-calorie-deep-fried-Big-Mac-doner-meat-dubbed-MacDoner.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - John Clarkson of Mister Eaters fish and chip shop in Preston came up with the idea of the 'MacDoner' by encasing a burger in rolled out doner meat and then deep frying it in chip shop batter. - - - Thu, 02 Jul 2015 11:28:48 +01:00 - - http://www.dailymail.co.uk/news/article-3146893/Kebab-burger-Takeaway-boss-creates-2-000-calorie-deep-fried-Big-Mac-doner-meat-dubbed-MacDoner.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Cavendish Press - - - - - Boy, 2, may be scarred for life after Tesco plaster 'ripped the flesh' from his face and the wound became infected - - - http://www.dailymail.co.uk/health/article-3146934/Boy-2-scarred-life-Tesco-plaster-ripped-flesh-face-wound-infected.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Kimberley Ambrose, 25, from Holyhead, North Wales, says her son Jake was left screaming in pain when the plaster also tore off the skin from his face when she removed it. - - - Thu, 02 Jul 2015 10:53:02 +01:00 - - http://www.dailymail.co.uk/health/article-3146934/Boy-2-scarred-life-Tesco-plaster-ripped-flesh-face-wound-infected.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - MERCURY PRESS - - - - - Sharon Nesmith becomes the Army’s first female commander of a brigade - - - http://www.dailymail.co.uk/news/article-3146597/Married-mother-two-Army-s-female-commander-brigade-5-000-frontline-troops.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Brigadier Sharon Nesmith, in her mid-40s, pictured, has become the highest ranking female to be in charge of some 5,000 frontline soldiers in the 1st Signal Brigade. - - - Thu, 02 Jul 2015 10:28:29 +01:00 - - http://www.dailymail.co.uk/news/article-3146597/Married-mother-two-Army-s-female-commander-brigade-5-000-frontline-troops.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - WO2 Ian Houlding GBR Army - - - - - Vicky Balch who lost leg in Alton Towers crash reveals 1st picture since surgery - - - http://www.dailymail.co.uk/news/article-3146816/Dancer-lost-leg-Alton-Towers-crash-pictured-time-surgery-Army-Major-limb-removed.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Vicky Balch, 20, had her right leg amputated below the knee last weekend and has now been pictured for the first time since surgery alongside Major Kate Philp, 35, who lost a leg in Afghanistan. - - - Thu, 02 Jul 2015 09:59:59 +01:00 - - http://www.dailymail.co.uk/news/article-3146816/Dancer-lost-leg-Alton-Towers-crash-pictured-time-surgery-Army-Major-limb-removed.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Alton Towers Victim Vicky Balch/Twitter ?@vickyj_b Jun 30 -Taken without permission (Request sent at 0200 02/07/15) at the request of the News Desk Please legal before publishing - - Vicky Balch/Twitter - - - - - Sham marriages slip through net as British officials fear racist accusations  - - - http://www.dailymail.co.uk/news/article-3146342/Sham-marriages-slip-net-officials-fear-accusations-racism-religious-discrimination-says-Britain-s-former-Muslim-lawyer.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Hidden cameras captured a 'fixer' saying that officials are 'scared' of discussing ethnicity or religion as they are worried about appearing racist. - - - Thu, 02 Jul 2015 09:46:53 +01:00 - - http://www.dailymail.co.uk/news/article-3146342/Sham-marriages-slip-net-officials-fear-accusations-racism-religious-discrimination-says-Britain-s-former-Muslim-lawyer.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - ITV - - - - - Universities honours degrees to replaced with US-style points system - - - http://www.dailymail.co.uk/news/article-3146722/Universities-making-hard-sift-sheep-goats-dishing-firsts-warns-minister.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Many students are simply ‘coasting’ knowing they will emerge with a first-class honours or the next best category, a 2:1 degree, Universities Minister Jo Johnson has said. - - - Thu, 02 Jul 2015 09:42:28 +01:00 - - http://www.dailymail.co.uk/news/article-3146722/Universities-making-hard-sift-sheep-goats-dishing-firsts-warns-minister.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - UNIVERSITY STUDENTS AT THEIR GRADUATION CEREMONY WEARING THEIR MORTAR BOARDS AND GOWNS -AT A BRITISH UNIVERSITY. - - Alamy - - - - - Radio 4's Jenni Murray has lost two stone in two weeks after gastric surgery - - - http://www.dailymail.co.uk/femail/article-3146357/I-defied-family-weight-loss-op-FAR-drastic-gastric-band-Radio-4-star-Jenni-Murray-lost-two-stone-two-weeks.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Inspired by the positive experiences of friends Fern Britton and Vanessa Feltz, Jenni Murray decided to undergo a sleeve gastrectomy to reduce the volume of her stomach permanently. - - - Thu, 02 Jul 2015 09:23:05 +01:00 - - http://www.dailymail.co.uk/femail/article-3146357/I-defied-family-weight-loss-op-FAR-drastic-gastric-band-Radio-4-star-Jenni-Murray-lost-two-stone-two-weeks.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - IAN MCILGORM - - - - - You will never over-rule English MPs, David Cameron tells the SNP - - - http://www.dailymail.co.uk/news/article-3146721/You-never-rule-English-MPs-David-Cameron-tells-SNP.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Chris Grayling, the Leader of the Commons, is expected to unveil plans for Scottish MPs to be excluded from certain stages of the process of passing laws which do not affect their constituents. - - - Thu, 02 Jul 2015 09:00:19 +01:00 - - http://www.dailymail.co.uk/news/article-3146721/You-never-rule-English-MPs-David-Cameron-tells-SNP.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Prime Minister David Cameron speaks during Prime Minister's Questions in the House of Commons, London. PRESS ASSOCIATION Photo. Picture date: Wednesday July 1, 2015. See PA story POLITICS PMQs Cameron. Photo credit should read: PA/PA Wire - - PA - - - - - You will never over-rule English MPs, David Cameron tells the SNP - - - http://www.dailymail.co.uk/news/article-3146721/You-never-rule-English-MPs-David-Cameron-tells-SNP.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Chris Grayling, the Leader of the Commons, is expected to unveil plans for Scottish MPs to be excluded from certain stages of the process of passing laws which do not affect their constituents. - - - Thu, 02 Jul 2015 09:00:19 +01:00 - - http://www.dailymail.co.uk/news/article-3146721/You-never-rule-English-MPs-David-Cameron-tells-SNP.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Prime Minister David Cameron speaks during Prime Minister's Questions in the House of Commons, London. PRESS ASSOCIATION Photo. Picture date: Wednesday July 1, 2015. See PA story POLITICS PMQs Cameron. Photo credit should read: PA/PA Wire - - PA - - - - - NHS computer system is 4 years behind schedule and £26m over budget - - - http://www.dailymail.co.uk/news/article-3146829/Four-years-schedule-26million-budget-NHS-computer-delivered-data-just-one-customer.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The programme, designed to give easy access to information gathered from GP's surgeries, will now only be used for two years and may never work as originally intended, a report says. - - - Thu, 02 Jul 2015 09:00:01 +01:00 - - http://www.dailymail.co.uk/news/article-3146829/Four-years-schedule-26million-budget-NHS-computer-delivered-data-just-one-customer.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Female doctor typing on computer. -B26MCK - - Alamy - - - - - Wimbledon 2Day is like Top Gear meets Play School writes JAN MOIR - - - http://www.dailymail.co.uk/tvshowbiz/article-3146621/It-s-like-Gear-meets-Play-School-JAN-MOIR-savages-Wimbledon-s-new-highlights-s-driving-fans-mad.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - JAN MOIR: Clare Balding stands on the fake grass by the fake bar making fake conversation with the fake audience who now and again emit peals of fake laughter, like plastic hyenas. - - - Thu, 02 Jul 2015 08:40:14 +01:00 - - http://www.dailymail.co.uk/tvshowbiz/article-3146621/It-s-like-Gear-meets-Play-School-JAN-MOIR-savages-Wimbledon-s-new-highlights-s-driving-fans-mad.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Cherie Blair blitzed Hillary Clinton with 19 e-mails to meet a Qatari royal - - - http://www.dailymail.co.uk/news/article-3146681/Cherie-Blair-blitzed-Hillary-Clinton-19-e-mails-urging-meet-member-Qatari-royal-family-U-S-government-records-reveal.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Cherie Blair asked for ‘woman to woman’ talks with Sheikha Mozah, according to emails released from the time Hillary Clinton was US Secretary of State. - - - Thu, 02 Jul 2015 08:11:42 +01:00 - - http://www.dailymail.co.uk/news/article-3146681/Cherie-Blair-blitzed-Hillary-Clinton-19-e-mails-urging-meet-member-Qatari-royal-family-U-S-government-records-reveal.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - WASHINGTON - OCTOBER 07: U.S. Secretary of State Hillary Rodham Clinton (L) and former British first lady Cherie Blair talk during an event at the State Department on October 7, 2010 in Washington, DC. The event was held to announce the mWomen initative that is is designed to bring the benefits of mobile phones to women in developing markets worldwide. (Photo by Mark Wilson/Getty Images) *** Local Caption *** Cherie Blair;Hillary Rodham Clinton - - Getty Images - - - - - UK removal firm hit with £18k bill after 13 illegal immigrants found in lorry - - - http://www.dailymail.co.uk/news/article-3146254/UK-removal-firm-hit-18-000-bill-having-13-illegal-immigrants-lorry-reported-it.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - A driver for MoveCorp Ltd, based in Walsall, had pulled over on the M25 motorway on his return trip from France after being alerted to banging noises coming from the back of his removal lorry. - - - Thu, 02 Jul 2015 07:51:40 +01:00 - - http://www.dailymail.co.uk/news/article-3146254/UK-removal-firm-hit-18-000-bill-having-13-illegal-immigrants-lorry-reported-it.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - DAILY MAIL COMMENT: Time to end 50 years of political cowardice - - - http://www.dailymail.co.uk/debate/article-3146719/DAILY-MAIL-COMMENT-Time-end-50-years-political-cowardice.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Even after yesterday’s long-delayed publication of Howard Davies’s report, we seem hardly any closer to a decision on where to expand airport capacity in the South East. - - - Thu, 02 Jul 2015 07:26:43 +01:00 - - http://www.dailymail.co.uk/debate/article-3146719/DAILY-MAIL-COMMENT-Time-end-50-years-political-cowardice.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - PA - - - - - Angela Wrightson killed by teen girls with 'kettle' who put pictures on Snapchat - - - http://www.dailymail.co.uk/news/article-3146095/Teenage-girls-13-14-used-TV-coffee-table-printer-kettle-pan-batter-woman-death-sustained-brutal-attack-took-selfies-scene.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Angela Wrightson, 39, (pictured) was subjected to a 'sustained and brutal' assault before her half-naked body was found at her home in Hartlepool, last December, Teesside Crown Court heard. - - - Thu, 02 Jul 2015 07:24:27 +01:00 - - http://www.dailymail.co.uk/news/article-3146095/Teenage-girls-13-14-used-TV-coffee-table-printer-kettle-pan-batter-woman-death-sustained-brutal-attack-took-selfies-scene.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - © SWNS.COM - - - - - Police bungle HALF of online child abuse cases reveals report  - - - http://www.dailymail.co.uk/news/article-3146630/Police-bungle-HALF-online-child-abuse-cases-Examination-allegations-superficial-basic-police-work-not-carried-damning-reports-find.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Experts also say that 38 per cent of probes into all cases involving vulnerable children are riddled with ‘weaknesses and inconsistencies’. - - - Thu, 02 Jul 2015 06:30:36 +01:00 - - http://www.dailymail.co.uk/news/article-3146630/Police-bungle-HALF-online-child-abuse-cases-Examination-allegations-superficial-basic-police-work-not-carried-damning-reports-find.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Getty Images - - - - - MPs could be asked to authorise bombing campaign against ISIS in Syria - - - http://www.dailymail.co.uk/news/article-3146219/MPs-asked-authorise-bombing-campaign-against-ISIS-Syria-following-Tunisian-beach-massacre-reveals-Fallon.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Michael Fallon said it was ‘illogical’ for the RAF to be bombing IS positions in Iraq, but not joining the American-led assault on their bases in neighbouring Syria. - - - Thu, 02 Jul 2015 06:15:08 +01:00 - - http://www.dailymail.co.uk/news/article-3146219/MPs-asked-authorise-bombing-campaign-against-ISIS-Syria-following-Tunisian-beach-massacre-reveals-Fallon.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - LONDON, ENGLAND - JUNE 29: British Secretary of State for Defence Michael Fallon walks along Whitehall on June 26, 2015 in London, England. British Prime Minister David Cameron has called a meeting of the government emergency Cobra committee following terror attacks in France, Kuwait and Tunisia. A total of 38 people, the majority of them British, were killed by a gunmen in an attack on a beach in the Tunisian resort of Sousse. (Photo by Rob Stothard/Getty Images) - - Getty Images - - - - - Serena Williams to face Heather Watson, British no 1, in Wimbledon's third round - - - http://www.dailymail.co.uk/news/article-3146584/Heather-s-heroine-make-Serena-sweat-British-number-1-powers-round-faces-showdown-five-times-champion.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The 23-year-old cruised past former world number five Daniela Hantuchova in straight sets yesterday at Wimbledon. But her big win now sets her up for a clash with tournament favourite Serena Williams. - - - Thu, 02 Jul 2015 06:04:36 +01:00 - - http://www.dailymail.co.uk/news/article-3146584/Heather-s-heroine-make-Serena-sweat-British-number-1-powers-round-faces-showdown-five-times-champion.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Getty Images - - - - - Clarifications and corrections for extremism on university campuses graphic - - - http://www.dailymail.co.uk/home/article-3146759/Clarifications-corrections.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - To report an inaccuracy, please email corrections@dailymail.co.uk. To make a formal complaint under IPSO rules please go to www.dailymail.co.uk/readerseditor. - - - Thu, 02 Jul 2015 04:18:57 +01:00 - - http://www.dailymail.co.uk/home/article-3146759/Clarifications-corrections.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - UCL has one rule for hate preachers and another for Tim Hunt by Bel Mooney - - - http://www.dailymail.co.uk/femail/article-3146692/BEL-MOONEY-does-alma-mater-one-rule-hate-preachers-scientists-make-daft-jokes.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Sir Tim Hunt quickly found his career and reputation, built up over 50 years, all but ruined, writes BEL MOONEY. - - - Thu, 02 Jul 2015 03:38:38 +01:00 - - http://www.dailymail.co.uk/femail/article-3146692/BEL-MOONEY-does-alma-mater-one-rule-hate-preachers-scientists-make-daft-jokes.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - PA - - - - - The tax disc fiasco and the lesson the State never learns by STEPHEN GLOVER - - - http://www.dailymail.co.uk/news/article-3146667/STEPHEN-GLOVER-tax-disc-fiasco-lesson-State-never-learns-t-broke-don-t-fix-it.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - For 93 years it fulfilled its function more or less perfectly. I never heard a single soul complain about it. The little disc on a windscreen notified the authorities that a car was properly taxed, and reminded owners just how much time remained until they had to renew it. - - - Thu, 02 Jul 2015 02:44:23 +01:00 - - http://www.dailymail.co.uk/news/article-3146667/STEPHEN-GLOVER-tax-disc-fiasco-lesson-State-never-learns-t-broke-don-t-fix-it.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Alamy - - - - - Thousands of Wimbledon spectators evacuated after fire on Centre Court - - - http://www.dailymail.co.uk/news/article-3146493/Thousands-terrified-spectators-evacuated-Wimbledon-fire-breaks-Centre-Court.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Thousands of people were forced to abandon their dinner and drinks after a fire broke out on Centre Court in south-west London. - - - Thu, 02 Jul 2015 02:00:16 +01:00 - - http://www.dailymail.co.uk/news/article-3146493/Thousands-terrified-spectators-evacuated-Wimbledon-fire-breaks-Centre-Court.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - AFP/Getty Images - - - - - Karen Danczuk hits back at her Twitter trolls as she's pictured in London - - - http://www.dailymail.co.uk/news/article-3146455/I-m-glad-m-not-size-8-prefer-curves-Karen-Danczuk-hits-Twitter-trolls-s-pictured-London-s-not-selfie.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Karen Danczuk, 32, posted a photo of herself in a bikini online with the caption: 'By golly there's a lot of hate about my size.' Today she was pictured stepping out in London without her wedding ring. - - - Thu, 02 Jul 2015 01:55:43 +01:00 - - http://www.dailymail.co.uk/news/article-3146455/I-m-glad-m-not-size-8-prefer-curves-Karen-Danczuk-hits-Twitter-trolls-s-pictured-London-s-not-selfie.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Picture Shows: Karen Danczuk July 01, 2015 - - ** min web online fee £150 for set ** - - Karen Danczuk is spotted out and about in London, England; days after her split from her husband, Labour MP Simon Danczuk, was announced. - - The "selfie queen" kept cool on the hottest day of the year so far in a white mini dress and high-heeled nude sandals. - - ** min web / online fee £150 for set ** - - Exclusive All Rounder - WORLDWIDE RIGHTS - FameFlynet UK © 2015 - Tel : +44 (0)20 3551 5049 - Email : info@fameflynet.uk.com - - Paul/FameFlynet.uk.com - - - - - Prince Charles's charity joins protests against welfare cuts - - - http://www.dailymail.co.uk/news/article-3146639/Now-Charles-s-charity-joins-protests-against-welfare-cuts-make-harder-jobless-young-people-work.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - In an unprecedented political intervention, the Prince’s Trust called for a halt to curbs on housing benefit and said welfare cuts will make it harder for disadvantaged young people to get work. - - - Thu, 02 Jul 2015 01:20:14 +01:00 - - http://www.dailymail.co.uk/news/article-3146639/Now-Charles-s-charity-joins-protests-against-welfare-cuts-make-harder-jobless-young-people-work.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Tim Rooke/REX Shutterstock - - - - - Tiger Woods 'began dating' Amanda Boyd while he was with Lindsey Vonn - - - http://www.dailymail.co.uk/news/article-3146315/Tiger-Woods-having-affair-ex-wife-friend-fellow-professional-golfer-Report-claims-Serial-cheater-began-dating-woman-Lindsey-Vonn.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The 39-year old serial cheater is said to be having a 'steamy affair' with Amanda Boyd, 27, who divorced former PGA Championship winner Jason Dufner in April. - - - Thu, 02 Jul 2015 00:58:43 +01:00 - - http://www.dailymail.co.uk/news/article-3146315/Tiger-Woods-having-affair-ex-wife-friend-fellow-professional-golfer-Report-claims-Serial-cheater-began-dating-woman-Lindsey-Vonn.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - ISIS execute gay men by pushing them off a fourth-storey building in Iraq - - - http://www.dailymail.co.uk/news/article-3146225/Thrown-deaths-ISIS-barbarians-gay-Men-pushed-head-fourth-storey-building-Islamists-latest-sickening-executions.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - ISIS's latest propaganda images, carried out in Fallujah, Iraq, come after a family of 12 British nationals, including two grandparents are feared to have traveled to Syria. - - - Wed, 01 Jul 2015 23:54:58 +01:00 - - http://www.dailymail.co.uk/news/article-3146225/Thrown-deaths-ISIS-barbarians-gay-Men-pushed-head-fourth-storey-building-Islamists-latest-sickening-executions.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Germanwings crash victim families reject offer of £70,000 compensation - - - http://www.dailymail.co.uk/news/article-3146162/Germanwings-crash-victim-families-reject-offer-70-000-compensation-declaring-woefully-short-unfair.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The families are expected to reject the offers which vary according to where the passenger was from. Andreas Lubitz, pictured, deliberately crashed the plane in the Alps killing 150 people in March. - - - Wed, 01 Jul 2015 22:04:53 +01:00 - - http://www.dailymail.co.uk/news/article-3146162/Germanwings-crash-victim-families-reject-offer-70-000-compensation-declaring-woefully-short-unfair.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Andreas Lubitz, co-pilot of Germanwings flight 4U9525, running during the Aerportrace in Hamburg, Germany, 13 September 2009. -In the aftermath of the Germanwings plane crash in France, French investigators reports on 06 May 2015 state that Lubitz changed the autopilot to 100 feet during a separate flight on the same morning before the crash but then corrected it. The chief of French civil aviation authority Remy Jouty also reported 'Lubitz was twice refused a medical certificate re-validation in April 2009 by Lufthansa aeromedical centre due to depression'. - - - - - -epa04734986 A file picture dated 27 March 2015 shows Andreas Lubitz, co-pilot of Germanwings flight 4U9525, running during the Aerportrace in Hamburg, Germany, 13 September 2009. In the aftermath of the Germanwings plane crash in France, French investigators reports on 06 May 2015 state that Lubitz changed the autopilot to 100 feet during a separate flight on the same morning before the crash but then corrected it. The chief - - EPA - - - - - Greece's Alexis Tsipras refuses to call off bailout referendum and accuses Europe of ‘blackmail’ - - - http://www.dailymail.co.uk/news/article-3145621/Show-money-Desperate-pensioners-push-way-collect-cheques-Greek-government-asks-21bn-loan.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - In a televised national address, Tsipras also reaffirmed his support for a 'no' vote in the referendum. He insisted that a 'no' vote would not put Greece's place in the euro or in the EU at risk. - - - Wed, 01 Jul 2015 21:36:25 +01:00 - - http://www.dailymail.co.uk/news/article-3145621/Show-money-Desperate-pensioners-push-way-collect-cheques-Greek-government-asks-21bn-loan.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Girl's break-up text to boyfriend after he cheated on her goes viral on Twitter - - - http://www.dailymail.co.uk/femail/article-3145814/Ding-ding-ding-Oh-elevator-Cause-not-level-Tween-girl-s-brutal-brilliant-break-text-boyfriend-cheated-her.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Katie Nickens, 11, from Texas, split with her boyfriend via text this week. Her 17-year-old sister Madi tweeted the witty put-downs and they spawned several memes and thousands of retweets. - - - Wed, 01 Jul 2015 20:19:32 +01:00 - - http://www.dailymail.co.uk/femail/article-3145814/Ding-ding-ding-Oh-elevator-Cause-not-level-Tween-girl-s-brutal-brilliant-break-text-boyfriend-cheated-her.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Syrian rebels turn tables on ISIS fighters with execution video - - - http://www.dailymail.co.uk/news/article-3145562/Rival-Syrian-terror-group-turns-tables-ISIS-fighters-releasing-slick-execution-video-executing-jihadis-dressed-orange-jumpsuits.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - A Syrian rebel group which is battling both ISIS and the President Assad's regime has sunk to the same depraved depths as Islamic State by releasing a video in which it murders 13 of its fighters. - - - Wed, 01 Jul 2015 19:55:52 +01:00 - - http://www.dailymail.co.uk/news/article-3145562/Rival-Syrian-terror-group-turns-tables-ISIS-fighters-releasing-slick-execution-video-executing-jihadis-dressed-orange-jumpsuits.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Iain Duncan Smith has Commons' credit card SUSPENDED over £1,000 expenses bill - - - http://www.dailymail.co.uk/news/article-3145805/Iain-Duncan-Smith-Commons-credit-card-SUSPENDED-running-1-000-bill-expenses.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The Work and Pensions Secretary was among more a dozen MPs subject to action by the Commons expenses watchdog after failing to show spending was valid. - - - Wed, 01 Jul 2015 19:42:32 +01:00 - - http://www.dailymail.co.uk/news/article-3145805/Iain-Duncan-Smith-Commons-credit-card-SUSPENDED-running-1-000-bill-expenses.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Iain Duncan-Smith, Secretary of State for Work and Pensions arrives on Downing Street ahead of the weekly cabinet meeting on February 4, 2014 in London, England. - -LONDON, ENGLAND - FEBRUARY 04: -(Photo by Dan Kitwood/Getty Images) - - Getty Images - - - - - ISIS executes one of its OWN top officials in Mosul over coup rumours - - - http://www.dailymail.co.uk/news/article-3145534/ISIS-executes-one-officials-Mosul-rumours-circulated-planning-coup.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Abu Usman al-Hassan - the top ISIS commander in its Mosul stronghold and a member of the terror group's advisory board - is believed to have been killed some time last week. - - - Wed, 01 Jul 2015 15:41:44 +01:00 - - http://www.dailymail.co.uk/news/article-3145534/ISIS-executes-one-officials-Mosul-rumours-circulated-planning-coup.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Richard Matt pictured dead the woods after he was gunned down by cops - - - http://www.dailymail.co.uk/news/article-3145474/The-miserable-stand-Shawshank-escapee-Brutal-killer-Richard-Matt-pictured-dead-woods-gunned-cops-refused-drop-gun.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - A new picture of escaped upstate New York inmate Richard Matt, 49, has emerged to show details of his death after he was shot three times in the head by Customs and Border Patrol officers on Friday. - - - Wed, 01 Jul 2015 15:24:07 +01:00 - - http://www.dailymail.co.uk/news/article-3145474/The-miserable-stand-Shawshank-escapee-Brutal-killer-Richard-Matt-pictured-dead-woods-gunned-cops-refused-drop-gun.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - WWNY TV - - - - - A letter to the wife of a VERY dim cheat from SARAH VINE - - - http://www.dailymail.co.uk/news/article-3145314/SARAH-VINE-letter-wife-dim-cheat.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - It’s hard to decide what’s more idiotic: the infidelity, or the fact that he charged his sordid journey to an account with the taxi booking firm Uber, which then efficiently emailed a receipt you were able to confront him with. - - - Wed, 01 Jul 2015 12:33:50 +01:00 - - http://www.dailymail.co.uk/news/article-3145314/SARAH-VINE-letter-wife-dim-cheat.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - - Laura Kennington forced to abandon kayak challenge in Russia after receiving 'sinister' threats - - - http://www.dailymail.co.uk/travel/travel_news/article-3145515/I-m-sorry-men-didn-t-f-British-woman-raising-money-children-s-charity-forced-abandon-solo-kayak-challenge-Russia-receiving-sinister-threats.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Laura Kennington was raising money for a children's charity with her solo three month voyage paddling the full length of Europe's longest river to its mouth in the Caspian Sea. - - - Wed, 01 Jul 2015 11:33:04 +01:00 - - http://www.dailymail.co.uk/travel/travel_news/article-3145515/I-m-sorry-men-didn-t-f-British-woman-raising-money-children-s-charity-forced-abandon-solo-kayak-challenge-Russia-receiving-sinister-threats.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Laura Kennington - 2 - must credit Facebook, queries Will Stewart on 007 985 998 94 00.jpg - - None - - - - - Trifle with Mr Javid at your peril says QUENTIN LETTS after yesterday in Parliament - - - http://www.dailymail.co.uk/news/article-3145293/Schmoozers-beware-trifle-Mr-Javid-peril-QUENTIN-LETTS-Yesterday-Parliament.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - Sajid Javid’s attack on the Confederation of British Industry and its Euro-lovers may go down as one of the great custard-pie splats in British dining, writes QUENTIN LETTS. - - - Wed, 01 Jul 2015 05:52:35 +01:00 - - http://www.dailymail.co.uk/news/article-3145293/Schmoozers-beware-trifle-Mr-Javid-peril-QUENTIN-LETTS-Yesterday-Parliament.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - Rex Shutterstock - - - - - Give MPs 10% pay rise, Windsor's Tory Adam Afriyie says - - - http://www.dailymail.co.uk/news/article-3144569/Give-MPs-10-pay-rise-Parliament-stuffed-millionaires-says-millionaire-Tory-Adam-Afriyie.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The MP for Windsor warned fellow politicians against 'grandstanding' by promising to give the money to charity, as the expenses watchdog prepares to respond to criticism of its planned rise. - - - Tue, 30 Jun 2015 14:57:06 +01:00 - - http://www.dailymail.co.uk/news/article-3144569/Give-MPs-10-pay-rise-Parliament-stuffed-millionaires-says-millionaire-Tory-Adam-Afriyie.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - Adam Afriyie, Conservative MP for Windsor photographed in and around his Westminster home - - None - - - - - The seven greatest Glastonbury sets ever including Basil Brush - - - http://www.dailymail.co.uk/debate/article-3143974/CRAIG-BROWN-Boom-Boom-s-Basil-Brush-rocking-Glasto-seven-greatest-Glastonbury-sets-ever.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - The 1977 festival was also notable for Basil Brush’s headlining Sunday afternoon performance on the Pyramid Stage, writes CRAIG BROWN. - - - Tue, 30 Jun 2015 01:49:25 +01:00 - - http://www.dailymail.co.uk/debate/article-3143974/CRAIG-BROWN-Boom-Boom-s-Basil-Brush-rocking-Glasto-seven-greatest-Glastonbury-sets-ever.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490 - - - - None - - - - diff --git a/vendor/fguillot/picofeed/tests/fixtures/debug_show.xml b/vendor/fguillot/picofeed/tests/fixtures/debug_show.xml deleted file mode 100644 index 21bb82f..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/debug_show.xml +++ /dev/null @@ -1,1073 +0,0 @@ - - - - Debug - http://www.imore.com/debug/ - Debug is a conversational interview show about developing software and services, primarily for iPhone, iPad, Mac, and gaming. Hosted by Guy English and Rene Ritchie, it's all the great talk you get at the bar after the conference, wrapped up in convenient podcast form. Pull up a chair, hit play, join us. - Feeder 2.5.2(2.5.2); Mac OS X Version 10.9.3 (Build 13D65) http://reinventedsoftware.com/feeder/ - http://blogs.law.harvard.edu/tech/rss - en - Guy English, Rene Ritchie - rene@mobilenation.com (Rene Ritchie) - rene@mobilenations.com (Rene Ritchie) - Tue, 27 May 2014 18:20:13 -0400 - Tue, 27 May 2014 18:20:13 -0400 - http://www.imore.com/debug/http://www.mobilenations.com/broadcasting/podcast_debug_144.jpgDebug - - Guy English, Rene Ritchie - Debug - Debug is a conversational interview show about developing software and services, primarily for iPhone, iPad, Mac, and gaming. Hosted by Guy English and Rene Ritchie, it's all the great talk you get at the bar after the conference, wrapped up in convenient podcast form. Pull up a chair, hit play, join us. - development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - no - - no - - Guy English, Rene Ritchiedevelopment,ios,osx,iphone,ipad,mac,opengl,apps,app,store,gamesTechnologyTechnology/Software How-Torene@mobilenations.comGuy English, Rene Ritchie - Debug 37: Simmons, Wiskus, Gruber and Vesper Sync - http://www.imore.com/debug - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about Vesper 2.0, architecting sync, the decision making process, design choices, and why Vesper for Mac comes next.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Question, comment, recommendation, or something you want us to follow up on for the next show?

    - -

    Email us at debug@mobilenations.com or yell at us on Twitter.

    ]]>
    - Tue, 27 May 2014 18:19:49 -0400 - - 74B90295-595F-4459-A826-7A5738957281 - Guy English, Rene Ritchie, Brent Simmons, Dave Wiskus, John Gruber - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about Vesper 2.0, architecting sync, the decision making process, design choices, and why Vesper for Mac comes next. - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about Vesper 2.0, architecting sync, the decision making process, design choices, and why Vesper for Mac comes next. - no - 1:44:44 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 36: Rich Siegel on BBEdit - http://www.imore.com/debug - - Wed, 21 May 2014 03:37:01 -0400 - - 38DC2FF1-4207-4C04-93F3-2DAFB0E559D9 - Guy English, Rene Ritchie, Rich Siegel - Rich Siegel of Bare Bones Software talks to Guy and Rene about the journey of BBEdit from the classic Mac OS to OS X, PowerPC to Intel, 32- to 64-bit, and the direct sales to the Mac App Store. - Rich Siegel of Bare Bones Software talks to Guy and Rene about the journey of BBEdit from the classic Mac OS to OS X, PowerPC to Intel, 32- to 64-bit, and the direct sales to the Mac App Store. - no - 2:01:02 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 35: Scotty on NSConference and RemObjects - http://www.imore.com/debug - - Wed, 07 May 2014 18:23:30 -0400 - - 3FA03A63-BEA2-4199-A1E4-D2963845F3F6 - Guy English, Rene Ritchie, Scotty - Steve Scott (Scotty) talks to Guy and Rene about the early days of developer podcasts, NSConference, and his work with RemObjects. - Steve Scott (Scotty) talks to Guy and Rene about the early days of developer podcasts, NSConference, and his work with RemObjects. - no - 1:54:58 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 34: Sexism in tech - http://www.imore.com/debug - - Wed, 23 Apr 2014 22:29:07 -0400 - - D032BF15-B907-4F3F-926F-D55E9C785DE3 - Serenity Caldwell, Jessie Char, Georgia Dow, Guy English, Rene Ritchie, Brianna Wu - Serenity Caldwell of Macworld, Jessie Char of Pacific Helm, Georgia Dow of ZEN & TECH, and Brianna Wu of Giant Spacekat share their experiences with sexism in the tech industry, from coworkers to clients to conventions to culture and beyond. - Serenity Caldwell of Macworld, Jessie Char of Pacific Helm, Georgia Dow of ZEN & TECH, and Brianna Wu of Giant Spacekat share their experiences with sexism in the tech industry, from coworkers to clients to conventions to culture and beyond. - no - 1:52:10 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 33: Ken Ferry on Auto Layout, Passbook, and Understudy - http://www.imore.com/debug - - Wed, 09 Apr 2014 21:47:50 -0400 - - 246411B5-8F49-4EEC-B91A-291B1FC8243E - Guy English, Rene Ritchie, Ken Ferry - Ken Ferry talks to Guy and Rene about his time at Apple working on Cocoa, Auto Layout, and Passbook, and his new app, Understudy, which seeks to bring mentored learning into the iPad age. - Ken Ferry talks to Guy and Rene about his time at Apple working on Cocoa, Auto Layout, and Passbook, and his new app, Understudy, which seeks to bring mentored learning into the iPad age. - no - 2:05:44 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 32: John Siracusa on Copland 2014 - http://www.imore.com/debug - - Tue, 01 Apr 2014 13:53:10 -0400 - - 75ECD0D6-D19B-40B1-AD81-2A8B5DDE5ACA - Guy English, Rene Ritchie, John Siracusa - John Siracusa of Hypercritical and the Accidental Tech Podcast shows up to fight with Guy over Copland 2014. That is, the idea that Apple needs to embrace elements of higher level languages and figure out what comes after Objective C. - John Siracusa of Hypercritical and the Accidental Tech Podcast shows up to fight with Guy over Copland 2014. That is, the idea that Apple needs to embrace elements of higher level languages and figure out what comes after Objective C. - no - 1:41:05 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 31: Miguel de Icaza on Mono - http://www.imore.com/debug - - Wed, 19 Mar 2014 10:30:44 -0400 - - 2B9E0625-FC74-46D2-965A-592EB7386233 - Guy English, Rene Ritchie, Miguel de Icaza - Miguel de Icaza of GNOME and Xamarin fame joins Guy and Rene to talk about Mono, the .NET compatible open source project that lets you build iOS and Android apps in C#, and the pros and cons of modern development platforms. - Miguel de Icaza of GNOME and Xamarin fame joins Guy and Rene to talk about Mono, the .NET compatible open source project that lets you build iOS and Android apps in C#, and the pros and cons of modern development platforms. - no - 59:08 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 30: Casey Liss on C# and .Net - http://www.imore.com/debug - - Tue, 04 Mar 2014 11:52:20 -0500 - - C39CF94A-8A31-4F34-AE9F-52D019FE8C5A - Guy English, Rene Ritchie, Casey Liss - Casey Liss of the Accidental Tech Podcast (ATP) tries to sell Guy on the advantages of Microsoft’s C# programming language and the .NET frameworks. - Casey Liss of the Accidental Tech Podcast (ATP) tries to sell Guy on the advantages of Microsoft’s C# programming language and the .NET frameworks. - no - 1:57:06 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 29: Jeff McLeman on porting kernels - http://www.imore.com/debug - - Thu, 20 Feb 2014 19:18:39 -0500 - - 61546531-F2A9-4AB4-88C8-D17E981DDAFC - Guy English, Rene Ritchie, Jeff McLeman - Guy and Rene talk to Jeff McLeman about his time at Digital, porting the NT kernel, and the current state of kernels in general. - Guy and Rene talk to Jeff McLeman about his time at Digital, porting the NT kernel, and the current state of kernels in general. - no - 1:45:38 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 28: Mike Ash on VoodooPad - http://www.imore.com/debug - - Thu, 06 Feb 2014 00:01:10 -0500 - - 3F1B931C-343D-4946-BCDF-1C810872D290 - Guy English, Rene Ritchie, Mike Ash - Mike Ash of Plausible Labs joins Guy and Rene to talk about working at Rogue Amoeba, taking on VoodooPad, and speaking truth to bloggers. - Mike Ash of Plausible Labs joins Guy and Rene to talk about working at Rogue Amoeba, taking on VoodooPad, and speaking truth to bloggers. - no - 1:26:02 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 27: Joe Hewitt on Facebook and gardening - http://www.imore.com/debug - - Thu, 23 Jan 2014 21:29:10 -0500 - - E0ED3B99-950A-4E1D-92CE-4784BBE1CD06 - Guy English, Rene Ritchie, Joe Hewitt - Joe Hewitt talks to Guy and Rene about 100% time at AOL, building Facebook for iPhone, the freedom of the web, and soil-based startups. - Joe Hewitt talks to Guy and Rene about 100% time at AOL, building Facebook for iPhone, the freedom of the web, and soil-based startups. - no - 1:09:22 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 26: Evan Doll on Apple and Flipboard - http://www.imore.com/debug - - Fri, 03 Jan 2014 17:20:25 -0500 - - 5B2CA945-6C79-4578-87E7-8D0072F41643 - Guy English, Rene Ritchie, Evan Doll - Evan Doll talks to Guy and Rene about his time at Apple on pro apps and iPhone OS, conceiving, launching, and managing Flipboard, and the value of relentless audacity. - Evan Doll talks to Guy and Rene about his time at Apple on pro apps and iPhone OS, conceiving, launching, and managing Flipboard, and the value of relentless audacity. - no - 1:29:23 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 25: Vicki Murley on evanglizing Safari and CSS transforms - http://www.imore.com/debug - - Mon, 09 Dec 2013 18:17:43 -0500 - - 70F03044-BAC9-42BA-94D2-CC976F404E8A - Guy English, Rene Ritchie, Vicki Murley - Vicki Murley, former Safari Technology Evangelist at Apple, current founder of Sprightly Books, talks to Guy and Rene about web technologies, speaking at conferences, and beating Dan Brown at the book game. - Vicki Murley, former Safari Technology Evangelist at Apple, current founder of Sprightly Books, talks to Guy and Rene about web technologies, speaking at conferences, and beating Dan Brown at the book game. - no - 1:13:48 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 24.1: Jalkut, Nielsen, Siracusa on OS X. Still. - http://www.imore.com/debug - - Fri, 29 Nov 2013 00:37:29 -0500 - - FBC25594-6363-40ED-AFC4-504806A5D761 - Guy English, Rene Ritchie, John Siracusa, Ryan Nielsen, Daniel Jalkut - Daniel Jalkut, Ryan Nielsen, and John Siracusa join Guy and Rene to talk about OS X Mavericks and the future of the Mac, continuing with interface, scripting, and more. (Part 2 of 2.) - Daniel Jalkut, Ryan Nielsen, and John Siracusa join Guy and Rene to talk about OS X Mavericks and the future of the Mac, continuing with interface, scripting, and more. (Part 2 of 2.) - no - 1:57:41 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 24: Jalkut, Nielsen, Siracusa and the future OS X - http://www.imore.com/debug - - Fri, 22 Nov 2013 01:23:43 -0500 - - 8C79455A-1005-47D0-8D94-6148B054AEAA - Guy English, Rene Ritchie, Daniel Jalkut, Ryan Nielsen, John Siracusa - Daniel Jalkut, Ryan Nielsen, and John Siracusa join Guy and Rene to talk about OS X Mavericks and the future of the Mac, starting with free updates and file systems. (Part 1 of 2.) - Daniel Jalkut, Ryan Nielsen, and John Siracusa join Guy and Rene to talk about OS X Mavericks and the future of the Mac, starting with free updates and file systems. (Part 1 of 2.) - no - 1:38:58 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 23: Jonathan Deutsch on Apple and Tumult - http://www.imore.com/debug - - Thu, 14 Nov 2013 11:12:01 -0500 - - 55838FD3-2276-4092-8309-187C91CD0D95 - Guy English, Rene Ritchie, Jonathan Deutsch - Jonathan Deutsch talks about HyperEdit, his time at Apple, the origins of Tumult, believing in Hype, and hitting people with kendo sticks. - Jonathan Deutsch talks about HyperEdit, his time at Apple, the origins of Tumult, believing in Hype, and hitting people with kendo sticks. - no - 1:51:09 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 22: Hockenberry, Rhyne, Vandal on iOS 7 - http://www.imore.com/debug - - Wed, 23 Oct 2013 23:04:19 -0400 - - 41BA03A8-441D-4F7E-8BDD-F06113B200FA - Guy English, Rene Ritchie, Craig Hockenberry, Rob Rhyne, Luc Vandal - Craig Hockenberry of the Iconfactory, Rob Rhyne of Martian Craft, and Luc Vandal of Edovia talk to Guy and Rene about a lot of stuff not even vaguely related to iOS 7. And a bit that is. - Craig Hockenberry of the Iconfactory, Rob Rhyne of Martian Craft, and Luc Vandal of Edovia talk to Guy and Rene about a lot of stuff not even vaguely related to iOS 7. And a bit that is. - no - 1:45:32 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 21: Arment, Drance, Heber, Simmons on iOS 7 - http://www.imore.com/debug - - Thu, 10 Oct 2013 15:26:34 -0400 - - D7BC8EC6-9483-4511-AD6D-1199AB336D66 - Rene Ritchie, Marco Arment, Matt Drance, Sean Heber, Brent Simmons - Marco Arment of Overcast, Matt Drance of Apple Outsider, Sean Heber of the Iconfactory, and Brent Simmons of Vesper talk about developing for, and updating apps for, iOS 7. - Marco Arment of Overcast, Matt Drance of Apple Outsider, Sean Heber of the Iconfactory, and Brent Simmons of Vesper talk about developing for, and updating apps for, iOS 7. - no - 1:17:52 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 20.1: Ryan Nielsen on Tumult and Hype - - Tue, 24 Sep 2013 23:26:21 -0400 - - 09DBC71A-6116-4B59-B38C-534E7E984109 - Guy English, Rene Ritchie, Ryan Nielsen - Ryan Nielsen of Tumult talks to Guy and Rene about leaving Apple to go indie, creating Hype, App Store vs. own store, remote vs. office, and dealing with Apple from the outside. (Part 2 of 2.) - Ryan Nielsen of Tumult talks to Guy and Rene about leaving Apple to go indie, creating Hype, App Store vs. own store, remote vs. office, and dealing with Apple from the outside. (Part 2 of 2.) - no - 1:15:47 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 20: Ryan Nielsen on Apple and OS X - http://www.imore.com/debug - - Wed, 04 Sep 2013 09:06:18 -0400 - - C1316876-F77F-42B2-A09D-988EFDCE275B - Guy English, Rene Ritchie, Ryan Nielsen - Ryan Nielsen of Tumult talks to Guy and Rene about how Debug began, Çingleton, and his time as an engineering project manager on OS X at Apple where he helped kick big cats out the door. (Part 1 of 2.) - Ryan Nielsen of Tumult talks to Guy and Rene about how Debug began, Çingleton, and his time as an engineering project manager on OS X at Apple where he helped kick big cats out the door. (Part 1 of 2.) - no - 1:46:03 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 19: Wil Shipley from NeXT to Delicious Monster - http://www.imore.com/debug - - Mon, 19 Aug 2013 20:35:46 -0400 - - 15894087-33A7-4703-ADE0-CDF0CB93A307 - Guy English, Rene Ritchie, Wil Shipley - Wil Shipley of Delicious Monster talks to Guy and Rene about coding on NeXT, forming the Omni Group, dealing with the "Air Force", making Delicious Library, and what he's working on now. - Wil Shipley of Delicious Monster talks to Guy and Rene about coding on NeXT, forming the Omni Group, dealing with the "Air Force", making Delicious Library, and what he's working on now. - no - 1:07:08 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 18: Gus Mueller of Flying Meat - http://Guy%20English,%20Rene%20Ritchie,%20Gus%20Mueller - - Thu, 08 Aug 2013 14:49:59 -0400 - - FCA73556-4645-4B67-8ED7-F61F100A2B10 - Guy English, Rene Ritchie, Gus Mueller - Gus Mueller of Flying Meat talks to Guy and Rene about his username, his company name, VoodooPad and Acorn, and what he thought about Apple's Mac offerings at WWDC 2013. - Gus Mueller of Flying Meat talks to Guy and Rene about his username, his company name, VoodooPad and Acorn, and what he thought about Apple's Mac offerings at WWDC 2013. - no - 1:07:08 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 17: Krzysztof Zabłocki and Foldify - http://www.imore.com/debug - - Sun, 07 Jul 2013 21:05:49 -0400 - - BEFB5AFF-E6E9-4056-AF6E-9D35423C536B - Guy English, Rene Ritchie, Krzysztof Zabłocki - Krzysztof Zabłocki of Foldify joins Guy and Rene to talk about building game engines, the power and insanity of C++, swizzling and stomping Objective C, and how to pronounce Commodore 64 in Polish. - Krzysztof Zabłocki of Foldify joins Guy and Rene to talk about building game engines, the power and insanity of C++, swizzling and stomping Objective C, and how to pronounce Commodore 64 in Polish. - no - 1:39:43 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 16.1: David Gelphman on Apple, Core Graphics, and AirPrint - http://www.imore.com/debug - - Mon, 22 Jul 2013 10:43:09 -0400 - - D12E7322-7180-4039-B846-EE59FD9C42FC - Guy English, Rene Ritchie, David Gelphmen - David Gelphman, former graphics and imaging engineer at Apple, talks to Guy and Rene about writing the book on Core Graphics, developing AirPrint, and discovers Montreal has bagels (Part 2 of 2). - David Gelphman, former graphics and imaging engineer at Apple, talks to Guy and Rene about writing the book on Core Graphics, developing AirPrint, and discovers Montreal has bagels (Part 2 of 2). - no - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 16: David Gelphman from Adobe to General Magic - http://www.imore.com/debug - - Wed, 19 Jun 2013 15:42:34 -0400 - - 7860099C-6589-4DB5-AA79-DA07548FBF98 - Guy English, Rene Ritchie, David Gelphman - David Gelphman, former graphics and imaging engineer at Apple, talks to Guy and Rene about working on Postscript at Adobe, his time at General Magic, and how to avoid inverting bug fix prognostication equations. (Part 1 of 2) - David Gelphman, former graphics and imaging engineer at Apple, talks to Guy and Rene about working on Postscript at Adobe, his time at General Magic, and how to avoid inverting bug fix prognostication equations. (Part 1 of 2) - no - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Special: WWDC 2013 live - http://www.imore.com/podcasts - - Tue, 11 Jun 2013 20:59:39 -0400 - - AD237D25-0251-4F79-9A60-1D69B6A02D56 - Guy English, Marc Edwards, Seth Clifford, Rene Ritchie - Guy English of Debug, Marc Edwards and Seth Clifford of Iterate, and Rene Ritchie of iMore team up to talk WWDC 2013 with guests Mark Kawano, Don Melton, Dave Wiskus, Dan Moren, Brad Ellis, Brent Simmons, and more! Also: Hall of Fame awards! - Guy English of Debug, Marc Edwards and Seth Clifford of Iterate, and Rene Ritchie of iMore team up to talk WWDC 2013 with guests Mark Kawano, Don Melton, Dave Wiskus, Dan Moren, Brad Ellis, Brent Simmons, and more! Also: Hall of Fame awards! - no - 37:30 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 15: Simmons, Wiskus, Gruber, and Vesper - http://www.imore.com/debug - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about their new app, Vesper, the value of ideas and collecting them, the art of collaboration, flat design, accessibility, testing, app pricing, and more. Also: Mad Men.

    - -

    Show notes

    - - - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Thu, 06 Jun 2013 12:13:08 -0400 - - 40263349-E22E-4E1E-A246-A3BA49BF8908 - Guy English, Rene Ritchie, Brent Simmons, Dave Wiskus, John Gruber - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about their new app, Vesper, the value of ideas and collecting them, the art of collaboration, flat design, accessibility, testing, app pricing, and more. Also: Mad Men. - Brent Simmons, Dave Wiskus, and John Gruber join Guy and Rene to talk about their new app, Vesper, the value of ideas and collecting them, the art of collaboration, flat design, accessibility, testing, app pricing, and more. Also: Mad Men. - no - 1:58:33 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 14: Ben Lachman and Robert Cantoni have a Nice Mohawk - http://www.imore.com/debug - Ben Lachman and Robert Cantoni join Guy and Rene to talk about their list manager app, Ita, and the possibilities of it coming to the Mac, blogging as a duet, the importance of accessibility, and how to have a really Nice Mohawk.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Sat, 04 May 2013 08:58:57 -0400 - - 909986A2-6B72-4535-A423-660F47A35663 - Guy English, Rene Ritchie, Ben Lachman, Robert Cantoni - Ben Lachman and Robert Cantoni join Guy and Rene to talk about their list manager app, Ita, and the possibilities of it coming to the Mac, blogging as a duet, the importance of accessibility, and how to have a really Nice Mohawk. - Ben Lachman and Robert Cantoni join Guy and Rene to talk about their list manager app, Ita, and the possibilities of it coming to the Mac, blogging as a duet, the importance of accessibility, and how to have a really Nice Mohawk. - no - 1:10:17 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 13: Mike Lee and Lemur Chemistry - http://www.imore.com/debug - Mike Lee of the New Lemurs talks to Guy and Rene about airline Java, Delicious Library, Tapulous and the early days of iOS, United Lemurs, VC mistakes, the Obama and Apple Store apps, the Appsterdam project, New Lemurs, and dressing like a space pirate.

    - - -

    Show notes

    - -

    - [Delicious Library](http://www.delicious-monster.com) -
    - [Tapulous](https://www.facebook.com/taptaprevenge) -
    - [Obama '08](http://mantia.me/portfolio/obama/) -
    - [Apple Store app](https://itunes.apple.com/en/app/apple-store/id375380948?mt=8) -
    - [New Lemurs](http://le.mu.rs)

    - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Tue, 16 Apr 2013 09:11:20 -0400 - - 5574DB06-0E19-4089-92CA-C1727472E2A1 - Guy English, Rene Ritchie, Mike Lee - Mike Lee of the New Lemurs talks to Guy and Rene about airline Java, Delicious Library, Tapulous and the early days of iOS, United Lemurs, VC mistakes, the Obama and Apple Store apps, the Appsterdam project, New Lemurs, and dressing like a space pirate. - Mike Lee of the New Lemurs talks to Guy and Rene about airline Java, Delicious Library, Tapulous and the early days of iOS, United Lemurs, VC mistakes, the Obama and Apple Store apps, the Appsterdam project, New Lemurs, and dressing like a space pirate. - no - 1:33:25 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 12: iCloud and Core Data sync - http://www.imore.com/debug - Daniel Pasco of Black Pixel, Brent Simmons of Ranchero Software, and Justin Williams of Second Gear talk to Guy and Rene about iCloud Core Data sync, why everyone seems to be in a bad mood about it, and how, if at all, Apple can fix it.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Fri, 05 Apr 2013 09:29:20 -0400 - - D0383366-0078-4954-897C-27A86281A260 - Guy English, Rene Ritchie, Daniel Pasco, Brent Simmons, Justin Williams - Daniel Pasco of Black Pixel, Brent Simmons of Ranchero Software, and Justin Williams of Second Gear talk to Guy and Rene about iCloud Core Data sync, why everyone seems to be in a bad mood about it, and how, if at all, Apple can fix it. - Daniel Pasco of Black Pixel, Brent Simmons of Ranchero Software, and Justin Williams of Second Gear talk to Guy and Rene about iCloud Core Data sync, why everyone seems to be in a bad mood about it, and how, if at all, Apple can fix it. - no - 1:10:24 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 11.1: Don Melton on Blink, Servo, and more - http://www.imore.com/debug - - Fri, 24 May 2013 01:59:36 -0400 - - 88949BDD-9354-4AF7-B91D-B66B16123E70 - Guy English, Rene Ritchie, Don Melton - Don Melton, former Engineering Director of Internet Technologies at Apple, returns for a special follow-up episode with Guy and Rene to discuss the newly announced Google Blink and Mozilla/Samsung Servo HTML rendering engines, and more. - Don Melton, former Engineering Director of Internet Technologies at Apple, returns for a special follow-up episode with Guy and Rene to discuss the newly announced Google Blink and Mozilla/Samsung Servo HTML rendering engines, and to tell us what us which new bear he's trying to get dancing. - no - 1:41:53 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 11: Don Melton and Safari - http://www.imore.com/debug - Don Melton, former Engineering Director of Internet Technologies at Apple, talks to Guy and Rene about assembler on the Apple II, open-sourcing Mozilla, building Nautilus, creating WebKit and the Safari browser, teaching bears to dance, and cleaning cusses from code bases.

    - -

    Show notes

    - - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Mon, 25 Mar 2013 10:11:51 -0400 - - 2BD69044-B6A1-4DA6-BB22-E3B76D96EE01 - Guy English, Rene Ritchie, Don Melton - Don Melton, former Engineering Director of Internet Technologies at Apple, talks to Guy and Rene about open-sourcing Mozilla, building Nautilus, creating WebKit and the Safari browser, teaching bears to dance, and cleaning cusses from code bases. - Don Melton, former Engineering Director of Internet Technologies at Apple, talks to Guy and Rene about assembler on the Apple II, open-sourcing Mozilla, building Nautilus, creating WebKit and the Safari browser, teaching bears to dance, and cleaning cusses from code bases. - no - 1:32:39 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 10: Tammy Coron of Nickelfish - http://www.imore.com/debug - Tammy Coron of Nickelfish talks with Guy and Rene about coding (and re-coding!) the iMore app, the TRS-80 and text adventures, computers in schools, teaching kids to code, and surviving the zombie apocalypse.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Mon, 18 Mar 2013 16:16:40 -0400 - - 133A42F1-5AC1-45EF-A7EC-1F8BF36E3E5F - Guy English, Rene Ritchie, Tammy Coron - Tammy Coron of Nickelfish talks with Guy and Rene about coding (and re-coding!) the iMore app, the TRS-80 and text adventures, computers in schools, teaching kids to code, and surviving the zombie apocalypse. - Tammy Coron of Nickelfish talks with Guy and Rene about coding (and re-coding!) the iMore app, the TRS-80 and text adventures, computers in schools, teaching kids to code, and surviving the zombie apocalypse. - no - 1:12:19 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 9: Matt Drance, the Apple Outsider - http://www.imore.com/category/debug - Matt Drance of Apple Outsider and Bookhouse talks with Guy and Rene about working at and with Apple, the unsung heroes of software,the difference between marketing and developer-driven management, how to get started, and twiddling the PS4 bits.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Tue, 05 Mar 2013 13:28:26 -0500 - - B0BF75FA-B42D-4536-A732-4BA463D52DF1 - Guy English, Rene Ritchie, Matt Drance - Matt Drance of Apple Outsider and Bookhouse talks with Guy and Rene about working at and with Apple, the unsung heroes of software,the difference between marketing and developer-driven management, how to get started, and twiddling the PS4 bits. - Matt Drance of Apple Outsider and Bookhouse talks with Guy and Rene about working at and with Apple, the unsung heroes of software,the difference between marketing and developer-driven management, how to get started, and twiddling the PS4 bits. - no - 1:32:42 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug & Iterate team-up: The future of human interface - http://www.imore.com/podcasts - - Tue, 26 Feb 2013 13:35:06 -0500 - - 16AF3F1E-3DE2-4516-A9BC-EA89CE0F248C - Marc Edwards, Guy English, Loren Brichter, Sebastiaan de With - Marc Edwards of Bjango, Guy English of Kicking Bear, Loren Brichter of Atebits, Sebastiaan de With of DoubleTwist, and Rene Ritchie of Mobile Nations talk Siri, Google Now, Kinect, Leap, MYO, Project Glass, iWatch, Oculus Rift, and more! - Marc Edwards of Bjango, Guy English of Kicking Bear, Loren Brichter of Atebits, Sebastiaan de With of DoubleTwist, and Rene Ritchie of Mobile Nations talk human interfaces of the future, including Siri, Google Now, Kinect, Leap, MYO, Project Glass, iWatch, Oculus Rift, and more! - no - 1:04:54 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 8: Grant Paul aka chpwn - http://www.imore.com/category/debug - - Fri, 22 Feb 2013 01:25:39 -0500 - - ADD0E589-8033-46BD-8862-AA86460A68BF - Guy English, Rene Ritchie, Grand Paul - Grant Paul, aka chpwn, talks to Guy and Rene about developing for jailbreak, hacking the Nintendo Wii, the architecture behind SpringBoard and Apple TV apps, Siri, the future of file systems, and taking things to 11. - Grant Paul, aka chpwn, talks to Guy and Rene about developing for jailbreak, hacking the Nintendo Wii, the architecture behind SpringBoard and Apple TV apps, Siri, the future of file systems, and taking things to 11. - no - 1:12:56 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 7: Jordan Mechner and Karateka - http://www.imore.com/category/debug - - Mon, 04 Feb 2013 09:11:06 -0500 - - FCAFDFA1-30AD-41A5-80D6-991B99ADA8D8 - Guy English, Rene Ritchie, Jordan Mechner - Jordan Mechner of Karateka and Prince of Persia fame talks to Guy and Rene about coding for the Apple II, bringing cinematic storytelling to games, adapting for iOS, and the future of creative content. - Jordan Mechner of Karateka and Prince of Persia fame talks to Guy and Rene about coding for the Apple II, bringing cinematic storytelling to games, adapting for iOS, and the future of creative content. - -<h2>Show notes</h2> - -<ul> -<li><a href="http://jordanmechner.com">jordanmechner.com</a></li> -<li><a href="http://itunes.apple.com/app/id560927460">Karateka for iOS</a></li> -<li><a href="http://itunes.apple.com/app/id508049561">Last Express for iOS</a></li> -<li><a href="http://jordanmechner.com/blog/2012/12/making-and-remaking-karateka/">Making and Remaking Karateka</a></li> -<li><a href="http://www.youtube.com/watch?v=YMx-_aFP1lQ&amp;feature=player_embedded">Lonely Sandwich Karateka trailer</a></li> -<li><a href="http://jordanmechner.com/blog/2013/01/announcing-templar/">Templar graphic novel</a></li> -</ul> - -<h2>Guests</h2> - -<ul></li> - -<li>Jordan Mechner (<a href="twitter.com/jmechner">@jmechner</a>)</a> of <a href="http://www.jordanmechner.com">jordanmechner.com</a></li> -</ul> - -<h2>Hosts</h2> - -<ul> - -<li>Guy English (<a href="http://twitter.com/gte">@gte</a>) of <a href="http://www.kickingbear.com">Kicking Bear</a> - -<li>Rene Ritchie (<a href="http://twitter.com/reneritchie/">@reneritchie</a>) of <a href="http://www.imore.com/">iMore.com</a></li> -</ul> - -<h2>Feedback</h2> - -Yell at us via the Twitter accounts above (or the same names on ADN). Loudly. - no - 45:04 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games - - Debug 6: Adam Saltsman and Hundreds - http://www.imore.com/category/debug - Adam Saltsman podcasts with Guy and Rene for 90 minutes before hitting a wall and tumbling to his death. Also, designing Canabalt and Hundreds, sketching in Flash and Flixel, and the power of swinging ropes.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Wed, 23 Jan 2013 23:27:21 -0500 - - 6EC21993-FD4B-482D-B236-026973C8182D - Guy English, Rene Ritchie, Adam Saltsman - Adam Saltsman podcasts with Guy and Rene for 90 minutes before hitting a wall and tumbling to his death. Also, designing Canabalt and Hundreds, sketching in Flash and Flixel, and the power of swinging ropes. - Adam Saltsman podcasts with Guy and Rene for 90 minutes before hitting a wall and tumbling to his death. Also, designing Canabalt and Hundreds, sketching in Flash and Flixel, and the power of swinging ropes. - no - 1:32:04 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 5: Craig Hockenberry, Sean Heber, and Twitterrific - http://www.iterate.tv/ - Craig Hockenberry and Sean Heber of the Iconfactory talk to Guy and Rene about Twitterrific 5, the early days of the iPhone, Chameleon, beefs with nibs, underscores, colons, and ternary operators, App Store realities, and the importance of blame avoidance optimization.

    - -

    Show notes

    - - - -

    Guests

    - - - -

    Of the (Iconfactory

    - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Sat, 05 Jan 2013 12:10:24 -0500 - - 9622C1B8-B1F8-47DA-819A-A0F79B549F23 - Guy English, Rene Ritchie, Craig Hockenberry, Sean Heber - Craig Hockenberry and Sean Heber of the Iconfactory talk to Guy and Rene about Twitterrific 5, the early days of the iPhone, Chameleon, beefs with nibs, underscores, colons, and ternary operators, App Store realities, and blame avoidance optimization. - Craig Hockenberry and Sean Heber of the Iconfactory talk to Guy and Rene about Twitterrific 5, the early days of the iPhone, Chameleon, beefs with nibs, underscores, colons, and ternary operators, App Store realities, and the importance of blame avoidance optimization. - no - 1:48:23 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 4: Dave Teare and 1Password - http://www.iterate.tv/ - Dave Teare, co-founder of Agile Bits and co-developer of 1Password for Mac, iOS, and pretty damn near everywhere else, talks to Guy and Rene about project management, killing features, customer support, the challenges of going cross-platform, and the motivational value of coding Java for HP.

    - -

    Guest

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Mon, 24 Dec 2012 17:30:42 -0500 - - 3571E966-59FD-4E57-8FA8-FA781CF6EF22 - Guy English, Rene Ritchie, Dave Teare - Dave Teare, co-founder of Agile Bits and co-developer of 1Password for Mac, iOS, talks to Guy and Rene about project management, killing features, customer support, the challenges of going cross-platform, and the motivational value of coding Java for HP. - Dave Teare, co-founder of Agile Bits and co-developer of 1Password for Mac, iOS, and pretty damn near everywhere else, talks to Guy and Rene about project management, killing features, customer support, the challenges of going cross-platform, and the motivational value of coding Java for HP. - no - 1:08:36 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 3: Jury and Kaleidoscope 2 - http://www.iterate.tv/ - Michael Jurewitz (Jury), formerly developer tools evangelist at Apple, now director of product development at Black Pixel, talks to Guy and Rene about Kaleidoscope 2, the realities of Apple, how to ship software, how to price software, and dealing with that Daft Punk helmet.

    - -

    Show notes

    - - - -

    Guest

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Mon, 10 Dec 2012 21:25:08 -0500 - - A77FF89F-1708-4AC2-B7FA-4C58CCE8B053 - Guy English, Rene Ritchie, Michael Jurewitz - Michael Jurewitz (Jury), formerly developer tools evangelist at Apple, now director of product development at Black Pixel, talks to Guy and Rene about Kaleidoscope 2, the realities of Apple, how to ship software, and how to price software. - Michael Jurewitz (Jury), formerly developer tools evangelist at Apple, now director of product development at Black Pixel, talks to Guy and Rene about Kaleidoscope 2, the realities of Apple, how to ship software, how to price software, and dealing with that Daft Punk helmet. - no - 1:16:49 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 2: Paul Haddad and Tapbots - http://www.iterate.tv/ - Paul Haddad of Tapbots talks to Guy and Rene about coding on NeXT, deploying Tweetbot and Netbot on multiple platforms, for multiple services, pricing for scarcity, in-app purchases, push notifications, iCloud sync, and his beef with AppKit.

    - -

    Guest

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Mon, 26 Nov 2012 16:25:30 -0500 - - EEBAB007-3DA5-4434-A924-F0D7F4201F93 - Guy English, Rene Ritchie, Paul Haddad - Paul Haddad of Tapbots talks to Guy and Rene about coding on NeXT, deploying Tweetbot and Netbot on multiple platforms, for multiple services, pricing for scarcity, in-app purchases, push notifications, iCloud sync, and his beef with AppKit. - Paul Haddad of Tapbots talks to Guy and Rene about coding on NeXT, deploying Tweetbot and Netbot on multiple platforms, for multiple services, pricing for scarcity, in-app purchases, push notifications, iCloud sync, and his beef with AppKit. - no - 1:29:03 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - - Debug 1: Loren Brichter and Letterpress - http://www.iterate.tv/ - Loren Brichter of Atebits talks to Guy and Rene about working on the iPhone at Apple, Tweetie at Twitter, and now Letterpress on his own. OpenGL, Game Center API, in-app purchases, iOS 7 feature requests, and other assorted nerdery follows.

    - -

    Guest

    - - - -

    Hosts

    - - - -

    Feedback

    - -

    Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.

    ]]>
    - Tue, 13 Nov 2012 19:00:07 -0500 - - 6C4572F8-0EB0-4ED2-8026-E59746661C42 - Guy English, Rene Ritchie, Loren Brichter - Loren Brichter of Atebits talks to Guy and Rene about working on the iPhone at Apple, Tweetie at Twitter, and now Letterpress on his own. OpenGL, Game Center API, in-app purchases, iOS 7 feature requests, and other assorted nerdery follows. - Loren Brichter of Atebits talks to Guy and Rene about working on the iPhone at Apple, Tweetie at Twitter, and now Letterpress on his own. OpenGL, Game Center API, in-app purchases, iOS 7 feature requests, and other assorted nerdery follows. - no - 1:29:27 - rene@mobilenations.com (Guy English, Rene Ritchie)development,ios,osx,iphone,ipad,mac,opengl,apps,app,store,games
    - Guy English, Rene RitchienonadultDebug
    -
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/duesseldorf_lokalzeit.rdf b/vendor/fguillot/picofeed/tests/fixtures/duesseldorf_lokalzeit.rdf deleted file mode 100644 index 2fc2138..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/duesseldorf_lokalzeit.rdf +++ /dev/null @@ -1,111 +0,0 @@ - - - Studio Düsseldorf - NRW-Studios WDR - - - 2015-01-05T08:18:00Z - 2015-01-05T08:18:00Z - - Lokalzeit aus Düsseldorf: Unsere Themen am Montag, 02.03.2015 - - - NRW-Studios - - http://www1.wdr.de/studio/duesseldorf/lokalzeit/studioduesseldorf-lokalzeit100.html - 2015-02-05T11:15:00Z - 2015-02-05T11:15:00Z - Umstrittene Dügida-Urteile<br/><br/>Ein preisgekröntes Fachwerkhaus - Umstrittene Dügida-UrteileEin preisgekröntes Fachwerkhaus - NRW-Studios - 2015-02-05T11:15:00Z - Nachricht - - - Neues Kennzeichen im Kreis Viersen: Großes Interesse an „KK“ - - - NRW-Studios - - http://www1.wdr.de/studio/duesseldorf/themadestages/kennzeichen-kreis-viersen100.html - 2015-03-02T09:01:00Z - 2015-03-02T09:01:00Z - Bürger im Kreis Viersen können ihre Autos ab sofort wieder mit dem früheren Kennzeichen KK zulassen. Rund 7.000 Mal sind bereits im Vorfeld Wunschkennzeichen reserviert worden. Am Morgen bildeten sich vor dem Straßenverkehrsamt in Kempen bereits längere Schlangen. - Bürger im Kreis Viersen können ihre Autos ab sofort wieder mit dem früheren Kennzeichen KK zulassen. Rund 7.000 Mal sind bereits im Vorfeld Wunschkennzeichen reserviert worden. Am Morgen bildeten sich vor dem Straßenverkehrsamt in Kempen bereits längere Schlangen. - NRW-Studios - 2015-03-02T09:01:00Z - Nachricht - - - Tarifstreit: Eine Woche voller Streiks - - - NRW-Studios - - http://www1.wdr.de/studio/essen/themadestages/streikwoche100.html - 2015-03-02T13:15:00Z - 2015-03-02T13:15:00Z - Geduld ist in dieser Woche an vielen Krankenhäusern, aber auch an Gerichten und bei Behörden im Ruhrgebiet gefragt. Die Gewerkschaft ver.di hat die Angestellten im öffentlichen Dienst zu Warnstreiks aufgerufen. Von morgen an legen auch angestellte Lehrer ihre Arbeit nieder. - Geduld ist in dieser Woche an vielen Krankenhäusern, aber auch an Gerichten und bei Behörden im Ruhrgebiet gefragt. Die Gewerkschaft ver.di hat die Angestellten im öffentlichen Dienst zu Warnstreiks aufgerufen. Von morgen an legen auch angestellte Lehrer ihre Arbeit nieder. - NRW-Studios - 2015-03-02T13:15:00Z - Nachricht - - - Die neue WDR-App macht vieles möglich: Filme gucken, Bilder schicken - - - NRW-Studios - - http://www1.wdr.de/studio/duesseldorf/themadestages/wdr-app100.html - 2015-02-13T15:06:00Z - 2015-02-13T15:06:00Z - Mit der neuen WDR-App können Sie Fotos, Videos, Texte und Audio-Aufnahmen direkt an den WDR schicken. Und: Holen Sie sich alle WDR Hörfunkprogramme und das WDR Fernsehen auf Ihr Smartphone oder Tablet! - Mit der neuen WDR-App können Sie Fotos, Videos, Texte und Audio-Aufnahmen direkt an den WDR schicken. Und: Holen Sie sich alle WDR Hörfunkprogramme und das WDR Fernsehen auf Ihr Smartphone oder Tablet! - NRW-Studios - 2015-02-13T15:06:00Z - Nachricht - - - Die Lokalzeit Düsseldorf bei Facebook: Bleiben Sie mit uns in Kontakt! - - - NRW-Studios - - https://www.facebook.com/wdrlokalzeitduesseldorf - Halb acht am Abend, von Montag bis Freitag - ihre Lokalzeit aus Düsseldorf. Alles Wichtige vom Tag gibt’s bei uns. Über die Themen aus Düsseldorf und der Region diskutieren wir mit Ihnen außerdem auf unserer Facebook-Seite. - Halb acht am Abend, von Montag bis Freitag - ihre Lokalzeit aus Düsseldorf. Alles Wichtige vom Tag gibt’s bei uns. Über die Themen aus Düsseldorf und der Region diskutieren wir mit Ihnen außerdem auf unserer Facebook-Seite. - NRW-Studios - Nachricht - - - Beiträge aus dem Studio Düsseldorf: Ihre Region im Überblick - - - NRW-Studios - - http://www1.wdr.de/studio/duesseldorf/themadestages/archiv/themadestages-duesseldorf104.html - 2015-01-19T08:58:00Z - 2015-01-19T08:58:00Z - Hier finden Sie die wichtigsten Themen, über die wir in den vergangenen Tagen und Wochen berichtet haben, nochmal zum Nachlesen, - hören und -schauen. - Hier finden Sie die wichtigsten Themen, über die wir in den vergangenen Tagen und Wochen berichtet haben, nochmal zum Nachlesen, - hören und -schauen. - NRW-Studios - 2015-01-19T08:58:00Z - Nachricht - - - Alles tanzt - rund um Düsseldorf: Die schönsten Bilder und Videos - - - NRW-Studios - - http://www1.wdr.de/studio/duesseldorf/lokalzeit/studioduesseldorf_tanzaktion100.html - 2013-11-22T15:55:00Z - 2013-11-22T15:55:00Z - In unserer Weihnachtsaktion wollten wir mit Ihnen gemeinsam tanzen. Sie haben mitgemacht und uns dabei wirklich beeindruckt! Eishockeyspieler, Gärtner, Rollkunstläufer oder Busfahrer - alle haben sie zusammen mit unserer Reporterin Regina Bremer getanzt. - In unserer Weihnachtsaktion wollten wir mit Ihnen gemeinsam tanzen. Sie haben mitgemacht und uns dabei wirklich beeindruckt! Eishockeyspieler, Gärtner, Rollkunstläufer oder Busfahrer - alle haben sie zusammen mit unserer Reporterin Regina Bremer getanzt. - NRW-Studios - 2013-11-22T15:55:00Z - Nachricht - - - diff --git a/vendor/fguillot/picofeed/tests/fixtures/fanboys.fm_episodes.all.mp3.rss b/vendor/fguillot/picofeed/tests/fixtures/fanboys.fm_episodes.all.mp3.rss deleted file mode 100644 index e6934aa..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/fanboys.fm_episodes.all.mp3.rss +++ /dev/null @@ -1,10426 +0,0 @@ - - - - Fanboys - http://fanboys.fm - - - de-de - cc-by-nc-sa - Wayne's World for radio - fanboys - Regelmässiges Kaffeekränzchen in Sachen Nerdkram - no - Regelmässiges Kaffeekränzchen in Sachen Nerdkram - - fanboys - all@fanboys.fm - - - - - - - - - - - - Episode #166 - Wir sind alle älter als Jesus - no - fanboys - Wir sind alle älter als Jesus - - FAN166 - Thu, 22 May 2014 16:23:27 +0200 - 00:55:16 - - 00:00:00Anfang00:04:35Heathrow Terminal "Samsung S5"00:06:47Apple springt endlich auf WebGL Zug auf00:09:33Apple WWDC App Update und Schedule00:17:02Fuck This Jam00:18:29Super Game Jam00:22:19Twitter kauft (nicht) SoundCloud00:22:23Google kauft (vielleicht) Twitch00:28:43iMessage abmelden00:32:00Ebay Passwortschwund00:32:291Password Watchtower00:35:27MBP Image Retention00:35:35Nidhogg00:38:17Kero Blaster00:41:17Notifyr00:45:08Grimme Online Award00:52:47Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #165 - Snowden ist das neue Schlumpfen - no - fanboys - Snowden ist das neue Schlumpfen - - FAN165 - Thu, 15 May 2014 17:39:51 +0200 - 00:56:09 - - 00:00:00Anfang00:03:15re:publica00:08:36Facetime nur noch mit aktuellster iOS-Version00:13:35Speedrun vvvvvv00:15:26Apple kauft Beats00:19:31Nintendo geht es weiter schlecht00:23:24Xbone jetzt ohne Kinect und billiger00:29:02Jonathan Blow mal wieder00:32:47…and then it rained00:39:11Storium00:44:50Thomas was Alone00:46:12Mein kleines Großbauprojekt00:47:59Castro00:51:20Kiwanuka00:54:34Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #164 - Müllkippen News - no - fanboys - Müllkippen News - - FAN164 - Wed, 30 Apr 2014 16:19:38 +0200 - 00:52:42 - - 00:00:00Anfang00:03:38ET Müllkippen News00:08:09Windows Phone Store jetzt besser als App Store00:11:35Comixology jetzt ohne IAP00:15:10Tipp: python -m SimpleHTTPServer00:16:55Tipp: iOS-Web-Debugging mit Dektop-Safari00:20:13Speedrun durch Meta-Programming00:27:48Indiehaven-Podcast00:29:17The final hours of Titan Fall00:31:20Brothers00:32:17Life goes on00:36:57Fract :(00:39:25Ancillary Justice von Ann Leckie00:45:27Dark Souls00:50:36Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #163 - Gallensteine im Herz - no - fanboys - Gallensteine im Herz - - FAN163 - Thu, 24 Apr 2014 17:20:42 +0200 - 00:52:32 - - 00:00:00Anfang00:03:28iOS 7.1.1 / OS X Security Update00:04:54Jetzt mit IAP Vermerk in den Charts00:07:19Appleseed jetzt offen für alle00:09:44Apple Quartalszahlen - Aktiensplit00:17:57Nike stellt Fuelband ein00:20:04Antichamber Talk00:25:39Rebel Game Jam00:27:30Phaser.io00:33:05Hitman Go00:35:46Stranded00:39:07Trials Fusion doch für 36000:46:430RBITALIS00:50:50Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #162 - Erdbeerquadrat - no - fanboys - Erdbeerquadrat - - FAN162 - Thu, 17 Apr 2014 17:52:47 +0200 - 01:25:23 - - 00:00:00Anfang00:01:52WWDC00:05:39Shazaam integriert in iOS 8?00:08:20iPhone 6 rumor roundup00:14:05Monument Valley Blogpost00:20:52GDC Vault The art of The Witness00:22:08Jonathan Blow bei der A Maze00:25:27A Maze00:35:31Heartbleed00:44:15Nuclear Throne (Vlambeer) development live stream00:48:37MEG:RVO -00:51:00Doublefine spricht über Zahlen00:57:57F2P - Trials Frontier01:03:45Superhot01:06:51Untrusted01:09:2015 Coins01:11:39Hearthstone01:13:24Git Pro01:16:09Tabletop Deathmatch01:18:12Monkey Business01:20:00Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #161 - Nie wieder Freizeit, für immer. - no - fanboys - Nie wieder Freizeit, für immer. - - FAN161 - Thu, 03 Apr 2014 18:40:32 +0200 - 01:26:40 - - 00:00:00Anfang00:03:05Irgendwas mit Netzneutralität00:06:33iPhone 6?00:13:39Keybase.io00:20:40Amazon fireTV00:22:54Amazon Game Studios00:27:30Threes Hintergrundartikel00:31:17Gamasutra über Klone00:35:18GAME_JAM00:45:01Fantastical 2 for iPad00:47:54Clark00:53:46FTL iPad und FTL Advanced Edition01:01:02Monument Valley01:09:09Spaceteam auf Deutsch und Kickstarter01:14:03Hearthstone für iPad01:17:03Monkey Business01:21:40Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #160 - Das Freemium-Pferd - no - fanboys - Das Freemium-Pferd - - FAN160 - Thu, 27 Mar 2014 16:32:41 +0100 - 00:55:28 - - 00:00:00Anfang00:05:09Twitter mit Photo-tagging und bis zu vier Photos00:09:16IGF00:11:52App Store Indie Showcase00:13:52Facebook kauft Oculus00:24:54Disney kauft PewDiePie00:27:05King an der Börse00:29:51Nix mit Tischtennisroboter00:34:13Tipp: Youtube und Untertitel00:37:05Tipp: Korrekturlesen00:38:35Star Horizon00:41:39Starbound00:47:26The Collider00:53:24Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #159 - Die Luft ist raus - no - fanboys - Die Luft ist raus - - FAN159 - Wed, 19 Mar 2014 18:12:30 +0100 - 01:08:23 - - 00:00:00Anfang00:00:27Marienstrasse00:01:36No more iPad 2 - 5c mit 8GB00:03:47Godus 2.0 immer noch unspaßig00:07:41SNES auf iPad mit MFI Controller00:11:56Android für Wearables00:19:16Jony Ive in TIME00:20:51Verbogenes iPhone00:24:15Project Morpheus00:27:49TouchID ist nicht ClickID00:29:53Unity5 angekündigt00:33:26Luftrausers00:40:39Vlambeer talks Luftrausers00:41:14teggle00:43:04Slack00:44:59Instashare00:47:24International Color Time00:54:06Smash Hit00:57:27Free to Play01:04:31Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #158 - Stempel Simulator 2014 - no - fanboys - Stempel Simulator 2014 - - FAN158 - Thu, 13 Mar 2014 16:38:21 +0100 - 01:06:08 - - 00:00:00Anfang00:03:10Satoshi Nakamoto00:08:45iOS 7.100:12:06⇧????00:14:59Logo00:27:23Godus beta 2.000:32:14Indiehaven mit Jonathan Blow00:36:42Little Pink Best Buds00:42:46Mnemonic00:49:17Wave Wave00:52:16Oquonie00:54:44Squirt.io00:55:59The Walk01:02:24Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #157 - Lilablassblau - no - fanboys - Lilablassblau - - FAN157 - Thu, 06 Mar 2014 16:39:27 +0100 - 01:06:20 - - 00:00:00Anfang00:04:35iOS 7.1 on the horizon00:07:18GnuTLS00:13:04iOS Security Whitepaper00:14:15Tizen00:18:42Satoshi Nakamoto00:22:11Speed reading00:33:52Spritekit00:45:34Amaze-Berlin00:47:34Out There00:53:06Startseedobservatory.com00:54:42Amnesia Fortnight01:01:29Continue?987654321001:04:13Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #156 - Karnevalcontent - no - fanboys - Karnevalcontent - - FAN156 - Thu, 27 Feb 2014 16:28:04 +0100 - 01:00:49 - - 00:00:00Anfang00:03:47iOS 7.0.6 / OS X 10.9.200:14:03Keylogging exploit00:15:32Netflix zahlt jetzt Comcast direkt00:22:07Apple kauft Firma hinter Testflight. Kein Android mehr.00:28:04Samsung S500:31:44Samsung Gear 2, Fit00:36:30Lol. ACL for WebOS00:38:59F2P ruins everthing00:41:04Tengami00:44:55Antichamber00:50:59Amnesia Fortnight00:57:22David Bowie Ausstellung00:58:46Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #155 - Ein Meter Polyneux - no - fanboys - Ein Meter Polyneux - - FAN155 - Thu, 20 Feb 2014 16:29:49 +0100 - 01:01:40 - - 00:00:00Anfang00:03:52Framer00:06:13Polyneux und Invest to Play00:14:01How to not be a Glasshole00:19:19Rejecty Bird00:22:27ProTip: Alt-rauf/runter in Messages Mac00:24:23Facebook kauft Whatsapp00:29:23Amnesia Fortnight00:36:30Gorogoa00:41:18Humblebundle 11 mit Antichamber und Swapper00:54:15Dumb ways to die00:56:18Waterlogue00:58:56Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #154 - Floppy Bird - no - fanboys - Floppy Bird - - FAN154 - Thu, 13 Feb 2014 16:24:37 +0100 - 00:57:06 - - 00:00:00Anfang00:09:11Die Flappy Bird Saga00:21:12Amnesia Fortnight 201400:24:43Spotify: Single Track Repeat00:27:04Outerlands00:29:51Kami00:32:14Narrative00:37:21Papers Please00:45:34Maverick Bird00:47:30Stanley Parable00:50:15JazzPunk00:53:40Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - Episode #153 - Free to podcast - no - fanboys - Free to podcast - - FAN153 - Thu, 06 Feb 2014 16:29:55 +0100 - 01:02:29 - - 00:00:00Anfang00:02:04Facebook Paper vs. Fiftythree00:08:19HF2PRE: Dungeon Keeper iOS00:19:16App-Flipping00:25:17Origami00:28:53Wil Shipley über Reviews00:33:50SteelSeries Stratus Hands-On00:40:46The floor is jelly00:45:55XCOM: Enemy Within - Elite Edition00:47:31Threes00:49:12Octodad00:52:43The Wolf Among Us - Episode 200:53:15Evoland00:59:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #152 - Fordie Laschorsch - no - fanboys - Fordie Laschorsch - - FAN152 - Wed, 29 Jan 2014 17:27:54 +0100 - 00:48:04 - - 00:00:00Anfang00:01:43Mal wieder Quartalszahlen00:03:42F2P ruins everything00:06:35Jonathan Blow über Game Design00:11:13Bezahlen per TouchID?00:15:53iOS in the Car video00:17:5230 Jahre Mac00:20:15Der CCC verklagt die Bundesregierung00:21:57iWork update - AppleScript returns00:26:47Mac Präsi00:29:42Hopelite00:32:52Hour of Code00:35:11Redshirt00:40:46Into the Dead00:45:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #151 - Candy Podcast Saga - no - fanboys - Candy Podcast Saga - - FAN151 - Wed, 22 Jan 2014 17:55:58 +0100 - 01:07:34 - - 00:00:00Anfang00:02:58Marcel bei Insert Moin00:04:59Patreon00:09:58iOS in the car00:17:36Nintendo, die roten Zahlen und die Zukunft00:22:31iPhablets00:24:33Candy Crush Saga™00:31:45Protip: Originalvorschlag wiederherstellen00:38:28Broken Age00:55:59Abluxxen00:58:02XCOM®: Enemy Unknown00:59:22Outerlands01:03:06Hearthstone01:04:52Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #150 - Click and Point Adventure - no - fanboys - Click and Point Adventure - - FAN150 - Wed, 15 Jan 2014 17:32:36 +0100 - 01:05:21 - - 00:00:00Anfang00:06:59Androidgedöhns00:13:52Apple meets Club der toten Dichter00:21:42Google kauft Nest00:31:19Broken Age00:48:00Jelly00:50:58Magnetized00:52:56PKPKT00:56:36Charge Card00:59:08Noisli01:01:22Rausschmeisser]]> - - - - - - - - - - - - - - - - - - Episode #149 - Palindromedar - no - fanboys - Palindromedar - - FAN149 - Thu, 09 Jan 2014 16:51:12 +0100 - 01:30:29 - - 00:00:00Anfang00:04:22SteelSeries Stratus00:13:53Un-Fairphone00:27:19Faire Maus00:30:44Etwas 30c300:33:10Absurde NSA codenamen00:35:12Do you think that's funny?00:36:30Seidenstrasse und Gebäude00:37:05Glass00:43:25Siri öffnet auch Programme00:53:01Condense00:55:29Duet01:02:22Atomic+01:03:24Device 601:12:07Drei by Etter01:16:15Monument Valley (Beta)01:19:40Ghostery01:25:47Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #148 - Wir sind durch - no - fanboys - Wir sind durch - - FAN148 - Wed, 18 Dec 2013 18:56:37 +0100 - 01:11:02 - - 00:00:00Anfang00:06:06SteamOS00:10:44Mac Pro00:16:15iBooks verschenkbar00:19:15Carcassonne: Burgfräulein und Drache00:23:12Hörerfeedback00:29:08The Room 200:36:56The Novelist00:42:30QuizUp00:44:46The Wolf Among Us00:52:38Walking Dead Season 200:55:11Castro01:01:30Tydlig01:05:20Ski Safari: Adventure Time01:10:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #147 - Na Servus! - no - fanboys - Na Servus! - - FAN147 - Fri, 13 Dec 2013 16:21:16 +0100 - 01:04:24 - - 00:00:00Anfang00:00:37Aus00:00:53Ein00:02:49Poppy00:12:48Hörerkommentar00:22:04Hearthstone00:29:54Homebrew00:31:50ffmpeg -crf und co00:35:09The Room Two00:52:54Blek00:55:20Russian Railroads00:57:22Inkpad01:00:51Rausschmeisser]]> - - - - - - - - - - - - - - - - - - Episode #146 - SCART scars - no - fanboys - SCART scars - - FAN146 - Thu, 05 Dec 2013 16:28:59 +0100 - 00:53:03 - - 00:00:00Anfang00:04:10Amazon Prime Air00:11:20iCloud Photostream die 3te00:16:06Oceanhorn vs. Zelda00:21:44Apple kauft Topsy00:24:58Neues von der Drosselkom00:26:22cmd.fm00:27:19Zukunft: Bessere USB Stecker!00:32:54Doctor Who00:38:52Planet Money makes a Shirt00:41:13Queers in love at the end of the world00:42:26Concepts00:44:54Double fine talks Broken Age00:45:49Princess and Dragon00:49:16Rausschmeisser00:59:21Ein00:59:40Plätzchen]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #145 - Die stille Podcasttreppe - no - fanboys - Die stille Podcasttreppe - - FAN145 - Thu, 28 Nov 2013 16:41:49 +0100 - 01:06:30 - - 00:00:00Anfang00:06:02Roter Mac Pro verkauft sich für 977000 Dollar00:08:13Gruseltags und gruseltabbed Finder00:21:12Videos im App Store?00:24:18Google Voice Search für Chrome00:31:57Konsolenverkäufe und die Wii U00:39:39Jetzt auch auf Steam: Reviews00:41:17Lytro-artiges Patent von Apple00:45:22iCloud photostream Begrenzungen00:49:02YNAB00:52:51Mosaika00:55:23MULE Returns00:57:17Lost Cities00:57:38Zicke Zacke Hühnerkacke00:58:15MindNode 300:59:26Castle of Illusion01:02:37Rausschmeisser01:02:39Ein01:02:43Aus]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #144 - Ein Dutzend Gros-e Schocks - no - fanboys - Ein Dutzend Gros-e Schocks - - FAN144 - Thu, 21 Nov 2013 17:41:15 +0100 - 01:00:14 - - 00:00:00Anfang00:03:14iPhone 5c floppt00:07:59Apple kauft PrimeSense00:14:39Valve baut auch VR Hardware00:20:19Twitter rudert bei DMs zurück00:25:55Erste iOS Controller erscheinen00:32:49Next-gen Konsolen in Amerika auf dem Markt00:37:34Oceanhorn durchgespielt00:47:03Lescheks Flug von Sebastian Stamm00:49:23Desert Bus for Hope00:50:36Zuki's Quest00:51:00KONSUM00:54:12Match a number00:57:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #143 - Reliefpfeile - no - fanboys - Reliefpfeile - - FAN143 - Thu, 14 Nov 2013 17:38:05 +0100 - 01:02:44 - - 00:00:00Anfang00:02:34iPad Mini Retina00:07:36AppleTV doch erst mal nicht00:11:19Youtube-Google-Plus-Verplombung00:16:57Byebye Daumen00:19:40Facebook Messenger jetzt WhatsUp Ersatz00:29:202 Dreams Postmortem00:33:46HackPad00:36:14BitTorrent sync für iOS00:39:15Obduction ist gefundet00:44:26Symmetrain00:46:17Walking Dead00:53:30Oceanhorn00:56:32Xcom Nachtrag01:00:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #142 - Menschliche Penisfilter - no - fanboys - Menschliche Penisfilter - - FAN142 - Thu, 07 Nov 2013 18:57:44 +0100 - 01:23:35 - - 00:00:00Anfang00:04:42iPad Air00:20:02Nintendo schaltet Swap Notes ab00:21:34Pebble iOS 7 Notifcations00:24:37Garage Band 1000:32:38Podcasts und Kapitelmarken00:41:28Beyond Two Souls00:47:07Free 2 Play00:50:45iMessage iOS 7 Tipp00:58:15Hatching Twitter01:02:28The Stanley Parable01:06:36Knock01:11:04MegaCity01:12:37Wacom Intuos Creative Stylus01:20:15Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #141 - Asterix bei den Banausen - no - fanboys - Asterix bei den Banausen - - FAN141 - Wed, 30 Oct 2013 17:53:29 +0100 - 01:14:13 - - 00:00:00Anfang00:06:12iMovie-Praxisbericht00:23:08Ganz schlechte Mac Pro Werbetexte00:29:17Mavericks kann Thunderbolt IP00:32:33Apple Quartalszahlen00:34:22Intel baut jetzt ARM00:36:34Bittorrent Sync00:41:30Tweetbot 300:46:50Pivvot00:49:17Fantastical00:54:53arte App00:55:51Asterix bei den Pikten01:00:32Wunder muss man selber machen01:02:15Dumb Ways to Die01:04:18Hearthstone Beta01:13:04Rausschmeisser01:13:07Aus]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #140 - Umsonst - no - fanboys - Umsonst - - FAN140 - Wed, 23 Oct 2013 19:22:01 +0200 - 01:38:51 - - 00:00:00Anfang00:02:23Sea Lion00:06:49Macbooks00:09:32Mac Pro00:14:32iWork00:35:02iLife00:43:01iPad Air00:48:55iPad mini00:56:56iOS 7.0.3 mit Keychain Sync01:01:45Podcasts und iTunes Update01:04:27Maver-Tricks01:06:01iOS-Tricks01:06:442 Dreams01:11:05Beyond: Two Souls01:35:56Kickstarter: Obduction01:37:38Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #139 - Hose in distress - no - fanboys - Hose in distress - - FAN139 - Wed, 16 Oct 2013 18:32:10 +0200 - 01:02:48 - - 00:00:00Anfang00:02:48iPad Event am 22.10.00:11:17Sea Lion00:20:15Neue Retail Chefin00:22:34Twitter DMs von allen00:25:41Bluescreen of iOS00:27:39Apple gibt iTunes Credits für iWork00:29:31iOS7 Tips & Tricks00:35:28Air Video HD00:40:26Mass Effect 300:46:48Boson X00:50:52Trouserheart00:53:13Kami00:56:24Marcel Träumt00:58:23Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #138 - Instanbul (Not Portlandinopel) - no - fanboys - Instanbul (Not Portlandinopel) - - FAN138 - Tue, 08 Oct 2013 17:49:41 +0200 - 01:17:22 - - 00:00:00Anfang00:03:12Finger reicht beim Reboot nicht aus00:04:32Istanbul00:08:03Portland00:13:55Bundestagswahl00:29:54iPhone Fingersperre gehackt00:32:55iCloud Account gehijackt (mit fake finger)00:50:07iOS701:03:52Adobe Sicherheitslücke01:04:35Ouya reagiert01:06:06YouTube und Soundcloud mit Play-Symbol im Browser01:09:05FEZ01:10:20The Nightjar01:11:29Strata01:14:05Nayas Quest01:17:01Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #137 - Zicke Zacke Hühnerkacke - no - fanboys - Zicke Zacke Hühnerkacke - - FAN137 - Wed, 11 Sep 2013 18:02:23 +0200 - 01:56:15 - - 00:00:00Anfang00:01:10Vorstellungsrunde00:03:31Wie kam es dazu?00:05:46Memospiel00:11:48Animationen00:17:33Menüführung00:19:42Kindergarten Tests00:25:07Der Pfeil00:30:52Debug Kram00:34:51Illustration00:40:21Elternmodus00:41:13Computerhuhn00:41:52Künstliche Intelligenz00:47:37Geführter Zugriff00:53:32Credits00:59:01Teil Zwei mit dem Zoch Verlag00:59:47mit Klaus Zoch01:00:07und Albrecht Werstein01:01:10Wie kommt ihr dazu?01:10:16Der Anfang des Zoch Verlag01:17:36Was ist das tolle am Spielen?01:22:14Computerspiele01:29:03Unterschiede01:40:03Regeln lesen01:48:09Jubiläum]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #136 - Haar Haar - no - fanboys - Haar Haar - - FAN136 - Wed, 11 Sep 2013 17:56:12 +0200 - 01:23:23 - - 00:00:00Anfang00:03:30Keynote00:05:04iTunes Festival00:07:05iOS 7 am 18.9, GM seit gestern00:12:56iWork, iMovie, iPhoto für iOS umsonst00:15:49iPhone 5c00:26:09iPhone 5s00:36:20M7 Motion Coprocessor00:37:55Kamera00:44:14Touch ID01:02:43iOS 7 fragt jetzt beim starten schon nach passcode01:07:59PS Vita TV01:10:23Photoshop CC01:16:29Ryan Nielson auf Debug01:17:50Zicke Zacke Hühnerkacke01:20:11Rausschmeisser01:20:17]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #135 - O-Ballmer - no - fanboys - O-Ballmer - - FAN135 - Thu, 05 Sep 2013 17:38:11 +0200 - 01:10:22 - - 00:00:00Anfang00:03:01iPhone 5c Hamstersärge vollbestückt geleaked00:07:30This should brighten everyone’s day00:16:29Samsung Smartwatch00:21:19Godus im Steam Early Access am 13.00:23:25Nintendo 2DS, Wii U Deluxe billiger00:26:11„Unity 2D“00:28:02Ouya Kickstarter Foo00:29:25Kevin Spacey Spricht großartig:00:33:21Hell froze over - bugreport.apple.com00:41:53Microsoft kauft Hardwaresparte von Nokia00:46:38Facetime geht jetzt immer durch Apple's Server00:48:44Android KitKat®00:54:44Freiheit statt Angst00:59:32Kamakiri01:00:33Brawlin' Sailor01:06:04Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #134 - GRAVITYYYY FALLS! - no - fanboys - GRAVITYYYY FALLS! - - FAN134 - Wed, 28 Aug 2013 17:31:23 +0200 - 00:49:05 - - 00:00:00Anfang00:03:11NEWS00:03:19Ballmer verlässt Microsoft00:08:55Openmind Nachlese00:09:30Keynote00:14:06Wir und unsere Luxusprobleme00:15:23Ihr gehört nur mal ordentlich durchgevögelt00:19:05Macht, Meme und Metaphern00:21:30iOS 7 Release am 10.9?00:25:48A7 vielliecht 64-bit?00:30:15iWork for iCloud beta00:32:18Splitscreen in Photoshop00:34:34Blackbar00:38:47Bosca Ceoil00:41:19Zugradar00:42:38Noteshelf00:44:34Flight of the Conchords auf Watchever00:48:20Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #133 - Guck irgendwohin - no - fanboys - Guck irgendwohin - - FAN133 - Wed, 21 Aug 2013 17:33:42 +0200 - 00:57:43 - - 00:00:00Anfang00:02:48Zwei iPhone Modelle quasi offiziell00:09:20Gamescom Sony PK00:10:57Sony umarmt Indies00:12:01Murasaki Baby00:15:02Everybody's gone to the Rapture00:16:00PS4 Release 29.1100:16:20PS3 und Vita billiger00:16:34Rime00:20:56Neues von der Ouya00:24:25Remote Code Execution00:27:23Gone Home00:35:12Malen mit Photoshop00:37:492D platform controller00:43:40Playmaker00:48:13PvZ 200:53:49Frontback00:56:47Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #132 - Bluetoothkabel - no - fanboys - Bluetoothkabel - - FAN132 - Wed, 14 Aug 2013 17:17:45 +0200 - 00:48:54 - - 00:00:00Anfang00:04:21Iwata statement00:13:22Steve Jobs Disney Legend00:15:37iPhone Announcement am 10.0900:18:44Investors gotta invest00:21:20Volume Trailer00:25:54Gravity Falls00:29:32Speaker Deck00:32:53DEF CON Doku00:41:00Rausschmeisser]]> - - - - - - - - - - - - - - - - - Episode #131 - Käse Tetris - no - fanboys - Käse Tetris - - FAN131 - Thu, 08 Aug 2013 16:21:52 +0200 - 00:53:59 - - 00:00:00Anfang00:04:37EFF startet Trolling Effects00:08:18Obama vetot iPhone Import Verbot00:11:52Bezos kauft die WaPo00:19:1010000 Year Clock00:19:18John Carmack jetzt bei Oculus00:26:12Seriengenerde00:34:22Dream of Pixels00:37:34You don't know Jack auf der Ouya00:40:17Mario & Luigi: Dream Team (3DS)00:46:39Dom bei Insert Moin zu Rymdkapsel00:52:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - Episode #130 - Bumm Zack Return - no - fanboys - Bumm Zack Return - - FAN130 - Thu, 01 Aug 2013 14:28:41 +0200 - 00:57:48 - - 00:00:00Anfang00:02:36Nexus 7 hat GPS00:05:56Chromecast00:08:26iPhone 5C00:17:33Bob Mansfield jetzt doch wieder raus, so halb00:21:03FEZ 2 eingestellt00:28:27Wii U tankt00:35:29Microsoft Surface Pro00:43:18Unprofessional00:44:49freakshow.fm00:46:10Accidental Tech Podcast00:47:39Pan Man00:49:16Optia00:55:13Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #129 - We'll be back soon - no - fanboys - We'll be back soon - - FAN129 - Fri, 26 Jul 2013 14:25:13 +0200 - 00:56:46 - - 00:00:00Anfang00:01:36Apple Dev Center down00:15:39Apple Aktivierungsserver kurz down00:16:56Amazon Cloud Player jetzt mit CD Käufen00:20:13Nexus 7 mit Retina00:23:24Google Chromecast00:27:10Google Play Games00:31:01Ouya verdoppelt Kickstarter00:36:34Microstoft & Indies00:41:17Twitter faked 3 tweets00:45:16terminal-notifier00:48:23Dungeonism00:52:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #128 - Nerdification Center - no - fanboys - Nerdification Center - - FAN128 - Wed, 17 Jul 2013 17:43:21 +0200 - 01:08:12 - - 00:00:00Anfang00:06:41Update Notification ausschalten00:08:29Logic Pro X00:16:26Wallpaper Ads stinken00:20:32Fakten über Web-Apps und Javascript00:28:23No Ammo For You (until next update)00:30:35HBO vs. VLC (not really)00:35:20WWDC Sessions kurzzeitig auf Youtube00:38:27The SCUMM diary00:40:17PS4 self-publishing00:44:05Google maps app00:46:35Magnetized ripoff auf XBLIG00:49:44Stacking00:53:30Reality00:55:18Lego Harry Potter00:59:03Bugshot01:02:18Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #127 - Lindyhops - no - fanboys - Lindyhops - - FAN127 - Thu, 11 Jul 2013 16:32:22 +0200 - 01:06:09 - - 00:00:00Anfang00:07:11Nächster Google dienst down00:14:23"App Store" Lawsuit vorbei00:15:47Apple verliert eBook Rechtsstreit00:20:25iOS 7: ein schritt zur Auflösungs-Unabhängigkeit?00:25:22iOS 7: iPhone apps auf non retina iPads jetzt Retina00:29:45App Store wird 5 Jahre00:37:03Linden Lab kauft Desura00:39:18Dropbox jetzt mit App Sync API00:41:26Podcasts.app00:45:08Filmfest München Games00:53:27Guacamelee!00:58:03Timecode01:03:37Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #126 - Doublefeine Butterbrezn - no - fanboys - Doublefeine Butterbrezn - - FAN126 - Wed, 03 Jul 2013 17:52:28 +0200 - 01:02:57 - - 00:00:00Anfang00:02:58Apple stellt Paul Deneve (wieder) an00:05:09iWatch Spekulationen00:09:16Plastik iPhones?00:13:08Xbox Chef Don Mattrick verlässt Microsoft00:20:09'Jobs' Trailer00:22:22DoubleFine in Geldnöten00:35:12Carcassonne Update00:37:44Life's too short00:39:39Dom hat mehr Xcom gespielt.00:42:27Dom dachte Last of US ist mit Ellen Page.01:01:29Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - Episode #125 - Nichts passiert und wir reden drüber. - no - fanboys - Nichts passiert und wir reden drüber. - - FAN125 - Thu, 27 Jun 2013 16:22:54 +0200 - 00:44:22 - - 00:00:00Anfang00:04:07Ouya ist jetzt im Verkauf00:13:33Gratis 3D Game Engine von Havok00:17:23Poppy00:25:10No Shield for you (for now)00:28:17No Plants vs. Zombies 2 for you (for now)00:29:45Telekom Drosselpläne, Drölfter Teil00:31:52Moves00:34:37Second Chance00:37:10Ice Breaker00:39:34Limbo für iOS angekündigt00:40:17Polymer00:43:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #124 - Alt wie Alternativ - no - fanboys - Alt wie Alternativ - - FAN124 - Thu, 20 Jun 2013 16:17:38 +0200 - 00:56:40 - - - 00:00:00Anfang00:02:07Tipp Nachtrag: Space für schnelles Draggen00:08:00WWDC Nachlese00:30:35Microsoft und die gebrauchten Spiele00:35:02Sony verbockt PS3 update00:38:00Airport Extreme00:44:04The Cave coming to iOS00:45:08Zoomable Map00:46:50Twitterific für iOS00:48:26XCOM Enemy Unknown00:50:03Ending00:51:59TOMB00:53:11Stickets00:55:33Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #123 - Neon Blur - no - fanboys - Neon Blur - - FAN123 - Tue, 11 Jun 2013 19:48:35 +0200 - 01:19:01 - - - 00:00:00Anfang00:01:34Apple Keynote00:01:59Aussenreport00:18:38Lustig: Greg Federighi00:20:03OS X Mavericks00:23:20Tabbed Finder00:24:14Mutliple Displays00:25:45Compressed Memory00:27:08Safari00:29:01Keychain in the cloud00:30:24Calendar00:33:23Maps00:35:16iBooks00:37:14Neue MacBook Airs (ab sofort)00:38:41Mac Pro00:42:11iCloud00:42:23iWorks im Webbrowser00:43:31iOS 700:44:12Interface00:55:33Safari00:56:17Control Center00:57:05Multitasking00:58:59Airdrop00:59:25Siri01:00:11App Store01:01:37iTunes Radio01:03:15FaceTime audio01:04:34Notification sync01:05:003rd party game controller01:07:29Sprite Kit01:09:18PS401:12:05Prism01:15:31Tentacle Wars01:18:29Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #122 - Werwolfraumfahrtprogramm - no - fanboys - Werwolfraumfahrtprogramm - - FAN122 - Thu, 06 Jun 2013 16:55:34 +0200 - 01:16:50 - - - 00:00:00Anfang00:02:00PDF wird 2000:04:57iPod 4G no more.00:11:11Apple goes Pegatron00:12:33Marco Arment verkauft The Magazine00:14:43Die Telekom und die Flats00:20:4310.8.4 ist draussen00:24:30WWDC Gerüchteküche00:40:21Another Double Fine Kickstarter00:43:35Gilberts Scurvy Scallywags00:46:12olloclip App00:47:30Fever + Sunstroke00:52:03Moon Waltz00:53:54Adobe Kuler00:56:25Hangouts00:58:20Dots01:00:10KOTOR01:02:14Warhammer Quest01:06:45Edge01:08:03Phoenix Wright: Ace Attorney Trilogy HD01:13:01Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #121 - Profitieren sie! - no - fanboys - Profitieren sie! - - FAN121 - Wed, 29 May 2013 18:40:10 +0200 - 01:13:39 - - - 00:00:00Anfang00:04:47Curiosity00:12:02Google I/O Keynote00:26:11Tim Cook bei All Things Digital00:34:23Ouya00:43:37Penny Auktionen00:52:33Zelda Konzert00:56:25Alcatraz - Xcode plugin manager00:59:22Life goes on (alpha)01:05:03Humble Bundle01:07:58Poker Night 201:10:18Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - Episode #120 - Xbox, go home! - no - fanboys - Xbox, go home! - - FAN120 - Thu, 23 May 2013 17:51:07 +0200 - 01:00:32 - - - 00:00:00Anfang00:02:22Yahoo kauft Tumblr00:04:50flickr Redesign00:07:23Xbox ONE00:31:53Unity jetzt auch gratis für Mobiles00:35:05Ghost Blogging Platform00:38:17Apple und die Steuern00:40:45Amazon und Fanfiction00:44:11MBA und Multiscreen00:47:15bash skript zeitbasiert ausführen00:49:19New Star Soccer00:51:42Alan Zucconi: Still Time00:55:59You must escape00:58:54Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #119 - LOAD "WINDOWS",8,1 - no - fanboys - LOAD "WINDOWS",8,1 - - FAN119 - Wed, 15 May 2013 17:29:41 +0200 - 01:08:45 - - - 00:00:00Anfang00:01:34Windows 8.1 (bisher Blue)00:14:33Et war Piratenparteitag00:28:39Republica Nachlese - alle Videos00:32:40Facebook Home kommt nicht so dolle an00:36:11Nokia macht jetzt auch die antenne in den rahmen (Lumia 925)00:39:59Oculus00:45:20App dot Net Podcast00:49:52Geofency00:54:47Nextr00:56:59Lensflare00:59:04Mindwave Mobile / Cortex01:03:26Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #118 - Onkel Tim knackst - no - fanboys - Onkel Tim knackst - - FAN118 - Thu, 09 May 2013 01:56:16 +0200 - 00:48:48 - - - 00:00:00Anfang00:00:08iOS 7 will be Ive-ified00:04:04Google Glass Batterielaufzeit00:05:42XBox mit Offline Modus00:07:18Republica00:10:48Birgitta Jónsdóttir00:12:52Deanna Zandt00:13:32Bicyclemark00:14:38Youtuber - Social Media, die nächste Generation00:19:14Laurie Penny00:20:34Cyborgs Neil Harbisson/Moon Ribas00:23:21Kate Darling00:26:37Gunter Dueck00:32:13Marcels Talk00:37:34CERN Talk00:40:14Crowdsource Astronomy00:42:28Crabitron00:44:04Sorcery00:47:13Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #117 - Der Pepsi-Test - no - fanboys - Der Pepsi-Test - - FAN117 - Tue, 30 Apr 2013 19:04:02 +0200 - 01:03:09 - - - 00:00:00Anfang00:02:27Petition der Spieleautoren00:11:18WWDC innerhalb von 90 Sekunden ausverkauft00:14:57Guter Artikel zur Drossel00:17:29Apple Store Berlin am 3.5.00:20:59Oculus Rfit00:35:24AMaze Indie Connect00:37:39Talk von Rami von Vlambeer00:45:35Marius The Visit00:49:30Amaze Award für Space Team00:53:32Ludum Dare00:55:11Free Indiegames00:56:04Venus Patrol00:59:24Wally01:01:21Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #116 - Wir halten die Nase hoch - no - fanboys - Wir halten die Nase hoch - - FAN116 - Wed, 24 Apr 2013 18:08:55 +0200 - 01:01:23 - - - 00:00:00Anfang00:01:40Hopscotch nicht Hotch Potch00:03:04Chrome Books verkaufen sich nicht00:04:31App Gratis Saga: Apple dreht push ab00:07:09Drossel jetzt offiziell00:12:27Wer drosselt?00:14:54Apple 2013-Q2 Quartalszahlen00:17:23Cook erwähnt Fall und 2014, hätte iMac lieber noch zurückgehalten wenn ers gewußt hätte00:18:28Gibt mehr dividende, und apple kauft aktien zurück00:20:02Keine Emojis mehr in App Store Texten00:20:55WWDC angekündigt. Videos während der Konferenz. 2te Juni Woche.00:25:21"Was geht app" Podcastpromo00:27:38Timemachine konsolidieren00:37:26Sideways Pebble Watchface von dom00:42:03Kentucky Route Zero00:49:02Interview zu KRZ00:50:29Pythonista00:57:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #115 - Feuchte-Ohren Zeit - no - fanboys - Feuchte-Ohren Zeit - - FAN115 - Thu, 18 Apr 2013 16:26:36 +0200 - 00:57:45 - - - 00:00:00Anfang00:01:48Internet Movie Data Base statt International Movie Data Base00:06:00Romo00:08:58Kein Geld für Entwickler bei Google Glass Beta00:10:40Kein wetierverkaufen der ersten Brillen00:12:53Twitter verbietet Flattern per Fav00:16:41Facebook Home mit QuartzComposer designt.00:23:57@lorenb jetzt auch bei facebook.00:26:50Tipp von Jörg: Mails teilweise zitieren00:28:49ColorSense for Xcode00:33:17appsacker00:34:24Marc-Uwe Kling00:37:11Magnetized00:41:24Thomas was alone00:48:01iTV Shows 200:51:06Pepple Watchfaces00:52:22Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #114 - Pod Gratis Home - no - fanboys - Pod Gratis Home - - FAN114 - Thu, 11 Apr 2013 22:43:35 +0200 - 00:57:38 - - - 00:00:00Anfang00:01:09Debug 12: iCloud and Core Data00:01:55Weniger Leute kaufen Trucks00:08:43Facebook Home für Android00:11:29Kommentar 1 von Matt Drance00:11:30Kommentar 2 von Matt Drance00:17:07Twittercards und Deeplinking00:21:22Google forkt Webkit: Blink00:22:28WebKit2 vs. Chromium00:24:08WebKit Contributions00:25:33Mozilla mit Samsung macht Servo00:26:18Rust-Language00:28:11Wii U: Verkaufszahlen stocken00:31:13Apple entfernt App Gratis00:33:45Panic bringt Status Board für iPad00:37:51Status Board Widgets00:40:14Tipps von Sami: Mail: Entwürfe öffnen: lange auf Neue Mail-Icon bleiben00:41:32Safari: geschlossene Reiter erneut öffnen, lange auf +-Icon bleiben00:42:47iPhone: Notifications Wegswipen00:45:14sightsnap v0.500:47:31Marcels Devblog00:49:56Badland Devblog00:50:36Flashback Remake Trailer00:54:50Rausschmeisser00:54:52Aus]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #113 - Trübe Wolkenlage - no - fanboys - Trübe Wolkenlage - - FAN113 - Thu, 04 Apr 2013 20:48:09 +0200 - 01:24:02 - - - 00:00:00Anfang00:00:51Rückblick 201300:01:13Errata00:06:59Ausblick 201300:10:48Tim Cook entschuldigt sich bei China00:16:44iMessage Pranksters00:17:13Zalgo Text00:22:22The Verge erklärt warum iCloud kaputt ist00:31:33Quicksilver 1.0 - nach 10 Jahren00:34:20Leider wohl kein Game-Controller von Apple00:37:05Reeder jetzt für Umme00:38:30Apple wird zum 1. Mai Retina und Longfon enforcen00:42:06Dom hat Office gekauft. Microsoft Store ist anderer Meinung.00:47:55App Store zeigt jetzt die Altersvorgaben prominenter00:49:35LucasArts macht dicht00:54:45Maniac Mansion GDC Talk00:56:03Maniac Mansion Deluxe Let's Play01:00:05Trickkiste: Kurze Texte aus iBooks kopieren.01:03:58Dom macht Open Source: sightsnap v0.201:06:52Fester Mudd01:12:50Badland01:20:15Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #112 - Mapwesend - no - fanboys - Mapwesend - - FAN112 - Tue, 26 Mar 2013 19:49:48 +0100 - 00:58:04 - - - 00:00:00Anfang00:01:522012 Rückblick00:10:12Dr. Oetkers Kochbuch00:12:43Trickkiste: Cmd-Shift-C in Photoshop00:16:35Eric Schmidtberry00:18:12Telekom bloggt zur Drosselung00:23:05Formspring ist tot00:25:27Ask.fm lebt00:25:50BND jetzt mit Hackerabwehr00:26:36Blizzard kündigt Hearthstone: Heroes of Warcraft an00:30:29GDC Vault00:38:02Kotaku wieder lesbarer00:39:07WhyWiiU?00:40:56Wii Mini ohne Internet00:44:30Marcel hat Starseed Pilgrim durchgespielt00:47:41Tomb Raider00:55:29Loss00:56:22Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #111 - Gedrosselt - no - fanboys - Gedrosselt - - FAN111 - Thu, 21 Mar 2013 18:41:07 +0100 - 01:09:32 - - - 00:00:00Anfang00:03:452011 Rückblick00:08:45TheCodingMonkeys wird 1000:10:53Neue Website00:11:59Evil Quiz00:12:43Lost Cities Jubiläumsrabatt00:13:31Telekom will DSL Drosseln00:25:52Pebble 1.9.000:30:41Why Make Portal 2?00:33:40iOS 6.1.3 ist da, hilft aber nix00:35:29Garageband unterstützt Audiobus!00:37:35Google Keep00:40:18Kevin Lynch wechselt von Adobe zu Apple00:43:15Samsung machte ne Smart Watch00:45:26Apple wird von THX verklagt00:46:44AppArtAward00:48:07Jabber Server und Push00:52:49Codequartett00:55:01The Silent Age00:57:26Ridiculous Fishing01:02:11Year Walk01:09:09Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #110 - Aufda Brennsuppn dahergschwomma - no - fanboys - Aufda Brennsuppn dahergschwomma - - FAN110 - Fri, 15 Mar 2013 02:14:51 +0100 - 01:20:43 - - - 00:00:00Anfang00:00:57201000:08:37Ups: WebM verletzt doch Patente00:11:56Oha: Firefox wird in version 22 mp3 und m4v abspielen00:14:53Pebble ist da!!1elf!!00:28:24Google Reader wird zum 1. Juli eingestampft00:31:53Google Takeout via dataliberation.org00:33:15Ron Gilbert verlässt Double Fine00:38:46Apple Open Source00:45:04Bring your own device, iOS MDM00:49:26Kamera Import Wokflow00:55:44firtz00:59:36Simian Interface01:01:13Gravity Duck01:04:00Mou01:06:06Wide Sky01:11:24Starseed Pilgrim01:15:21Reflector App01:19:33Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #109 - CeBIT Sonderausgabe - no - fanboys - CeBIT Sonderausgabe - - FAN109 - Wed, 06 Mar 2013 18:32:44 +0100 - 01:14:10 - - - 00:00:00Anfang00:01:44200900:09:46Kellee Santiagio arbeitet jetzt für die OUYA00:12:40Podlove Crowdfunding00:14:05In-App Schlumpfbeeren Kauf Settlement00:16:57Panic und der Lightining AV Adapter00:23:05Es ist CeBit (lacht)00:24:46TelePod, Mobi, TriPod00:27:14Herr Groening hat mal ne Apple Broschüre illustriert00:28:42Sparrow 2.0 Beta released00:30:41Juhu! Das Leistungsschutzrecht ist da!00:35:24Time Machine und iPhone00:39:49Vavideo Abos00:42:29Webmontag und Versioneye00:45:25iOS Lokalisierung00:51:18A small talk at the back of beyond00:52:55Marcel hat VVVVVV gespielt00:57:37BAFTAs für Videospiele01:02:17Update für Finding Teddy ist da01:07:03CRATE Magazin mit Interview von YT01:08:12Rinth Island erinnert dom an Nebulus01:10:58Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #108 - Lutschfeste Küchenmesser - no - fanboys - Lutschfeste Küchenmesser - - FAN108 - Fri, 01 Mar 2013 00:33:56 +0100 - 01:20:34 - - - 00:00:00Anfang00:07:13200700:10:48200800:19:04Supermeat Boy Update00:22:12Chromebook Pixel00:27:45Jony Ive bei Blue Peter00:30:03App.net - gratis oder umsonst?00:40:35Back to my Mac und ssh00:43:34Back to my Mac und WebBrick00:46:30Jetzt neu: Leistungsschutzrecht00:55:56Monotony00:59:21vavideo.de01:08:12Groceries 3.001:10:27Glif01:15:44Kickstarter App01:18:28Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #107 - Jo, jo, jo. - no - fanboys - Jo, jo, jo. - - FAN107 - Thu, 21 Feb 2013 17:51:33 +0100 - 01:23:58 - - - 00:00:00Anfang00:00:33200700:04:42Cyber Attacke!00:09:32iOS 6.1.200:12:11Playstation 401:02:55Super Meatboy und der Mac01:06:58The Art of Braid01:08:18Versu01:12:33Playfic01:13:44Inform 701:16:34Olo01:20:25Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - Episode #106 - Hayday Anonymous - no - fanboys - Hayday Anonymous - - FAN106 - Fri, 15 Feb 2013 01:48:19 +0100 - 00:47:39 - - - 00:00:00Anfang00:00:30200600:04:22iOS 6.1 Exchange Bug00:05:46iOS 6.1 Lockscreen Bug00:08:43AppleTV Rumors00:14:15Opera macht WebKit00:15:38Aus00:16:53MBP/MBA Bump00:20:07Hörertipp: Suchen mit Chrome00:21:16Microsoft SQL und ObjC00:22:49C lernen00:28:49Hay Day00:32:01Tweetnest00:33:35Indie Game The Movie00:39:42The story of Mojang00:43:53Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #105 - Brezeltüte 720 - no - fanboys - Brezeltüte 720 - - FAN105 - Fri, 08 Feb 2013 02:05:13 +0100 - 00:56:31 - - - 00:00:00Anfang00:00:30200500:01:24Aus00:06:15Keine Mac Pros mehr für Europa00:11:17Tipp: Viertellautstärken00:13:11Tipp: Wifi Scanner00:15:49Vine00:18:25Nintendo Probleme00:19:59Steambox00:22:23Ouya News00:24:33J.J. Abrams und Valve00:26:15Mystery Box00:26:31PS4 Termin00:27:12Xbox 720 Rumors00:34:46Proteus00:37:36Dear Esther00:38:19Puzzle Retreat00:40:29The Witness00:41:49Interview: Peter Molyneux00:43:43Doublefine Tumblr00:44:22Mok Mok00:45:34Antichamber00:48:15Little Inferno00:52:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #104 - 0,8 Journey - no - fanboys - 0,8 Journey - - FAN104 - Thu, 31 Jan 2013 15:03:44 +0100 - 01:21:02 - - - 00:00:00Anfang00:00:42200400:05:31iPad wird drei00:13:39iPad mit 128 GB00:19:14iOS 6.100:22:52Grosses Git Special00:38:04Sourcetree00:40:18git-up00:43:59The Cave00:55:29Kairo01:02:24Xscope01:04:28Aus01:06:37Flashout 3D01:07:19kleinerdrei01:07:53Threema01:16:49Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #103 - Nay Nay Nay - no - fanboys - Nay Nay Nay - - FAN103 - Thu, 24 Jan 2013 23:32:53 +0100 - 01:13:15 - - - 00:00:00Anfang00:00:38200300:06:27Apple Quartalszahlen00:18:13WWDC Spekulationen00:24:07Apple Homepage00:26:46Surface Pro00:31:57Cintiq00:38:20Collusion Pen00:40:19Smartpen Sky00:42:43The Cave01:06:08Insert Moin: The Cave01:07:07Temple Run 201:07:48Don't Starve01:12:13Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - Episode #102 - Bitcoinausdrucker - no - fanboys - Bitcoinausdrucker - - FAN102 - Fri, 18 Jan 2013 00:54:41 +0100 - 01:17:20 - - - 00:00:00Anfang00:00:27200200:10:00Apple Aktienfoo00:11:46Safari hat Geburtstag00:26:14Watchever00:32:45Facebook Graph Search00:39:12Instagram Userschwund00:41:55Unity00:47:17Temple Run 200:50:15Mpeg Streamclip00:52:03Super OTR00:54:01Joe Danger00:56:57Don't starve00:59:39At a distance01:04:43Olloclip01:08:04Repulze01:11:24Paper Mario]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #101 - Wiiunachtsfeier - no - fanboys - Wiiunachtsfeier - - FAN101 - Thu, 10 Jan 2013 22:59:11 +0100 - 01:32:25 - - - 00:00:00Anfang00:00:40200100:04:1029c300:11:01Creeper Cards00:32:07Sprache, Ungleichheit und Unfreiheit00:34:27Romantic Hackers00:39:19Sind faire Computer möglich00:41:47CES00:43:05Nvidea Shield00:44:34Pebble00:51:16Learning by Shipping00:53:03iTunes wird 1200:57:01Wii-U-Nachtsfeier01:08:171Password Tipp01:10:33Meistbenutzte Apps01:17:21mp4 Videos verlustfrei schneiden01:20:35Brettspiel AIs und Rechtliches01:25:42Die Verteidigung der Missionarsstellung01:27:40hundreds01:30:34Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #100 - Drei Schokobären tanken Eierlikör - no - fanboys - Drei Schokobären tanken Eierlikör - - FAN100 - Thu, 20 Dec 2012 00:13:16 +0100 - 01:17:12 - - - 00:00:00Anfang00:01:35199900:04:13200000:08:47The Good Wife00:09:31The West Wing00:13:38Instagram TOS DDOS00:17:00Schokobär00:22:25Facebook und die Klarnamen00:23:25Twitter Archiv zum runterladen00:28:44Google Talk: Steven Colbert00:30:08Google Talk: Eckhart Tolle00:33:32Frage zu Risc OS00:42:35The Walking Dead00:46:26Hollywood Monsters00:49:26Penny Arcade: Gamers vs. Evil00:50:25SolForge00:55:01You Don't Know Jack01:01:15Endless Road01:03:47Downton Abbey01:06:37Breaking Abbey01:07:18Incredipede01:13:15Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #99 - IKEA Tellergeräusche - no - fanboys - IKEA Tellergeräusche - - FAN099 - Fri, 14 Dec 2012 00:53:45 +0100 - 02:00:53 - - - 00:00:00Anfang00:00:24199900:02:58Elster Online00:04:49superfav00:09:50Eric Schmidt und der Krieg00:17:53Google Maps für iPhone00:22:56Google einigt sich in Belgien mit den Verlagen00:26:14Twitter, Instagram und Flickr00:32:21Das Jahr auf Twitter00:36:51Peer Papst twittert00:41:57WiiU first impression01:02:17iOS 5 Rant01:08:25Kickstarter01:15:24Audiobus01:18:25Zählapp? Bean!01:20:26The Room01:26:49Ghost Trick01:27:31Tiny Wings HD01:27:52Nihilumbra01:28:10Super Hexagon01:29:23Journey01:32:01Withings01:33:18iCade01:34:48Braven 65001:37:23Philips LivingColors01:40:07Robomob01:42:13Musicbox01:43:52Martin hat den Hobbit gesehen. In HFR.01:52:53Paper Mario: Sticker Star01:58:06Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #98 - Keks des Jahres - no - fanboys - Keks des Jahres - - FAN098 - Thu, 06 Dec 2012 22:15:24 +0100 - 01:04:17 - - - 00:00:00Anfang00:00:20Rückblick 199800:02:37Gut essen in Bochum00:03:53Kindle Paperwhite konfigurieren00:05:08Alle kaufen die selben Apps00:08:18Mooncraft00:11:37Cook Interview00:18:30Amnesia Fortnight00:21:37The Daily ist tot00:29:11Sparrow00:39:58Sparrow Podcast00:40:12Ekelhafte Hitman Werbung00:48:27Insert Moin00:49:49The Room (nicht der)00:50:12The Room00:53:58About Love, Hate and the other ones00:56:53The invisible made visible00:59:37Analoges Digitales01:02:28Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #97 - Böser Hund! - no - fanboys - Böser Hund! - - FAN097 - Fri, 30 Nov 2012 22:54:32 +0100 - 01:17:56 - - - 00:00:00Anfang00:00:18Die Charts von 199700:01:42Was letztes Mal geschah00:09:12Maps Manager gefeuert00:11:32Kindle Paperwhite00:18:59iBooks Regale selber bauen00:22:51iPad Mini LTE unterwegs00:24:02Ach, Nintendo00:32:12iTunes 1100:45:22Tweetbot und die Rechtschreibung00:47:48Penisfilter00:48:32Humble Bundle00:51:11LSR Debatte00:55:25Piraten BPT01:02:15Afirkanische Elefanten01:03:26Mehr verhinderte Zeitreisen01:07:16Spotlight Gerödel01:11:42Dune 2 im Browser01:14:19Guided Access01:16:44Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #96 - Oprahs Marktanteil in Weißrussland - no - fanboys - Oprahs Marktanteil in Weißrussland - - FAN096 - Thu, 22 Nov 2012 21:53:26 +0100 - 01:07:03 - - - 00:00:00Anfang00:02:48Dezember fällt aus00:05:03Microsoft Kin00:07:57Oprah und Surface00:11:07WhatsApp und die böse Überraschung00:16:46Retina Macbook 13 Zoll Erfahrungen00:20:37FusionDrive Experimente00:27:08Mehr zu hotcocoa00:35:19Godus00:40:42Kapitelmarken00:43:31Spielfest Wien00:47:24Desert Bus00:50:15Lost Winds 200:54:54Bastion für iPhone00:56:56Bean00:59:08Auphonic01:01:50MVV Companion01:03:41Fish01:06:06Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #95 - Geforstallt - no - fanboys - Geforstallt - - FAN095 - Fri, 16 Nov 2012 00:12:19 +0100 - 00:55:03 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:13und Martin00:01:07Windows Chef geforstallt00:06:31Apple Blue Sky00:09:43Ein Jahr iTunes Match00:17:47Programmatische Grafikerzeugung00:23:09Hot Cocoa00:27:26NodeBox00:31:31Schoenes aus Code00:33:03Processing.js00:34:11PhantomJS00:37:54NextDraft00:39:44Unfinished Swan00:46:11ZooKeeper DX00:48:22ZooKeeper Battle00:54:11Rausschmeisser - Desert Bus - ab Samstag]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #94 - Lösungswort Backaroma - no - fanboys - Lösungswort Backaroma - - FAN094 - Thu, 08 Nov 2012 21:24:00 +0100 - 01:41:27 - - - 00:00:00Anfang00:00:10Mit dem Dominik00:00:12dem Marcel00:00:19und dem map00:03:24Emoji-Apps fliegen aus dem Store00:09:48iOS 6.0.100:13:29Apple, Samsung und UK00:18:28iPod Nano Eindrücke00:20:27iPad Mini Eindrücke00:45:04iOS Urlaubstipps00:50:29Game Center Spam und Hass00:59:17iPad Mini und Siri01:02:47Podcasts App und Chapters01:10:58iPad Mini Apps vorab kaufen01:14:24Hex Fiend01:17:57The unfinished swan01:21:50Curiosity01:28:57My Little Pony - Freundschaft ist Magie01:31:24The Magazine01:35:45Fog of World01:38:39Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #93 - Wieviel ist das in Milchtüten? - no - fanboys - Wieviel ist das in Milchtüten? - - FAN093 - Thu, 01 Nov 2012 14:56:49 +0100 - 01:19:56 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12und Martin00:02:21Liefertermine00:05:23iPad Mini Tests00:08:25Fire gegen iPad00:10:55MacBook Pro 13 Zoll00:17:51Apple Reorg00:45:52Preisveränderungen im AppStore00:58:05Square Enix und die Preise01:00:55#refugeecamp01:06:34Google Search mit Spracherkennung01:11:18Letterpress01:17:03Lost Cities mit VoiceOver01:19:06Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #92 - Enterprise sold separately - no - fanboys - Enterprise sold separately - - FAN092 - Wed, 24 Oct 2012 19:02:27 +0200 - 01:08:17 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12und Martin00:00:50iTunes Match Bug00:02:47Apple Event00:07:55Zahlengewirr00:12:28iBooks00:15:29MacBook 13 Retina00:19:35Mac Mini00:20:54Fusion Drive00:25:48iMac00:33:01iPad 4th Gen00:38:26iPad mini00:57:46Zynga nutzt den Apple Event01:03:19Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #91 - Enteenteenteente - no - fanboys - Enteenteenteente - - FAN091 - Sat, 20 Oct 2012 11:13:28 +0200 - 00:59:00 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:13und Martin00:01:43FTL00:03:31Tweetbot for Mac00:14:28He have got a little more to show you00:26:55iPods Touchs00:33:49gog.com jetzt auch für OS X00:40:42XCOM: Enemy Unknown00:46:00Don't look back00:56:38Rausschmeisser]]> - - - - - - - - - - - - - - - - - - Episode #90 - Verkrümmungsstabilisierung - no - fanboys - Verkrümmungsstabilisierung - - FAN090 - Thu, 11 Oct 2012 22:02:06 +0200 - 00:50:41 - - - 00:00:00Anfang00:00:09Mit Marcel00:00:12und Dominik00:01:01open mind Videos00:01:46Super Hexagon Challenges00:07:53Adobe Premiere Rant00:11:17App.Net00:14:05Minecraft für iOS00:15:39iPod touches werden ausgeliefert00:16:40iPod Headsets ohne Mikro00:31:19LSR-Petition gescheitert00:35:48FTL - Faster Than Light00:41:02Badland00:42:27Crazy Taxi00:45:05Marcel auf der Buchmesse00:49:11Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - Episode #89 - Dumm und Kindleig - no - fanboys - Dumm und Kindleig - - FAN089 - Sat, 06 Oct 2012 00:49:42 +0200 - 01:10:12 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:13Marcel00:00:16und Martin00:02:21Steve Trirbute Video00:03:08Steve Jobs International Design Conference Video00:04:34TUAW, Apple und der ARM00:06:18Sophie Wilson00:06:26Micromen00:09:45Ada Lovelace Day00:10:30mapgate00:15:31Ortelius00:16:55Zahlen im Apple Store00:19:48who the fuck is snappli00:26:50Trickkiste: Text vorlesen lassen00:31:15SOPA, PIPA, Tralala00:35:27App.Net00:54:11ch.eer.io00:54:58ifttt.com00:55:59Podcast App jetzt besser, ähm, anders00:57:13Retrozirkel00:58:42mobileMacs mit Dom01:00:23Open Mind Talks01:01:19Geschlechterdifferenz und Politik01:03:07Sprache und Platformneutralität01:04:21Widerstand ist zwecklos01:08:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #88 - Sorry! - no - fanboys - Sorry! - - FAN088 - Thu, 27 Sep 2012 23:31:59 +0200 - 01:26:51 - - - 00:00:00Anfang00:00:17Mit Dominik00:00:20Tim00:00:36und Martin00:00:54Logbuch Netzpolitik00:01:53iPhone 500:07:38Earpods00:12:26Siri00:17:165GHz Wifi00:21:12Umlauttastatur in iOS600:26:16LTE00:33:38Kalender00:36:45Maps00:51:42Entwicklerschmerzen01:04:09Opus01:13:24Retrozirkel jetzt mit Podlove01:17:10Mardersuch App01:20:05The Last Express01:22:46Yesterday01:24:19Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #87 - Mit Greuther Fürth hat Apple nicht gerechnet - no - fanboys - Mit Greuther Fürth hat Apple nicht gerechnet - - FAN087 - Tue, 25 Sep 2012 00:20:46 +0200 - 01:36:30 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:14Marcel00:00:18und map00:01:05iOS 6 und iPhone 500:07:45Warum00:10:09Fotos00:11:15und buuuunt00:14:52SBB vs Apple00:18:04mapgate00:28:15Youtube App00:29:37Wideband Audio00:33:22App Store00:39:19Reading List auch offline00:42:28Music.app00:48:22Passbook00:51:35Siri00:53:31Formfaktor00:57:25Camera01:02:48Shared Photostreams01:09:09iPhone Umzugsberatung01:15:09Marcels Trickkiste: Transkridiktieren01:20:18OS X 10.8.201:23:34Superhexagon01:32:59Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #86 - Designed to be played in your ears - no - fanboys - Designed to be played in your ears - - FAN086 - Thu, 13 Sep 2012 22:49:54 +0200 - 01:36:48 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:10Marcel00:00:14und Martin00:02:32iPhone Event00:03:28Zusammenfassung00:06:26Neue Stores00:09:15Apple Weltherrschaft00:14:11iPhone 500:21:29LTE00:28:20A600:30:03Camera00:37:48Mikros und Lautsprecher00:41:28Lightning00:45:51iOS 600:49:28Wrapup00:52:46App Store00:54:14iTunes 1100:58:29iPod Nano01:03:42iPod Touch01:20:56Schluss01:23:58Will man das?01:29:43Smartbook01:33:44Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #85 - Shortpad and Longphone - no - fanboys - Shortpad and Longphone - - FAN085 - Fri, 07 Sep 2012 22:15:53 +0200 - 01:13:24 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:15und Martin00:01:11The Curse Nachtrag00:04:44Longphone00:07:56Kein NFC00:13:22Warum?00:18:18Alt-iPhone Schwemme00:27:27Sie nannten es Kindle00:35:22Nokia Lumia 92000:38:25Fake Video00:42:16Fake Photos00:47:27Fahrinfo00:52:08Braven 65000:59:33Plague Inc.01:05:39Spectromancer01:12:08Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #84 - XXX - no - fanboys - XXX - - FAN084 - Fri, 31 Aug 2012 00:06:31 +0200 - 00:59:12 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:12Marcel00:00:15un Martin00:01:16Neue Facebook App00:08:13Native vs HTML500:10:29Gema vs Musikpiraten00:16:43Leistungsschutzrecht Update00:19:29#bombe00:27:14Apple und Samsung00:33:38Ace Attorney HD00:35:27Nativer Gimp00:39:51Bastion für iPad00:42:05The Curse00:45:36Nihilumbra00:49:08McPixel00:51:55Lost Cities00:56:51Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #83 - Lost Cities - no - fanboys - Lost Cities - - FAN083 - Mon, 20 Aug 2012 20:28:15 +0200 - 01:53:22 - - - 00:00:00Anfang00:01:05Mit Dominik00:01:07Marcel00:01:17Lisa00:01:20Toby00:01:23und Martin00:02:09Lost Cities00:02:51Spielsuche00:11:49Spielmechanik00:18:10Thematik00:21:12Anpassung für das iPhone00:28:06Steampunk00:32:33Reiner Knizia00:36:50Game Center00:39:21Multitouch is hard00:53:27Iconfactory00:57:59Game Center Turn-Based Multiplayer01:03:26Smiley Chat01:08:52Soundtrack01:14:31Computergegner01:24:55Achievements und Skill Level01:30:13Tutorial01:36:29Technisches01:50:33Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #82 - Der pinkelnde Lycos Hund - no - fanboys - Der pinkelnde Lycos Hund - - FAN082 - Fri, 17 Aug 2012 23:15:13 +0200 - 01:25:17 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:14und Martin00:01:46Twitter API Kontroverse00:13:37status.net00:16:43app.net00:23:25heello.com00:25:56iPad Air00:30:54Assange00:38:04Zusammenfassung00:42:13Music.app vs. Spotify.app00:45:52CSR Racing00:50:11Office-Empfehlung00:52:50Suchmaschine in Safari 600:55:18Mountain Lion Update und Filevault00:59:21Helligkeit auf iOS01:02:23Nexus 7 Tagebuch01:08:28Horn01:13:02Camera+01:16:38Flixel01:23:23Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #81 - Giraffen und Adler - no - fanboys - Giraffen und Adler - - FAN081 - Fri, 10 Aug 2012 23:01:41 +0200 - 01:03:30 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:17und Martin00:01:41Reminders Tipp00:05:16TextMate 200:09:34Lost Cities00:13:03Samsung ./. Apple00:17:28Nexus 700:26:08Longphone00:30:40Battle.net hat Emails verloren00:32:47iCloud Hack00:38:42Xbox Schmerzen00:42:29Voice Over Tipps00:47:09Boston Legal00:51:31Deadlight00:59:23Riven01:03:17Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #80 - Conan Drum! - no - fanboys - Conan Drum! - - FAN080 - Fri, 03 Aug 2012 21:26:24 +0200 - 00:53:23 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:13und Martin00:00:32Zugriffszwecke00:04:06Signiert oder nicht signiert00:06:21iPhone Prototypen00:07:55Phony00:11:16Metro00:14:44Neue Mountain Lion Command Line Tools00:19:13Hulu Plus00:20:44Sony Bashing00:24:13Apple Genius Werbung00:31:15Quantum Conundrum00:41:481000000000:48:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - Episode #79 - Funboys - no - fanboys - Funboys - - FAN079 - Fri, 27 Jul 2012 22:38:50 +0200 - 01:31:08 - - - 00:00:00Anfang00:01:19Mit Dominik00:01:22Marcel00:01:25und Martin00:03:05Mountain Lion00:06:05Autosaving00:10:01iCloud Documents00:11:51Gamecenter00:15:59iPad Apps auf dem Desktop?00:19:43Scrollbars00:22:38Dictation00:27:51Calendar und Contacts UI00:29:30Facebook00:30:50Twitter00:33:27Share Button00:40:26Reminders und Notes00:43:49iCloud Syncing00:49:20Messages00:51:29iCloud Tabs00:53:32Gatekeeper00:59:48Scene Kit01:03:05Fullscreen01:04:35Screen Sharing01:06:46ObjC Literals01:10:56Kleinkram01:11:08Siracusa Review01:12:24Screenfonts01:13:15app.net01:17:34Wahlrecht01:23:00Svbtle01:23:06Obtvse01:24:05Rantblog01:25:08Google Earth Flyovers01:27:55Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #78 - Netzhipster - no - fanboys - Netzhipster - - FAN078 - Fri, 20 Jul 2012 23:32:58 +0200 - 01:13:23 - - - 00:00:00Anfang00:00:07Mit Marcel00:00:16und Martin00:00:41Tiny Wings00:03:53Marissa Mayer wir Yahoo CEO00:10:20dearmarissamayer.com00:13:01Firefox 15 mit Opus00:20:45Durch die Nacht mit Jason Rohrer00:29:42Express 0100:34:39Marian Call00:36:13Instacast Kritik00:40:33iPhoto Versionen00:43:05Online Office00:45:23iOS Programmieren ohne Macs?00:46:26Schutzfolien00:48:51Jailbreak00:53:09Netzwerkprobleme00:57:20Mediaserver01:02:08Marcels lustige Tipp-Kiste01:04:24Chirp01:09:27Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #77 - Da…DAMM - no - fanboys - Da…DAMM - - FAN077 - Fri, 13 Jul 2012 23:05:58 +0200 - 01:00:39 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:13Marcel00:00:38und Martin00:01:03Apple und EPEAT00:06:01Indesign Schmerzen00:10:02Retina DisplayMenu00:14:16Ouya00:20:22Unglue00:27:42Amazon Same-Day Delievery00:33:53Passwortschwund00:37:12Steam Summer Sale00:38:09Diablo 300:43:31The Big Big Castle!00:45:09Tales of Monkey Island iPad00:49:37Tweetbot for Mac00:50:29Twitter for iPhone00:51:54Tiny Wings 200:54:40Tiny Wings HD00:59:10Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #76 - Brommberry - no - fanboys - Brommberry - - FAN076 - Fri, 06 Jul 2012 09:48:29 +0200 - 01:38:31 - - - 00:00:00Anfang00:00:17Mit Tim00:00:20Marcel00:00:30und Martin00:01:17Google Now00:02:48RIM geht es super00:06:12iPhone Sucht00:08:33Superfav00:23:11Marcels Tipp der Woche00:26:15Netzteilkabelabknickdiskussion00:28:53Twitter Suche filtert00:32:56Zurker00:36:21Podcast App00:56:33Bitlove01:03:11Podlove01:07:55iPad Mini01:18:52Die Zukunft™01:33:16Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #75 - Runde Kugel - no - fanboys - Runde Kugel - - FAN075 - Sat, 30 Jun 2012 00:30:41 +0200 - 01:22:50 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:14und Martin00:03:15Santa Cruz00:05:11Bob Mansfield00:08:29Google IO00:09:42Project Butter00:13:17Search Result Cards00:14:34Offline Maps und Voice00:15:41Android vs. iOS00:19:24Google Now00:22:02Nexus 700:26:52Nexus Q00:30:52Chrome iOS00:33:27Google+ News00:39:12Google Glass00:41:38Hornbrillen mit Klebestreifen00:42:46Was ist eigentlich mit … passiert?00:46:46MacBook Pro01:00:07Podcast.app01:17:30CSS Hat01:19:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #74 - Zune-ig - no - fanboys - Zune-ig - - FAN074 - Sat, 23 Jun 2012 00:51:38 +0200 - 01:19:15 - - - 00:00:00Anfang00:00:09Mit Marcel00:00:12und Martin00:01:02Marcel und das Longphone00:02:51MacBook Pro Retina00:16:57WWDC Aussensicht00:21:17Microsoft Surface00:34:18Nintendo 3DS XL00:37:17Gmail darf wieder Gmail heissen00:38:54Leistungsschutzrecht00:51:44Recoilwinders00:54:46Limbo00:56:45Where the Hell is Matt? 201200:58:30Tabula Tabs01:01:55Magic 201301:05:57superfav - yay or nay?01:16:24Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #73 - Mr Goatsye - no - fanboys - Mr Goatsye - - FAN073 - Tue, 12 Jun 2012 22:43:48 +0200 - 01:21:01 - - - 00:00:00Anfang00:01:18Anstehen00:05:28Siri spricht zu den Entwicklern00:07:14Imagefilm00:12:31Inhaltsangabe00:13:53Neue MacBooks Air00:17:32Neue MacBooks Pro00:19:43Next-Gen MacBook Pro00:20:53Kurze Gotye Pause00:22:13Retinadisplay00:34:36Lion00:38:23Powernap00:42:17Safari00:43:59iOS600:45:00Siri00:49:133D Maps00:52:25Google Rivalität00:54:25Phone Features01:00:38Passbook01:12:12Apple Design Awards]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #72 - Longphone - no - fanboys - Longphone - - FAN072 - Fri, 01 Jun 2012 00:17:57 +0200 - 01:03:40 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:11Marcel00:00:15und Martin00:01:22rundshow00:10:14Julian Assange und Schweden00:16:41WWDC Vorschau00:23:11Oh Long John00:43:48Tim Cook bei D1000:48:43Apple vs. Flattr00:51:18Reprisal00:54:34Logitech Ultrathin Keyboard Cover00:59:58Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - Episode #71 - Towelday - no - fanboys - Towelday - - FAN071 - Fri, 25 May 2012 20:31:02 +0200 - 01:19:29 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12Martin00:00:14und Marcel00:01:36republica Talks00:07:30Sigint00:12:38WWDC00:17:20Towelday00:20:48Dirk Gently00:26:15The deeper meaning of liff00:29:21Journey Prototyp00:32:23Airfoil Speakers vs. AppStore00:36:48Instacast vs. AppStore00:43:40Leermedienabgabe00:50:25MacRuby00:56:16Rundshow01:00:52Podcasts streamen01:03:57AppleTV Sounds01:08:54Coda01:10:40Diet Coda01:12:29Xtrail01:14:20Tron: Uprising01:19:20Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #70 - Sirisly uncool - no - fanboys - Sirisly uncool - - FAN070 - Thu, 17 May 2012 00:50:29 +0200 - 01:25:06 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:10Marcel00:00:13und Martin00:03:47Rundshow00:07:18Google+ App00:12:32re:publica Videos auf Youtube, irgendwann00:14:01Kaspersky und Apple00:18:21Folge 7000:20:06Perian ist tot00:24:34Früher…00:26:37iOS 6 Gerüchte00:29:56Google Plus und Picasa00:31:20iOS 600:34:38iPhone 3G Probleme00:36:17Messages Beta Rant00:39:33Podlove00:44:11Schnitzelpress00:53:02Seehofer und Röttgen01:01:38Diablo 301:10:56Razer Naga01:14:44MagicSleep01:17:48Boblbee Megalopolis Aero01:21:56Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #69 - Instacats 2.0 - no - fanboys - Instacats 2.0 - - FAN069 - Fri, 11 May 2012 19:10:30 +0200 - 01:18:27 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:16und Martin00:05:28Mac OS 10.7.400:08:38iOS 5.1.100:14:15Instacast 2.000:17:26Ludum Dare00:19:15Millinaut00:21:22Exposed00:23:30Ludum Dare Video00:28:03Twitter App kann jetzt wieder suchen00:30:51Piratenbundesparteitag00:40:42Twitter iOS Probleme00:43:00Profilbild auf OS X00:46:02Photos verschicken00:49:00Line-In per Netzwerk verteilen00:51:35Joghurtbecher01:01:41Warp01:07:54ELSTER Formular Warndurchsage01:09:23Jetpack Joyride01:14:14Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #68 - Fanpersons - no - fanboys - Fanpersons - - FAN068 - Sun, 06 May 2012 16:11:10 +0200 - 01:23:46 - - - 00:00:00Anfang00:00:29Mit Tim00:00:41Jella00:00:44Yetzt00:00:47und Martin00:02:50AW: publica00:03:31Die re:publica im Wandel der Zeiten00:05:53Die neue Location00:08:26Sponsorenvorträge00:11:59Openspace00:14:10Wir müssen reden #4100:15:02Wikigeeks00:17:03Hackerbrause: Schlaflos durchs Weltall00:17:32CRE 17500:21:24Rick Falkvinge00:26:23Die Wiederentdeckung der Langsamkeit00:39:03Dark Side of Action00:42:46Florian Hufsky00:44:39Über Depressionen reden, auch online00:49:49taz über "Dark Side of Action"00:50:07WLAN Gejammer00:53:49Bicyclemark über Occupy00:58:21The internet ist people00:59:52mspro über Plattformneutralität01:03:03Mächtiger als Merkel01:07:09Panels01:10:43Die ultimative Talkshow01:12:53Lobo Vortrag01:15:53Party01:19:03Flausch am Morgen01:21:20Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #67 - Nintendo muss sterben, damit Mario leben kann - no - fanboys - Nintendo muss sterben, damit Mario leben kann - - FAN067 - Thu, 26 Apr 2012 23:41:55 +0200 - 01:18:32 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:11Marcel00:00:14und Martin00:00:26Draw Something00:02:11Urheberrecht00:06:48WWDC News00:11:49Steam und L4D2 für Linux00:13:35Die Gamescom und die Blogger00:15:37Breakfast @manuspielt zur Gamescom00:15:55Rote Zahlen bei Nintendo00:21:09Apple Quartalszahlen, gähn00:21:51Google Drive00:28:04Send to Kindle00:29:35AirPrint00:33:12Adobe CS600:38:34Phonegap00:42:15Backup oder nicht Backup?00:47:03AppleTV Lautstärke00:51:19Reminders App00:53:39iPhone Sync Probleme00:58:05Trials Evolution01:04:31Comics selber basteln01:06:25FoxTrot Pad Packs01:07:34Cargobot01:10:16Diablo 3 Open Beta01:17:38Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #66 - Lampenfieber - no - fanboys - Lampenfieber - - FAN066 - Sat, 21 Apr 2012 00:45:19 +0200 - 01:27:00 - - - 00:00:00Anfang00:00:14Mit Dominik00:00:18Marcel00:00:21und Martin00:01:11Steam war down00:04:53Apple und Samsung streiten, Teil Zwölftausend00:07:45Greenpeace - How Clean is your Cloud00:12:03Facebook und die Börse00:15:37TippEx Kampagne00:18:43ZDF Mediathek auf der Xbox00:26:29Martin hatte Xbox Schmerzen00:29:18Gema und Youtube streiten00:34:36Zoe Keatings Spotify Zahlen00:37:41HBO und das HDCP00:39:55Google Drive00:43:20VDS Hektik00:48:30EuGH zu VDS und Filesharing00:50:40Fluggastdatenübermittlung00:52:39Screenfeeder00:57:03Journey Soundtrack00:57:35Grisly Manor und Lost City00:59:15Pebble E-Paper Uhr01:02:19A Show with Ze Frank01:03:32Fez]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #65 - Traumacenter Flower-Edition - no - fanboys - Traumacenter Flower-Edition - - FAN065 - Thu, 12 Apr 2012 22:22:27 +0200 - 01:18:44 - - - 00:00:00Anfang00:00:12Mit Dominik00:00:15Marcel00:00:21und Martin00:01:18Errata00:04:25Google+ jetzt anders00:10:15Orkut News!00:11:40Project Glass00:18:43Instragram <3 Facebook00:22:20Sony geht es schlecht00:26:04Nokia geht es auch schlecht00:28:23Neue iTunes Store AGBs00:32:10Tim Cook auf der AllThingsD00:34:21WWDC Gejammer00:35:50eBook Kartellklage00:44:51Quarks und Co - Logisitk00:46:27Project Glass DIY00:47:31iTunes Syncing00:57:17Instacast und Musikwiedergabe01:02:37Fez01:04:53Flower01:09:42Figure01:15:48Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #64 - Retinisiert - no - fanboys - Retinisiert - - FAN064 - Wed, 04 Apr 2012 20:06:04 +0200 - 01:27:18 - - - 00:00:00Anfang00:00:24Mit Dominik00:00:32Marcel00:01:56und Martin00:02:18PSN Rant00:05:26Galaxy on Fire 2 HD00:09:43Nokia Lumia 80000:15:34Carcassonne retinisiert00:27:25Prepaid Internet fürs iPad00:36:54cnetz00:45:56Macbook Air Gejammer00:50:31Macbook Pro Gejammer00:52:21Radiolab - Guts00:55:40Iterate Podcast00:56:47Videos hören auf iOS00:58:36Paper01:03:52Fish: a tap essay01:07:25Animation Creator HD01:11:35BlockArt HD01:13:42Wimmbelburg HD01:16:37Epic Tales01:18:01Air Display01:23:43Move the Box01:26:01Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #63 - Flauschen und Lesen - no - fanboys - Flauschen und Lesen - - FAN063 - Fri, 30 Mar 2012 18:41:32 +0200 - 01:11:39 - - - 00:00:00Anfang00:00:08Mit Marcel00:00:22und Martin00:01:08Marcels iPad00:05:20Twitter kommt nach Deutschland00:09:41Hannelore Kraft00:11:40Offener Brief der Tatort Autoren00:19:48Daniel Mack und ACTA00:24:57Playstation Orbis00:28:19Foxconn Update00:32:07VBR Schmerzen00:34:34Downcast00:39:54Badesalz00:43:10Draw Something, Charadium00:45:47Linkinus00:48:09Saarland, Schlecker, Medien01:07:20Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #62 - Hachen bis der Arzt kommt - no - fanboys - Hachen bis der Arzt kommt - - FAN062 - Thu, 22 Mar 2012 21:44:08 +0100 - 01:31:13 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:15und Martin00:00:42Opacity kann auch Code ausgeben00:02:10This American Life - Redaction00:11:51iPad Eindrücke00:25:57Apple macht was mit dem ganzen Geld (nix spannendes)00:29:56Tipps für Metadaten für Video Home Sharing auf dem iPad00:39:18Die Nachbarn00:39:58Marcel auf der re-publica00:45:18Spotify und Facebook00:50:14Podcastclient Wünsche00:52:29Daten syncen00:58:55Leere Alben in der MobileMe Gallery01:01:21Mari001:03:57Journey01:17:28Passage01:18:25Mehr Journey01:19:27Raumzeit iPhone Audio-Adventure01:21:30Russian Dancing Men01:25:09DrawSomething01:29:29Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #61 - Aufbrowsen - no - fanboys - Aufbrowsen - - FAN061 - Thu, 15 Mar 2012 20:51:50 +0100 - 01:29:58 - - - 00:00:00Anfang00:00:13Mit Dominik00:00:15Marcel00:00:21und Martin00:00:55Ponytime Podcast00:02:11iPad Lieferschmerzen00:08:31Kapitel 600:10:18Lange Musiktitel anzeigen00:14:32Twitter kauft posterous00:18:17delicious.com00:21:37Spotify00:34:12Yahoo hat Facebook erfunden00:39:17Firefox und h26400:46:46FDP für und gegen Leistungsschutzrecht00:53:48Spieleautorentagung00:56:39knife city00:57:56Favs01:03:21Incoboto01:10:10PaintCode01:13:39Journey01:26:20iWork Beta schliesst die Pforten01:28:28Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #60 - The new fanboys - no - fanboys - The new fanboys - - FAN060 - Fri, 09 Mar 2012 21:53:57 +0100 - 01:40:25 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:12Marcel00:00:16und Martin00:04:49Bismark Wachswalze00:05:00Katzenboxen00:05:33Apple TV00:14:28iPad00:23:39Kernthemen00:26:50LTE-Gate00:36:58Siri00:38:37Name00:42:56Bestellschmerzen00:47:05iOS 5.100:51:22iPhoto00:59:36Garageband01:03:31Leistungsschutzrecht01:17:10Apps auf alten iOSen benutzen01:19:34Windows 801:23:08Flattr versteuern01:26:36Explizite Podcasts01:32:17wir. müssen reden #3701:33:38Music Box01:39:22Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #59 - Wabernde Smartie Bubbles - no - fanboys - Wabernde Smartie Bubbles - - FAN059 - Fri, 02 Mar 2012 21:36:58 +0100 - 01:24:18 - - - 00:00:00Sorry für die schlechte Audioqualität00:00:02die SD Karte starb, und wir mussten den Streamrip verwenden00:00:08Mit Dominik00:00:10Marcel00:00:14und Martin00:01:20Exkurs: DNS-Tunneln00:04:09Sony Vita Rant00:24:08Circle Pad Pro00:29:53iPad 3 Event am Mittwoch00:42:02Ze Frank kickstartet00:50:17Auditorium 200:53:55Pogo Video00:54:33Wir schweifen ab00:55:38Garageband-Schmerzen00:58:20Zertifiziertes Mac-RAM01:02:32Qwiki01:05:12Brettspielvideotutorials01:09:25WWDC - Warum?01:13:31Safari 5.2 unter Lion01:15:34Waking Mars01:21:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #58 - Anfang - no - fanboys - Anfang - - FAN058 - Fri, 24 Feb 2012 19:42:45 +0100 - 01:00:54 - - - 00:00:00Anfang00:00:09Mit Marcel00:00:13und Dominik00:00:16und nicht Martin00:00:37und ohne Stream00:01:01Piratiger Aschermittwoch00:02:08Marcels Rede00:03:13Fast alle Piratenredner auf YouTube00:03:48Der Edmund00:04:27Die UDE00:04:44Der Gysi00:04:56Die Bayernpartei00:06:22Der Seehofer00:06:42Kommissarischer Bundespräsident00:10:36BPräsWahlG00:14:13Selbstfindung der Netz-Generation00:16:32ACTA Demo00:17:21Fantastischer Politikteil00:17:38Weisband bei Stuckrad00:18:26Altmaier bei Stuckrad00:19:38Öder Apple Kram00:20:08Dom und der Berglöwe00:24:11Brent Simmons on Sandboxing00:24:52Messages und der Dom00:30:31NoPush4U.de00:31:43Chomp Nom Nom00:34:05iPad 3 am 7. März00:36:06Apple TV00:38:55Google HUD00:43:06Ghost Trick again00:44:21PSVita00:46:15Specks (2 analog Sticks!)00:50:38Hector HD00:53:21Nicht so Euflorisch00:56:24Constanze Kurz nicht Datenschützerin00:57:11Nächste Woche00:57:50Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #57 - Oh, Internet - no - fanboys - Oh, Internet - - FAN057 - Fri, 17 Feb 2012 19:59:11 +0100 - 01:01:34 - - - 00:00:00Anfang00:00:07Mit Marcel00:00:12und Martin00:00:22Ghost Trick00:01:08Ron Gilbert bei Retronauts00:03:22Tim Schafer kickstartet00:09:28ACTA Demo00:13:32EU Parlament00:14:21Deutsche Content Allianz00:17:33Marcel beim piratigen Aschermittwoch00:20:13Adressbuchgate00:28:30Mountain Lion00:31:04Messages00:33:25iCloud00:35:37Reminders00:37:12Notes00:37:37Notification Center00:39:04Software Update00:40:06Share Sheets00:42:36Game Center00:43:21Airplay Mirroring00:44:54GateKeeper00:51:46Schöne Ecken00:53:25Applied Cryptography00:54:57Code Book00:55:34Indie Fresse00:57:04Nächste Woche00:58:26Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #56 - Doktorspiele - no - fanboys - Doktorspiele - - FAN056 - Fri, 10 Feb 2012 20:59:07 +0100 - 01:10:29 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:14und Martin00:00:48Motorola Mobility und Google00:01:58iBook Author Schmerzen00:05:25Selbstgemachte iBooks00:09:20Spielwarenmesse00:11:27iPad 3 Gerüchte00:17:58Raider heisst jetzt SEN00:20:37Path und das Adressbuch00:32:07ACTA00:37:24Demo Grundregeln für Nerds00:39:06Tweetbot für iPad00:42:51Neues aus der Patentarena00:46:23Mac OS X Internals00:50:44Scorekeeper XL00:53:43Space Quest 200:57:06Ghost Trick01:06:21Frederic Resurrection of Music01:09:09Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #55 - Den Tiger streicheln - no - fanboys - Den Tiger streicheln - - FAN055 - Fri, 03 Feb 2012 23:41:24 +0100 - 01:08:50 - - - 00:00:00Anfang00:00:06Dominik Wagner00:00:10ohne Zeitweise00:00:15aber mit Martin00:01:36Erratum00:02:34Jon Rubinstein verlässt HP00:04:33ACTA00:09:08ACTA Demos00:09:55Keine alten iPhones und UMTS iPads mehr zu kaufen00:13:44FCPX mit Multicam und co00:16:13Avid Studio iPad00:17:46Mac OS X 10.7.300:26:35Drucker über Samba sharen?00:28:52Half-Life Protest00:32:27Kinectimals iOS00:33:28Keine MS Punkte mehr in Zukunft00:35:59WiFi Repeater00:38:50AppleScript lernen00:43:24Release-spezifische Bugs00:47:06Thumb-Code ausschalten00:47:37elgato mobile00:52:56New Orbit00:56:02Tiny Tower00:59:42trakt.tv01:03:16Homeland01:07:48Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #54 - Bödefeld ist abgebrannt - no - fanboys - Bödefeld ist abgebrannt - - FAN054 - Fri, 27 Jan 2012 21:12:25 +0100 - 01:15:54 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:10Marcel00:00:13und Martin00:00:34Neues aus Bödefeld00:05:44WR037 Ortsgespräch: Christopher Lauer00:07:47Apple hat zuviel Geld00:11:11thingsappleisworthmorethan.tumblr.com00:11:23ACTA00:20:07Facebook Timeline00:26:08iBooks Author Nachlese00:30:00Dieselsweeties iBook00:34:23Macworld00:36:43Wunderkit00:43:18Google+ jetzt ab 1300:45:29Festplatten unmounten00:47:26Fanfic Podcast und die Rechte00:52:48Katawa Shoujo00:55:58Army of Darkness00:57:56iCade Nachtrag00:59:28WiFi erweitern01:02:25Level Up01:04:24Temple Run auf der iCade01:08:43Source Tree01:13:44Big Clock01:15:17Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #53 - Beihilfe zu Copyright™ - no - fanboys - Beihilfe zu Copyright™ - - FAN053 - Fri, 20 Jan 2012 19:54:45 +0100 - 01:00:37 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:13Und Martin00:00:57Asus Padfone00:02:50Apple wird FLA Mitglied00:06:13Apple Education Event00:07:13E. O. Wilson00:08:51Touchbooks00:15:37The Final Hour of Portal 200:16:37iBooks Author00:20:27Evil EULA00:24:29Self-Publishing00:26:10E-Zines00:28:54iTunes U App00:36:35Megaupload00:41:16iBooks Author Reprise00:42:15Safari.app: Geschlosse Tabs wieder öffnen00:43:15Klabautercast00:45:24iCade00:52:51Newz of the World00:56:29Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #52 - Intelligente Kühlschränke - no - fanboys - Intelligente Kühlschränke - - FAN052 - Fri, 13 Jan 2012 21:27:32 +0100 - 01:17:37 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:13Marcel00:00:16und Martin00:02:46Wacom Inkling00:17:51Best App Ever Awards00:18:46Brettspielkategorie00:20:12AcerCloud00:22:20Gamestore App00:25:40sketchpad00:29:32CES Keynote00:35:27VLC powered by Ivy Bridge00:37:35Audi mit HTML 5 UI00:38:45ObjC ist Mainstream00:40:53Java & ObjC00:43:19iTunes-Ruckel Abhilfe00:44:21Automatische Termin-Absagen in iCal00:46:37iPhone Standard-Termin-Erinnerung00:48:05Marcel bei breakfast@manuspielt00:49:39Dance Dance Revolution - Hottest Party00:54:46Meist verkaufte Personenwaage00:55:24Black Mirror00:59:36Pull Bloxx / Pushmo01:04:20Kingdom Rush01:09:53Mr. Daisey and the Apple Factory01:14:54This American Life App01:15:06Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #51 - Zwei Hustinettenbären tanken Super - no - fanboys - Zwei Hustinettenbären tanken Super - - FAN051 - Fri, 06 Jan 2012 18:48:26 +0100 - 01:10:00 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:11Und Martin00:01:39Apple Event im Januar?00:03:25Khan Academy00:04:0528c300:06:507 years, 400+ podcasts, and a whole lot of Frequent Flyer Miles00:08:13Datamining for Hackers00:09:39802.11 Packets in Packets00:12:46The coming war on general computation00:14:10„Die Koalition setzt sich aber aktiv und ernsthaft dafür ein“00:15:06Print Me If You Dare00:16:35Your Disaster/Crisis/Revolution just got Pwned00:18:07Geeks and depression panel00:19:55Etherpad Lite00:22:29XBL verbietet “Gun-like objects” für Avatare00:23:59Sony Vita hat schlechte Weihnachtszahlen00:25:15Brauchen wir wütende Nerds?00:31:27Das Wulff Interview00:35:04Google schießt sich selbst ins Knie00:36:54Wifi vs. Bluetooth00:38:55Appdates00:43:03TuneSpan00:47:02Roomba00:49:01Time Capsule Autodowngrade00:52:29iPod Nano Austauschprogramm00:55:12Elements00:57:36iTunes Match ruckelt01:00:35Flash Ersatztools01:03:19Delibar01:08:05Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #50 - Sport, Fußball und Fußball - no - fanboys - Sport, Fußball und Fußball - - FAN050 - Fri, 23 Dec 2011 20:24:20 +0100 - 01:24:36 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:14und Martin00:00:24und ein wenig Rauschen00:00:39Fünfzig00:03:14Carcassonne - "Behind the Scenes"00:20:56iTunes Match00:28:49SOPA00:33:13CES ohne MS00:37:04Neues aus der Nintendo Botschaft00:44:25Evil Quiz00:48:5615 Jahre AppleNext00:51:23Limbo im Mac AppStore00:54:10Lost Winds für iOS00:57:31Sky stinkt01:11:36Gamecenter CX01:17:04Parabelflug01:17:37Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #49 - Moddorola - no - fanboys - Moddorola - - FAN049 - Fri, 09 Dec 2011 21:19:34 +0100 - 01:08:17 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:10Marcel00:00:13und Martin00:01:21Motorola ./. Apple00:03:18Neues Twitter ist neu00:13:52Google Currents00:16:25Miyamoto will leiser treten00:18:45SPD Parteitag00:23:04Solarladegerät gesucht00:25:16Gastkonto des Grauens II00:26:17Abkürzungen und Grossschreibung00:29:10Spotlight Kürzel00:31:02Netzwerklocations00:35:12ControlPlane00:38:26Piratenparteitag00:41:43BBC iPlayer Global für iPhone00:44:57Magic: The Gathering - Duel of the Planeswalkers 201000:50:05Xbox Dashboard Update00:54:47XBL iPhone App00:57:16Bastion für Chrome00:59:23ChronoTrigger iOS01:01:22Zelda Rants01:04:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #48 - Metaverdatung - no - fanboys - Metaverdatung - - FAN048 - Fri, 02 Dec 2011 20:14:06 +0100 - 00:52:02 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:13und Martin00:00:39Links giibt's doch noch00:01:57Siri ist "Pro-Life"?00:05:17Lion-Tipp: Besitzeranzeige00:06:28iTether00:10:30Carrier IQ00:18:27Carrier IQ auf iOS00:21:56Nicht nicht grüne Politik00:29:20Gastkonto des Grauens00:32:19Matschzoom00:36:08Google Nervfaktor und Fix00:36:58Samba und die Rechte00:40:16Marathon in Opensource und 1.000:42:52Doom 3 auf dem Mac bauen00:43:49TCMXMLWriter00:46:20Tap the Frog00:48:25Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #47 - Winter is coming - no - fanboys - Winter is coming - - FAN047 - Fri, 25 Nov 2011 19:50:00 +0100 - 01:13:37 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:15und Martin00:00:40Mitt Romney00:01:26Das Labyrinth der Träumenden Bücher00:02:28Google TV00:06:03Wetten, dass..?00:07:50Big Fish Games00:13:22Hörsuppe00:16:18Chaosradio zum Podcasten00:17:57Wie man Politiker zum Twittern bringt00:25:21Grüne Bundesdelgiertenkonferenz00:28:15iCloud00:32:46SSD Aufrüsten00:37:45Garageband und Chaptermarks00:44:20Pony Sounds00:45:34Desert Bus00:49:09Desert Bus for Hope00:50:14Loading Ready Run00:52:20@desertbus00:52:57Lendromat00:56:29Zelda Skyward Sword01:02:59Super Mario 3D Land01:08:50Jaksta01:11:15Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #46 - Zusammengefroren - no - fanboys - Zusammengefroren - - FAN046 - Fri, 18 Nov 2011 21:21:11 +0100 - 01:14:26 - - - 00:00:00Anfang00:00:11Mit Dominik00:00:15Marcel00:00:19und Martin00:00:43Google TV ist tot00:02:19Google Checkout auch00:03:56Backtype00:04:22Kindle Fire ist draussen00:14:17Texas Hold'em und APIs00:19:47iTunes 10.5.1 und Match00:21:52Tabs per Undo wiederaufmachen00:23:52Vorratsdatenspeicherung bei Uhl und SPD00:27:10openmind'11 Videos00:28:31Marcels Keynote00:28:40Equalismus Workshop00:30:28electoral-vote.com00:36:57Coding und Style00:41:04To sync or not to sync00:45:32AppleTV Bildschirmschoner-Bilder00:47:05Langsame SSD00:49:16Audio Hijack und Skype00:54:57ThinkUp00:57:04Super Mario 3D Land01:05:23Skyrim01:09:51Awkward Sword01:11:53Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #45 - Innenpolitik - no - fanboys - Innenpolitik - - FAN045 - Fri, 11 Nov 2011 20:31:12 +0100 - 01:00:17 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:15Marcel00:00:20und Martin00:01:17Flash ist tot00:08:56iCloud Schmerzen00:09:22Playlisten Verlust00:10:45Photos kaputt00:14:15iTunes Sync Hänger00:17:53iOS 5.0.100:23:1610.7.2 hat Grafikkartenbug behoben00:24:19For Amusement Only00:26:13Mach ma die Musik lauter!00:30:35i5 oder i7?00:34:16Droplist00:35:11Dat Ding mit dem dat00:36:58Europa und die 5% Hürde00:42:05Martin ragiert00:45:19Nicht Lustig App00:46:38putpat.tv00:49:56Yes Minister!00:51:40Kogeto Dot00:57:50Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #44 - Regenscheck - no - fanboys - Regenscheck - - FAN044 - Fri, 04 Nov 2011 18:14:37 +0100 - 01:00:31 - - - 00:00:00Anfang00:00:08Mit Marcel00:00:11und Martin00:00:52Moers Warnhinweis00:02:44iWorkAround00:05:05iOS 5.0.1 und der Akku00:06:45Google Reader00:08:51Der Plus-Operator00:11:09Google Code Search00:12:13Google Sidewiki00:13:17Gmail App00:14:42Google Plus00:16:01Trojanerinflation00:16:55Schultrojaner00:22:54Battlefield 3 Trojaner00:31:32Staatstrojaner00:33:08Logbuch Netzpolitik00:40:40Mac Mini als Heimserver00:43:42Safari Bookmarkleisten-Shortcuts00:46:22Macbook Early 2008 SSD Update00:49:53Impressum in Apps?00:52:59Telekom <300:55:00Der alte Batman jetzt im Mac App Store00:56:35Mails suchen auf iOS00:59:21Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #43 - Rumhühnern - no - fanboys - Rumhühnern - - FAN043 - Fri, 28 Oct 2011 22:12:17 +0200 - 01:38:54 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:12Marcel00:00:15und Martin00:00:58Google Plus00:03:16"Celebrating Steve"00:07:37Biografie00:11:17Das Labyrinth der träumenden Bücher00:12:09iTV00:13:1330 Rock00:16:58Terminal Tipp00:18:30iDoesNotWork with iCloud00:20:18ALAC is open source00:22:32Benutzt ihr Siri noch?00:24:05Post Privacy Buchvorstellung00:36:12Staatstrojaner00:42:58Selbstversuch Instacast00:48:14Spielemesse Essen00:51:44Marcel bei Kwobb00:52:59Mogelmotte00:53:55Mackauf Beratung00:57:08Reminder iCloud Sync Sharing01:01:46Programmieren lernen01:08:069V Akkus und warum man sie nicht will01:11:34Message.app und Emailadressen01:14:42Podcast/Buch Empfehlung01:15:47Wiederholungstäter01:16:33Dat Problem mit dem dat01:21:33Assistive Touch01:24:00Gesten01:25:36Custom Vibrations01:28:04Batman: Arkham City01:30:42Pixelmator 201:32:52Metakram01:35:17Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #42 - Zeitweise ohne Zeitweise - no - fanboys - Zeitweise ohne Zeitweise - - FAN042 - Fri, 21 Oct 2011 22:06:44 +0200 - 01:29:54 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12und Martin00:00:51Errata00:03:19iPhone 4S00:06:31Kamera00:08:52Siri00:19:59Airplay und AppleTV00:25:39AkkuGate00:36:06Videoqualität00:36:560zapftis Teil 200:42:27Nintendo 3DS/Wii Software News00:53:09Lytro00:58:52Live von der Spiel 201101:01:33Shortcut Tipps01:03:18Panoramafreiheit für Ton?01:06:30Wifi Sync mit 10.6 und G4?01:08:56Mehr Airplay!01:10:44Headsetgeräusche01:12:269V Akkus01:16:12Mophie Juice Pack Plus01:17:50decoded conference01:21:43Kogeto Dot01:24:06Deutschland sucht den Nachwuchspodcast01:27:20Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #41 - Blender und Leuchten - no - fanboys - Blender und Leuchten - - FAN041 - Thu, 13 Oct 2011 21:41:34 +0200 - 01:41:31 - - - 00:00:00Anfang00:00:10Mit Dominik00:00:13Marcel00:00:15und Martin00:01:07Errata00:01:47Bundestrojaner00:02:48Previously…00:05:59CCC Analyse00:31:19iOS 500:33:30Account-Wirren00:45:12Notifications00:48:38Newsstand00:50:37Reminders00:53:33Text Shortcuts00:55:19iMessage01:01:15Find my Friends01:13:01iPad Music App01:15:12Camera01:16:55Safari Reader01:18:01Twitter Integration01:19:5310.7.201:20:44Game Center01:24:08Open Mind01:25:28Spiel in Essen01:26:30decoded'1101:28:33f Stops und Co01:31:32Applecare01:33:53Applescript und Keychain01:37:11Gelesene Mails01:40:01Rauschschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #40 - Right back at ya - no - fanboys - Right back at ya - - FAN040 - Fri, 07 Oct 2011 23:14:01 +0200 - 02:01:00 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:10Marcel00:00:14Tim00:00:33und Martin00:02:33Steve Jobs00:18:55Tim bei N2400:28:09Steve und Photobooth00:35:03Wau Holland00:40:04The Colbert Report00:41:35iPhone 4S Keynote00:54:10Keynote Recap00:59:06Cards.app01:01:33Find my Friends01:04:11iTunes Match01:06:38iPod Nano01:09:21iPod Touch01:10:05iPhone 4S01:25:40Siri01:43:53Glif und iclyp01:47:39ZKM01:49:30Retrogames e.V.01:50:47CRE 170: Arcade Games01:51:25Wahlrecht und Jimmy Schulz01:55:59Thanks Steve.]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #39 - Das gebrannte Kindle - no - fanboys - Das gebrannte Kindle - - FAN039 - Fri, 30 Sep 2011 20:00:26 +0200 - 01:41:09 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:11Marcel00:00:14Und Martin00:00:24Das war Dominikanisch00:00:42Transparenz00:07:48Die Facebook Ministerin ist traurig00:13:44"Europe vs. Facebook"00:17:37Let's talk iPhone00:25:27Kauderstrike00:29:47Kaudergate00:42:47ACTA Unterzeichnung00:45:35Europäische Finanz-Stabilisierungs-Fazilität00:47:10Geschmacksmuster Ausflug00:48:19Wahlrecht00:57:10Neue Kindles01:01:50Kindle Fire01:06:51Amazon Silk01:12:29Piratenfeedback01:14:16Filevault Feedback01:19:45JuLi Feedback01:24:43Latitude Feedback01:28:35Preview Bookmarks Feedback01:30:42Pinball Dreams HD01:33:12Stacking01:33:34Psychonauts01:34:54Ico / Shadow of the Colossus HD01:39:04Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #38 - Hach komma Nyan - no - fanboys - Hach komma Nyan - - FAN038 - Thu, 22 Sep 2011 20:29:30 +0200 - 01:25:02 - - - 00:00:00Anfang00:00:08Mit Marcel00:00:12und Martin00:00:24Esperanto00:01:548 komma 900:08:10Anne Will00:25:53Lanz00:28:01Wahlpartyberichterstattung00:37:07Internetkulturtechniken00:47:46Debattierclub00:49:07iPhone 500:51:50Netflix und Qwikster00:53:03Ilse Aigner auf Twitter00:55:48Daniel Mack00:59:59Schnell, schnell, Wahlrecht01:07:34iTunes Purchase Listen01:09:34iPhoto konsolidieren01:13:04App Store only?01:15:28Drobo und Airport01:17:16VDSL Modems01:19:52Pitfall Classic Postmortem With David Crane01:22:33Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #37 - Jetzt neu mit Fiepen - no - fanboys - Jetzt neu mit Fiepen - - FAN037 - Fri, 16 Sep 2011 23:59:08 +0200 - 01:15:26 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:11Marcel00:00:14und Martin00:01:10Und mit dem Pfeifton00:01:43Abgeordnetenhaus und Bürgerschaft00:02:44Nintendo 3DS jetzt Pink und klobig00:07:13Metal Gear Solid: Snake Eater 3D00:09:48Vita Akkuprobleme00:11:03Machinarium lieblos portiert00:14:34Achron Rant00:21:14Phonestory00:34:29Yes Men00:34:58Windows Metro Browser und Plugins00:38:22Retrospektive statt Angst00:44:53Vorratsdatenspeicherung Petition00:55:08Wahlpartybeobachter00:57:45Facebook Neuigkeiten01:02:34Skype 5.401:04:39Lutschbonbons und Updatealliances01:07:43Kairosoft iPhonespiele01:10:47Portal umsonst bis zum 20.901:12:11Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #36 - Hirnrindensouveränität - no - fanboys - Hirnrindensouveränität - - FAN036 - Fri, 09 Sep 2011 21:17:30 +0200 - 01:20:33 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:10Marcel00:00:14und Martin00:01:59Copy Path00:06:40Mac OS TEN und Xing00:09:50Launchpad, Spotlight und SSDs00:11:11Google^WHTC klagt zurück00:13:44iPad Geschmacksmuster00:18:35Amazon Kindle Android Dings00:21:24Leuchtende Kindles00:22:16Projekt Gutenberg Gründer verstorben00:25:24Nike baut die BTTF Schuhe00:28:34PDF beschneiden und "Sicherheitslücken"00:33:16Freiheit statt Angst00:37:25Die Berliner Piraten und die Wahl01:00:29ZDF Mediathek App01:02:55Game One App01:05:01Unmounten beim Schlafen01:07:41Finanzsoftware01:10:22Webdav automounten01:14:00Photos die nicht aufs iPad syncen01:16:55Wonderputt01:20:10Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #35 - Neverending Leberkäse - no - fanboys - Neverending Leberkäse - - FAN035 - Sat, 03 Sep 2011 01:28:13 +0200 - 01:20:28 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:15Und Martin00:01:08Textsystem Keyboard Shortcuts00:02:00Deus Ex00:02:46Verlorene Prototypen00:04:22iPhone 5 wird hässlich, sagt Marcel00:08:09Final Cut Studio wieder zu kaufen00:09:52iTunes Match Beta00:11:12Eddy Cue00:12:11TV Ausliehe gibbet nicht mehr00:14:10BBC iPlayer00:15:45Leberkäse00:26:25Volksfront von Quickfreeza00:27:22Petition00:32:39DigiNotar Gate00:39:32Mehr Touchpads!?00:41:50Wir sind 3DS Botschafter00:54:08Automatisch unmounten00:57:17Defragmentieren?01:00:32Katzenjammer01:01:43Windows 8 Explorer01:10:02Sendelizenz01:13:35Contre Jour01:17:37Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #34 - Geistlich verwirrt - no - fanboys - Geistlich verwirrt - - FAN034 - Fri, 26 Aug 2011 21:27:26 +0200 - 01:28:35 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:13und Martin00:02:00Alte Männer00:02:43HP Touchpad Abschied00:09:22Steve Jobs Abschied00:14:14Verpincher vermisst00:17:02Webkit Geburtstag00:17:58Linux Geburtstag00:20:21cmdrtaco Abschied00:22:27Jailbreakme Autor jetzt Intern bei Apple00:24:22Neues aus dem Leberkäseimperium00:29:3123andme00:43:53Yank den Killbuffer!00:47:39candyjapan.com00:52:39codecademy.com00:55:29PC-Notruf01:00:14Photoshop Alternativen01:06:40Flapcraft01:09:45Kurbelradios01:16:38Martin bei Trackback01:17:56Deus Ex: Human Revolution01:27:37Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #33 - Geboren im Camp - no - fanboys - Geboren im Camp - - FAN033 - Thu, 18 Aug 2011 23:02:43 +0200 - 01:40:53 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:14und Martin00:01:42Apple Store was down00:03:50CCC und DDB00:35:12Mac OS X 10.7.100:39:28Rumorecke00:41:34Google kauft Motorola00:46:25Was ist mit 280North?00:49:40Subjot und Heello00:58:35Twitter Activity Stream01:01:34Musik, iPod.app und Intents01:12:55Kraft durch Freunde (sic)01:15:29Recovery Disk Assistant01:21:59Homefolder - Wo und Wie?01:27:44Ruhezustand und Wifi01:28:54Soulver01:32:19Alphas01:37:04Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #32 - Explodiergedöhns - no - fanboys - Explodiergedöhns - - FAN032 - Sat, 13 Aug 2011 19:17:16 +0200 - 01:01:27 - - - 00:00:00Anfang00:00:08Mt Dominik00:00:12und Martin00:00:30Vom Chaos Communication Camp00:03:25R0ket00:05:55Blinkenlights Player00:09:08Die Strugatzki-Brüder oder das homöostatische Weltbild00:10:07Stalker00:13:10Is this the Mobile Gadget World We Created?00:13:26fairphone.com00:18:50citizenreporter.org00:20:22Wallmart ohne Digitalmusikverkauf00:22:17Apple more evil than Exxon00:26:55Apple und das 10.1 Tablet00:30:31Gerüchteküche: Event, neue Hardware00:34:05Neue Bilder vom Apple UFO00:35:20Kindle Erfahrungen00:43:40Google+ jetzt mit Spielen00:47:21Camp NSFW00:48:04Brummschleife00:49:05The Last Rocket00:50:35Ja, hier knisterts. USB Bug in Lion. ARGL. Sorry.00:53:09Kosmo Spin00:57:32Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #31 - Knister Knister Knäuschen - no - fanboys - Knister Knister Knäuschen - - FAN031 - Fri, 05 Aug 2011 23:13:34 +0200 - 02:02:26 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:09Marcel00:00:11Tim00:00:14und Martin00:01:37Galaxy Tab 10.1 mit Honeycomb00:19:26Amazon Marketplace: Free App of the Day00:23:16Filevault 2: Admin Accounts, Guest Accounts00:29:29Google und die Patente00:45:59BBC iPlayer Erfahrungen und Tipps00:49:51House of Cards00:50:48Superb Lyrebird00:52:28Kindle gekauft01:08:14iCloud.com Beta01:11:51Keyboardlayout zum Programmieren01:17:50Aufwachprobleme mit Lion, Kopfhörereingang am MBA01:22:56Gesundheit HD01:23:56Karate Champ01:25:47Samba-Performance und Lion01:31:15USB Knistern und Livestream-Probleme01:39:02Belkin RockStar01:42:12Marker 2301:43:34Child of Eden01:52:38Bastion01:55:01Scream'N'Run01:57:55Monster Soup01:59:56Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #30 - Podcastalarmknopf - no - fanboys - Podcastalarmknopf - - FAN030 - Fri, 29 Jul 2011 22:39:57 +0200 - 01:39:03 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12Marcel00:00:16und Martin00:01:18Retrozirkel00:03:47Nintendo 3DS wird billiger00:08:38Spielsalon Kassel00:10:37Alphaland00:14:21Im Internet geboren00:26:42Lion Tidbits00:27:02Trippletap to Dictionary00:28:57Webkit 200:31:08Sandboxing00:35:01Emojis 🎉00:37:13http://💩.la00:37:59Webinspector00:40:06Lock Einstellungen00:44:32Network Link Conditioner00:48:01Tabswipen mit BetterTouchTool00:50:33Feedback: USK im AppStore00:53:34Feedback: Google+ ab 1800:56:07Feedback: Displays und 10.700:58:30Feedback: Chrome & iTunes01:04:20Feedback: Hibernate auf Desktops01:06:06Hörerpick: Unthinkable01:08:44The Story of Electronics01:09:43Conflict materials01:11:12Feedback: Filevault 201:15:48Feedback: Hillegass und Xcode 401:20:30Hörerpick: Toontastic01:22:53Feedback: Alte Betriebssyteme01:23:28Martin verpincht sich01:25:16This American Life: When Patents Attack!01:30:11Webm Patentsorgen01:32:07BBC iPlayer jetzt global01:34:14Humble Indie Bundle 301:36:42Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #29 - Löwenanteil - no - fanboys - Löwenanteil - - FAN029 - Fri, 22 Jul 2011 23:20:17 +0200 - 01:27:47 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Marcel00:00:14Und Martin00:00:51Z und Dune00:01:20Lion00:02:21Folder with Selection00:03:23Folder Mergen00:04:41Filevault 200:05:29Mission Control00:06:22Application Expose und Recent Files00:07:01Spotlight00:09:54Knüllgeste to Launch Pad00:13:24Mail.app00:20:00Adressbuch00:21:41iCal00:23:04Martin's lustiger Multimonitorbug00:24:46Finder Status Bar vermisst und gefunden00:26:05~/Library und Logfiles00:27:02Xcode 4.100:29:03Safari Swipe00:31:14Gesten00:33:01Animationen00:34:56Preview und Unlock00:37:50Scrollrichtung schmerzt kurz, ist dann toll00:39:31Restore Partition00:40:16Lion nicht MAS exklusiv00:41:58Fenster resizen00:43:29Deutsche Sprachsynthese00:47:28Siracusa Review00:48:12Neue Macbook Airs00:51:06Neue Mac Minis00:52:54Neue Displays00:55:58Voice Over auf iOS als Vorleser01:03:10Google+ App01:09:19Die gefakten Apple Store (News)01:12:32Aaron Schwarz vs JSTOR01:19:13Kard Combat01:25:54Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #28 - Sommerloch - no - fanboys - Sommerloch - - FAN028 - Fri, 15 Jul 2011 21:34:53 +0200 - 01:13:59 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Und Martin00:00:34HP Touchpad Speedbump00:01:32Interview mit David und Rubinstein00:03:33Amazon mit Android Tablet im Herbst00:05:36EA kauft Popcap00:07:02App Store passt Preise an00:08:17Volume Purchase Program00:10:53The Rise and Fall of the Independent Developer00:14:55Aktuelle Lionvorhersage00:16:10Aktuelle MBA-Vorhersage00:16:50Einsölf: Zuckerberg leaves Google+00:22:07Einsölf: Superdatenbanken00:27:32Facebooktrottel00:27:55Google+ hinter den Kulissen00:30:25Hörerfrage: TimeMachine Zugriffsrechte00:34:57Z für iOS00:41:39Space Harvest00:43:57Ascension - Chronicle of the Godslayer00:51:46Marked00:55:47TV Forecast HD00:57:40Chosing to Die01:02:59Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #27 - Tippen - no - fanboys - Tippen - - FAN027 - Fri, 08 Jul 2011 20:58:11 +0200 - 01:25:22 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Marcel00:00:15Und Martin00:00:30Google+: Schon wieder alles anders00:06:32Eine Woche mit Google+00:11:27Awesome Product Launch bei Facebook00:19:31Lion und MBAs am 14.07?00:21:08Keychain Sync Heulerei00:25:10HP TouchPad00:31:28Flash - Ahhhaaahhhh00:37:02TouchPad "Lob"00:41:57TouchPad Fazit00:46:43TouchPad Bonus Genöhle00:52:49Google Realtime Suche ist tot00:56:02Persönliche Onlinedatenarchivierung00:57:44Momento00:59:19Timecapsule vs. Airport Extreme01:02:23Backup: Wann und Wie?01:06:21Game Center Matchmaking01:14:22Burn Notice01:16:40iTunes Festival01:17:48Inside the Actors Studio01:20:50iPhones im STS-13501:22:21Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #26 - Plus - no - fanboys - Plus - - FAN026 - Fri, 01 Jul 2011 22:39:50 +0200 - 01:28:11 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:12Und Herrn Zeitweise00:00:16Und Martin00:01:59Google+00:05:38Circles00:09:10Presentation von @Padday (Ex-Googler)00:12:05Google+ Video00:14:44Resharing Problematik00:16:35Kreise durch Erwähnungen aufweichen00:19:13Circles sind nicht Privacysetting00:25:10Sortieren ist Arbeit?00:29:43Datenkrake Google00:31:14Google wird ein "Ort"00:36:39Google Realtime00:37:07Google+ Hangout00:41:17Viraler Hund ist viral00:47:21Digitales Verzeihen00:48:15Erste TouchPad Reviews00:50:13TouchPad Zielgruppe00:53:45Thunderbolt Kabel00:58:13Kein gültiges Wahlrecht mehr01:03:59July 4th Sales im Appstore01:04:31Robot Unicorn Attack01:04:54Dungeon Hunter 201:05:17Nova 201:05:51Order and Chaos01:06:13Starfront: Collision01:06:38Sacred Odyssey: Rise of Ayden01:07:21Der Fling01:10:33Tweetbot01:13:15World of Warcraft jetzt Free-to-Play01:17:48Monster Soup01:20:54Galcon01:21:03Eliss01:21:16Slice HD01:24:42Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #25 - Besser ist immer auch anders - no - fanboys - Besser ist immer auch anders - - FAN025 - Fri, 24 Jun 2011 21:53:18 +0200 - 01:17:28 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:11Und Martin00:00:58Two X or not two X...00:02:26P-Ram Reset00:03:10Bildspur00:04:43Coverart SNAFU00:05:33Livestream - yay or nay?00:07:51WWDC Videos sind da!00:10:47Old farts talking about DVD sets00:11:52Andy Baio wird verklagt00:16:30Atomadler00:20:32Everything is a remix00:21:18Patente sind nicht Produkte00:24:49Apple Patente00:26:52Unspektakuläre neue Basestations00:29:52Unspektakuläres 10.6.800:31:24Nokia N9. Schade eigentlich.00:36:00Final Cut Pro X00:48:15Ocarina of Time Praxiserfahrungen00:57:28Natural User Interface Ads for Kinect01:01:41Indie Game: The Movie01:03:28Mario Marathon01:05:43The Witness01:07:07Team Fortress 2: Wumme für umme01:09:161-Bit Ninja01:15:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #24 - Seifenkistenkino - no - fanboys - Seifenkistenkino - - FAN024 - Fri, 17 Jun 2011 23:10:52 +0200 - 01:33:17 - - - 00:00:00Anfang00:00:04Mit Dominik00:00:08und Martin00:01:25Keine Macbook Airs00:02:06Aber vertragsfreie US iPhones00:03:33und Back to School Promo00:05:23Duke Nukem Forever00:08:21Dukemgate00:12:31Nintendo 3DS Systemupdate00:13:193DS Browser00:17:47Nintendo eShop00:18:28Pokedex 3D00:20:47Virtual Console00:22:31Excitebike 3D00:27:23Virtueller Verpackungsmüll00:29:20DSi Ware00:29:39Tetris Party Live00:30:34Shantae: Risky's Revenge00:31:27Breakfast at Manuspielt's #20300:34:12Glow Artisan00:35:19Picopict00:36:37Mario vs. Donkey Kong00:37:12Ghost Recon: Shadow Wars00:37:47Ocarina of Time 3D00:44:17Automatic Reference Counting00:57:10Cyberabwehrzentrum00:59:27Schöne Impressumsabmahnung01:01:12Assange über seinen Hausarrest01:05:24Enhanced Podcast nicht 2Xable01:10:22Xcode Templates01:15:25Apple Developer Forums01:15:43Stack Overflow01:15:53iTunes App Backup01:17:18Incrementelle verschlüsselte Backups01:21:16Jonathan Coulton01:22:33Paul and Storm01:24:16Telekom Lob01:25:06Kinect SDK01:28:18Capo01:28:33Reeder01:29:38Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #23 - Sehr flughafig - no - fanboys - Sehr flughafig - - FAN023 - Mon, 13 Jun 2011 10:16:39 +0200 - 00:46:38 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:13dem Flughafen00:00:16und Martin00:01:04Off road Fanboys00:01:45Apple Design Awards00:02:22Pixelmator00:03:31Djay for iPad00:05:16Our Choice00:06:50Capo00:09:41LLDB00:11:03It's like a spaceship has landed00:14:42Neue Macbook Airs?00:16:11Wii U00:26:10PSP Vita00:26:48Shadow of the Collossus / Ico00:29:01Gesichtsbuch mit Gesichtserkennung00:35:19… und neuem Sofa00:38:54Reeder for Mac00:40:54Super 800:44:50Outro]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #22 - Not our finest hour - no - fanboys - Not our finest hour - - FAN022 - Mon, 06 Jun 2011 21:30:33 -0700 - 01:30:07 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Und Martin00:01:50Halo 400:03:14WWDC Keynote00:05:11Lion00:06:05Gesten00:06:17Fullscreen00:06:59Mission Control00:08:33Launchpad00:09:50Resume00:10:38Versions00:12:24Airdrop00:13:59Mail00:16:2129 Dollar, nur im App Store00:19:58Mac App Store00:23:14iOS 500:27:26Notifications00:30:19Newsstand00:32:57Twitter00:36:13Safari00:41:05Reminders00:43:47Camera00:47:21Mail00:51:45PC Free00:54:37Game Center00:58:22iMessage01:02:01iCloud01:17:00iTunes Match01:27:18Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #21 - Level Level Scheisse - no - fanboys - Level Level Scheisse - - FAN021 - Fri, 27 May 2011 18:08:05 +0200 - 01:16:54 - - - 00:00:00Anfang00:00:05Mit Dominik00:00:09Und Martin00:00:48Ein Mountie in Chicago00:01:50Apple antwortet Lodsys00:03:55Lodsys schreibt Android Entwickler an00:05:34Amazon mit Mac App Store00:08:53Ballmer gegen Einhorn00:13:01Google Beta (Music)00:15:48Google Wallet00:21:01Paypal klagt gegen Google Wallet00:22:54Square00:23:56eG800:27:38CDU Medianight00:33:43360 Controller Treiber00:39:12tunnelblick vs. aiccu00:40:22tunnelblick Mailinglistenbeitrag00:42:30Verschlüsselung bei Crashplan00:48:56Migrationsassistent oder nicht?00:54:48Percepto00:55:13Monospace00:58:04All Watched Over by Machines of Loving Grace01:01:28Douglas Adams auf der PDC 199601:06:37Frontline: “WikiSecrets”01:12:45Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #20 - Unterwasser-Ponys - no - fanboys - Unterwasser-Ponys - - FAN020 - Sat, 21 May 2011 20:06:10 +0200 - 01:15:02 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Und Martin00:00:56KeyCue00:01:54Piraten-Servergate00:14:12Bradley Manning00:17:26In-App-Gate00:28:07Mehr eBooks als richtige Bücher00:30:10AuthToken-Gate00:34:20PSN Hacks, Teil 1200:39:36Homebanking00:41:42Surfen Multimedia00:41:49ChapterTool Gejammer00:49:00Dropbox und die Verschlüsselung00:54:35RAR Files und Rechteprobleme00:57:13Rapture-Liveberichterstattung00:57:32The Unarchiver00:59:11ACL FIles entfernen01:03:15Dropbox Partion und TimeMachine01:05:44iTunes vs. Twitter01:07:53Sicherheitshinweise für die Zombokalypse01:09:30Pontypool01:13:17Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #19 - Milchschnittenroboter - no - fanboys - Milchschnittenroboter - - FAN019 - Sat, 14 May 2011 20:29:30 +0200 - 01:44:57 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:09Und Martin00:01:06Zwangsgeflattrt00:03:13Google IO00:08:02Honeycomb 3.100:08:31Widgets to the next level00:10:19USB Host00:13:56Icecream Sandwich00:16:26It's open!00:17:04Headtracking00:20:02Techdemo Rant00:21:46Android Market00:25:09Music Beta00:30:51Android Alliance00:32:21Open Accessory alliance00:37:00android@home00:40:16Chrome und WebGL00:41:49Google Body00:42:06Chrome Experiments00:43:21Three dreams of black00:48:29Chromebooks00:57:07Microsoft kauft Skype01:02:53Phil, JUMP!01:05:35Consoligate Hearing01:14:37iMac Platten nicht (fremd-)tauschbar01:19:31Timemaschine via netatalk01:20:41Entwickleranlaufstellen01:22:43Cocoadev01:23:12Daniel Jalkut01:23:22Matt Gemmell01:23:34Der Hockenbär01:24:09CocoaObjects01:24:52stackoverflow01:25:30Mailinglisten Archiv01:26:38Keyboard Shortcuts01:30:45Twitter Ähnlichkeit01:31:39Interview mit Andreas Illiger01:33:53Podcastworkflow01:34:32Squier Rockband von Fender01:39:28Nyan Cat fürs iPhone01:43:39Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #18 - Geeignete Eimer - no - fanboys - Geeignete Eimer - - FAN018 - Sat, 07 May 2011 17:52:44 +0200 - 01:10:34 - - - 00:00:00Anfang00:00:06Mit Dominik00:00:09Und Martin00:00:15Photosynth exportiert ja doch…00:06:41Zensus Werbung00:08:14Lautsprecher00:08:58Neue iMacs sind neu00:16:35Facebook wird ver-wave-t00:19:54Es ist dicker! Nein! Doch! Nein!00:22:03Drölfzigster erster Mac Trojaner00:29:37GlüStV00:32:02Canabalt vs. Free Runner00:36:42RAM Disk automatisieren00:37:56Espérance DV00:41:12Mac aufwecken via Bluetooth00:43:28Umsatzzahlen von Apple00:45:47Backup und Dropbox unter Bootcamp00:53:06Push und Stromverbrauch00:58:22Coin Drop01:02:20White House Correspondents' Dinner01:05:03Steven Colbert WHCD01:06:31Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #17 - Halbdigital - no - fanboys - Halbdigital - - FAN017 - Fri, 29 Apr 2011 19:46:37 +0200 - 01:14:42 - - - 00:00:00Anfang00:00:06Mit Dominik00:00:11Und Martin00:01:20Weiße iPhone (einself)00:02:59iCloud00:06:24Beflattrt werden ohne zu flattrn00:08:46Komplexität, Vermittelbarkeit und öffentliche Diskussion00:27:59Zensus00:33:54PlayStation Network Totalschaden00:38:40S'mei hoitn00:40:07Unverdiente Preisverleihung00:42:49Chaptermark Workflows00:46:08Xcode vs SSD00:52:42Bürosoftware und Erica Sadun Buch00:54:57Daylight (Nicht ganz das Gesuchte)00:56:34Hockenbärchen Buch00:58:20Derren Brown00:58:42Derren Brown: Miracles for Sale01:00:53South Park: HUMANCENTiPAD01:02:53The Final Hours of Portal 201:06:03Photosynth01:10:54Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #16 - Medienkompetenzkompetenz - no - fanboys - Medienkompetenzkompetenz - - FAN016 - Sat, 23 Apr 2011 19:03:41 +0200 - 02:03:56 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:10Und Martin00:00:34Fehler und andere Versemmeleien00:03:51Final Cut Pro X Addendum00:09:16consolidated.db00:28:39Vergessen im Internet00:37:43VDS Druck von Seiten der EU00:41:03Die Datenfresser01:00:24Hörerkommentare01:00:39Safari Video Problem01:09:12Faxen01:15:32Motion und Color als IAP?01:19:13Uranium - Is it a Country?01:20:48Apple vs. Opensource01:30:07Portal 201:48:10Stacking01:55:17Mos Speedrun]]> - - - - - - - - - - - - - - - - - - - - - - - - Episode #15 - Trollcollect - no - fanboys - Trollcollect - - FAN015 - Sun, 17 Apr 2011 13:48:05 +0200 - 01:38:03 - - - 00:00:00Anfang00:00:07Mit Tim00:00:10Und Martin00:00:48Objektiv00:01:20Werbungsmanöverkritik00:04:24Appleweltherrschaftsfantasien00:05:06201500:07:27Windows 800:10:08HP TouchPad00:13:51Androidrant00:20:39re:publica00:25:24Podcasting als Öffentlichkeitsarbeit00:33:13Kiki und Bubu00:36:16flattr00:43:07crowdin00:44:55Diaspora00:52:12Shitstorm00:52:45hatr.org00:59:00Egyptian Social Media Stories01:05:32ix.Mac.MarketingName01:14:36Final Cut Pro X01:35:04Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #14 - The Power to Be Your Best - no - fanboys - The Power to Be Your Best - - FAN014 - Sun, 10 Apr 2011 19:48:13 +0200 - 01:08:57 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:11Und Martin00:01:34@RegSprech00:02:36AtomixMag00:04:45COOP00:17:56iPad 2 wird verschickt00:19:17Playbook verspätet sich00:20:10iAd Gallery00:22:45Neue iPad Werbung00:24:12The Power To Be Your Best00:28:05Android, Windows Phone 7 und iOS Verkaufszahlen00:28:29PlaneFinder00:31:32Netzsperren sind tot00:34:37… oder auch nicht00:38:40Mindestdatenspeicherung00:40:51Gutti Update00:42:32Hörerfrage zu @protocol00:48:43Hörerfrage zu Versionskontrolle00:54:28Hörerfrage zu MBP Temperatur01:00:40Playing Columbine01:03:56Glenn Beck Parodie in der Daily Show01:05:24Jamie's Kitchen]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #13 - Darf ich sie an die Bheke titten? - no - fanboys - Darf ich sie an die Bheke titten? - - FAN013 - Fri, 01 Apr 2011 20:01:37 +0200 - 01:17:51 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:13Und Martin00:00:53RTL Samstag Nacht00:01:093DS nach einer Woche00:06:27Twitter schafft die #dickbar ab00:09:37iPad 2 nach einer Woche00:16:48WWDC in 10 Stunden ausverkauft00:23:34Honeycomb, Android und die "Openness"00:30:48@RegSprecher00:40:47Nicolas Semak spricht mit Herrn Pflugbeil über Fukushima00:48:43SSD iops Frage00:55:15loreumpixum00:58:56iPhone Sync Problem01:05:17Tiny Wings mit Game Center01:07:57Boxer01:12:18"Above all, no polling"01:14:10Der Lautsprecher01:15:51Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - Episode #12 - Der Verpincher - no - fanboys - Der Verpincher - - FAN012 - Sat, 26 Mar 2011 20:06:39 +0100 - 01:38:18 - - - 00:00:00Anfang00:00:06Mit Dominik00:00:11Und Martin00:00:28iPad 200:01:08Onlinebestellungserfahrungen00:04:32Münchner Schlangenexperience00:11:29iPad 2 Eindrücke00:19:06Bertrand Serlet verlässt Apple00:26:22Exkurs: EOF und WebObjects00:31:42Goldener Meister Zwo Drei Vier00:34:413DS Gejammere00:35:46Spielearmut00:36:44Das dickste Handbuch der Welt00:37:32Von Farben und deren Wahrnehmung00:38:53Setup und UI00:43:43Kameras-Apps00:45:35Mii mii mii mii00:49:06Nur noch ein Freundescode!00:54:50Notifications00:58:02Phantombrowser00:59:39eShop01:01:27DS Spiele auf dem 3DS01:03:09Teleskop-Stift01:05:07Face Raiders01:07:24Augmented Reality01:09:35Fazit01:11:24Sword and Sworcery EP01:19:05Audiokommentar: Schlafloser Mac01:22:54Audiokommentar: MBP Details01:27:383DS Preis01:28:08Anti-AKW Demo01:29:28Fukushima Berichterstattung01:32:19Filmtipp: Into Eternity01:38:10Rausschmeisserchen]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #11 - Krieg mit Ozeanien - no - fanboys - Krieg mit Ozeanien - - FAN011 - Fri, 18 Mar 2011 20:49:22 +0100 - 01:34:32 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:11und Martin00:00:40Errata00:01:01Watcom00:01:48Planet Money00:02:40"Jungs"00:03:58Fukushima00:12:41"Why I’m not worried"00:17:27Quarks und Co00:17:58Abenteuer Forschung00:18:32Übrigens…00:20:30Elementarfragen Tschernobyl00:22:19Elementare Fragen00:24:01Das verdrängte Risko00:26:21Krieg mit Ozeanien00:43:35Greenpeace Japan00:43:47Joi Ito00:45:28Trans-Pacific Partnership Agreement00:47:24P.J. Crowley nimmt Hut wegen Aussagen zu Bradley Manning00:51:48iPad 2 ausverkauft usw.00:52:37Twitter vs 3rd Party00:56:04Microsoft schafft Zune ab00:57:46und den Sidekick auch00:59:43Audiokommentar von Stefan01:09:29Email von Marta01:12:45Audiokommentar von Paddy01:20:29Email von Frederic01:23:00Audiokommentar von Jonas01:27:08Masters of the Void01:28:11The Show with Ze Frank01:30:57Place Kitten01:33:02Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #10 - Tri-Winning! - no - fanboys - Tri-Winning! - - FAN010 - Thu, 10 Mar 2011 19:52:02 +0100 - 01:15:51 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Und Martin00:00:29Polyurethan00:01:45iOS 4.300:02:03Homesharing00:07:50Keine Gesten00:09:27Personal Hotspot00:09:58Schnellerer Safari00:13:02Apple TV "Apps"00:16:08Xcode 400:21:30iPad 200:22:17Schlangenoptimierung00:23:15Kamera00:24:02Display00:25:35PSA: 3DS nicht gebraucht kaufen00:26:36iPad 2 Guided Tours00:27:52Android Remote App Löschen00:29:17Nokia verkauft Qt00:29:39Turtles all the way down00:30:21Business Kasper00:30:38Charlie Sheen00:32:43Audiokommentar von Sebastian00:35:33Audiokommentar von Korbi00:40:44Hape will Vorratsdaten00:42:01Krings will Sperren00:47:53Post-Privacy Spacken00:52:36The collected short stories of Roald Dahl00:55:52Inside Job01:02:16Tiny Wings01:05:12Inside a Star-filled Sky01:09:53Wormworld Saga App01:13:15Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #9 - Box of Puppies - no - fanboys - Box of Puppies - - FAN009 - Thu, 03 Mar 2011 23:03:27 +0100 - 01:55:40 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:10Und Martin00:00:21Oftmals falsch Fanboys00:04:37iPad 2 Event00:06:47iBooks00:07:37Post-PC00:13:17Die inneren Werte00:14:28Kameras00:16:28Facetime00:18:55Photobooth00:20:36Haptik00:22:03Schwarz und Weiß00:22:58Smart Cover00:28:52HDMI Out00:31:43iOS 4.300:36:13iMovie fürs iPad00:41:17Garageband fürs iPad00:49:53200 Mio Accounts00:52:41iPad 2 Fazit00:58:42Kommentar von Roy01:07:29Kommenar von Nils01:12:03GDC Nintendo Keynote01:13:00Mario 3DS01:16:01Zelda Skyward Sword Trailer01:18:483DS Netflix01:19:24GameGear und Turbografx01:19:55Onkel Smu vs 3DS01:21:35Flirtgewitter01:25:56Cave Story01:27:14für Mac01:27:22auf Englisch patchen01:30:55Beyond Good and Evil HD01:34:32Bayerntrojaner Praxisbericht01:38:32Neuer Innenminister ist neu01:51:53Alternativlos zum Gutti01:53:30Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #8 - Der mit den vielen Fanboys - no - fanboys - Der mit den vielen Fanboys - - FAN008 - Thu, 24 Feb 2011 22:56:44 +0100 - 01:52:05 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:11und Tim00:00:13und Martin00:02:12Mac OS X Lion00:04:46Mail 500:06:49Mac OS X Server00:10:34Autosave und Versioning00:21:02Resume00:25:07Seeds über den Mac App Store?!00:30:44Airdrop00:33:38MobileMe nicht mehr kaufbar00:39:17iPad 2 Event00:42:07Neue Macsbooks Pros00:55:00iPad Midi00:57:34FaceTime01:02:13Facebook vs Google01:03:10Google vs Facebook01:05:05Windows Phone 7 Update Schmerzen01:07:32Apple Werbespot01:10:06Bangen um WebOS01:18:05Xoom mit/ohne Flash01:20:14Internet-Enquete vs Adhocracy01:25:21Cyber-Abwehrzentrum01:26:44Assange nach Schweden oder auch erstmal nicht01:28:16Kommentar von Sascha aus Altenstadt01:34:14Kommentar von Christian aus Trier01:38:17Gruß an Patrick01:38:37Minecraft Dokumentation01:43:04Reformat the Planet01:43:27flattr Link der Woche01:46:56Der Lautsprecher01:48:42Winkewinke01:49:45Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #7 - Drei Scheiben Leberkäse - no - fanboys - Drei Scheiben Leberkäse - - FAN007 - Fri, 18 Feb 2011 20:23:47 +0100 - 01:14:44 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:09Und Martin00:03:07Periodicals in iBooks00:04:43The Daily Indexed00:06:31In-App-Kaufs-Zwangs-Bombe00:10:07Google One-Pass00:11:35Motorola Xoom Preis-Wirrwarr00:16:12Inside Wikileaks00:26:25Killzone Stachus00:27:58Valentins Helghast00:30:48Watson spielt Jeopardy (Vorsicht Spoiler!)00:38:51Hörerkommentar von Marcel00:42:25Crossplattformentwicklung00:50:14Ist WebOS noch zu retten?00:56:46Medienkonsumempfehlungen00:57:31News Wipe00:57:41Screen Wipe00:57:58Dead Set01:00:54Misfits auf Youtube01:01:53Between two ferns01:08:24Cat Physics01:12:26Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #6 - Jetzt auch in 3D! - no - fanboys - Jetzt auch in 3D! - - FAN006 - Fri, 11 Feb 2011 18:32:29 +0100 - 01:59:34 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:11Und Martin00:00:29Oftmals falsch Martin/Dominik00:02:53Dom's Javascript Spielerei00:04:56Javascript besser verstehen00:06:263DS Experience Night in München00:07:45Ersteindrücke in Sachen 3D00:10:28Combat of Giants: Dinosaurs 3D00:10:57Dead or Alive Dimensions00:11:38Blickwinkel Problematiken00:16:43Angestrengte Augen00:19:053D Videos auf dem 3DS gucken?00:20:30Brille vs. Lentikulardisplay00:23:36Stift00:24:02Touchpad00:26:45Schiebepad00:29:48Kameras00:32:17Friendcodes00:34:10Mii Generator00:37:59Streetpass00:40:24Activity Log00:41:10Face Raiders00:41:54Augmented Reality00:44:30eShop00:45:10Akku00:48:23Notizen00:49:29Super Streetfighter IV - 3D Edition00:52:05Super Monkey Ball 3D00:52:21Puzzle Bobble 3D00:53:18Sims 3 3DS00:53:33Grafikqualität00:54:30Paper Mario00:54:59Zelda: Ocarina of Time 3DS00:55:25Resident Evil: Revelations00:56:22Kid Icarus: Uprising00:58:41Star Fox 64 3DS00:59:22Metal Gear Solid 3D Snake Eater The Naked Sample 3DS01:01:49Mario Kart 3DS01:02:27RIDGE RACER 3D01:03:08Asphalt 3D01:03:24Starttitel01:03:50Nintendogs + Cats01:04:07Pilotwings Resort01:04:48Samurai Warriors: Chronicles01:06:34Animal Crossing 3DS01:07:00Ubisoft Titel01:07:413DS Zwischenfazit01:13:07Nokisoft oder Microkia?01:13:56Stephen Elop01:15:54Meego01:20:38What about Finland?01:22:18And what about QT?01:26:33webOS lebt01:31:20Depression01:31:36Sicherheitskonferenz Bonmots01:41:24Bundeskanzleramt fordert Ethik fürs Internet01:45:59Battleheart01:49:22Super Soviet Missile Mastar01:50:00Dungeon Raid01:53:19App Store und Süd Korea01:55:45Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #5 - The N-Word - no - fanboys - The N-Word - - FAN005 - Thu, 03 Feb 2011 17:21:27 +0100 - 01:27:34 - - - 00:00:00Anfang00:00:11Mit Dominik00:00:13Und Martin00:01:25CSU Netzkongress00:12:33Bayern Trojaner00:15:35Internet Not-Aus in Österreich?00:18:52Fling: Analog Joystick for iPad00:23:39The Daily00:33:28IAP Zwang für Bücher?00:35:50Intel hat Sand im Getriebe00:38:50Android Honeycomb00:48:30Microsoft H.264 Plugin für Chrome00:50:40cathode00:52:01Frequently Asked Questions About Time Travel00:55:44Derren Brown01:02:5910²³01:17:17Audiokommentar01:18:55Audioboo (Tag: fanb0ys)01:22:10Hindenburg01:25:18Rausschmeisser]]> - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #4 - Fanboys: Legacy - no - fanboys - Fanboys: Legacy - - FAN004 - Fri, 28 Jan 2011 19:38:24 +0100 - 01:12:26 - - - 00:00:00Anfang00:00:07Mit Dominik00:00:10Und Martin00:00:47Oftmals-falsch-Martin00:01:303DS Augmented Reality00:04:053DS Datum00:04:36Sony NGP Pressekonferenz00:17:37Android Marketplace für PS1 Spiele00:21:24Sony vs. Hotzelschorsch, Teil 200:23:24Projekt INDECT00:25:383sat über INDECT00:26:50Stopp INDECT00:27:5227C3: INDECT - an EU-Surveillance Project00:28:14Ägypten macht das Internet aus00:34:43Core Intuition00:38:57phantomjs00:41:41raphaëljs00:44:28Dead Space iOS00:53:00Tron00:54:21Tron: Legacy01:01:56Tron: Evolution01:04:05Leuchtende Klamotten01:06:23Elementarfragen: Software Entwicklung01:07:35flattr Link der Woche01:08:24Rausschmeisser01:09:52midimachine - Tron Legacy (8-bit)]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #3 - The Germany is doing itself away - no - fanboys - The Germany is doing itself away - - FAN003 - Fri, 21 Jan 2011 20:03:37 +0100 - 01:11:52 - - - 00:00:00Anfang00:00:09Mit Dominik00:00:12Und Martin00:01:02Errata00:01:58iPad 200:02:46"Retina" Displays00:04:28Gleiche Auflösung?00:08:49Seltsame Reutersmeldung00:11:01Apple Quartalszahlen00:13:4810 "BILLLION" Apps00:14:19Telekom erlaubt persönliches Hotspotten00:15:43Spass mit der Telekom00:17:43Führungswechsel bei Google00:18:56… und bei Apple.00:20:59VDS Light00:29:14ZugerschwG Debatte00:32:44Nintendo 3DS ab 25.0300:44:01deTune00:46:42flattr Link der Woche00:47:571337motiv00:51:04Immersion00:55:38Gangstarap aus dem bayerischen Innenministerium00:56:01Stuckrad Late Night01:04:00Breaking Bad01:09:27BBC - World Have Your Say - Thilo Sarrazin live in Berlin]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #2 - Xeroxisierung - no - fanboys - Xeroxisierung - - FAN002 - Fri, 14 Jan 2011 21:36:07 +0100 - 02:13:15 - - - 00:00:00Anfang00:00:08Mit Dominik00:00:12Und Martin00:00:29Errata00:01:57BTTF Making Of00:02:30JPod00:03:03Kommentarmöglichkeiten00:04:39Chromeschmerzen00:06:25Flattrlink der Woche00:07:50Mac App Store - Eine Woche später00:08:18Updates00:12:44Mac UIKit Layer00:13:52Angry Bird Crack00:17:58Preise im Mac App Store00:19:26SUID Problematik00:21:04Firenze.app und porco.apple.com00:22:57TBBT und iPhone Entwicklung00:24:11supportprofile.apple.com00:26:54Attentat auf Gabrielle Giffords00:36:22Digitaler Radiergummi00:42:09Dom war bei Hagen Rether00:44:46Hadopi - Phase 200:51:31PS3 News: Sony klagt, Geohot customfirmwaret00:57:21Chrome kündigt an h264 Unterstützung zu entfernen01:03:56Youtube Account Zwangsverlinkung01:08:33CES News01:08:37LoadingReadyRun: CEX01:09:01Tabletdinger01:10:43Microsoft Surface wird besser01:14:23iPad 201:18:43iPhone 4 bei Verizon01:22:43Personal Hotspot in iOS 4.301:24:22Personal Hotspot mit deutschen Providern01:25:39iPad an iPhone tethern01:26:13iOS 4.3 iPad Multitasking Gesten01:29:32App ist Wort des Jahres01:30:59App Store Markendiskussion01:32:05Nützlichstes Wort 201001:32:31Nom Nom Katze01:32:48Know Your Meme01:33:30Capcom klaut Spielidee01:37:20IBM Watson spielt Jeopardy01:51:55Pogo's World Remix01:52:40Alice YooouuuTuuubed01:53:39Pogo's Youtube Channel01:54:52Joburg Jam01:57:14Dawsons Creek01:57:39Pacey-Con01:58:33James van der Memes02:00:05van der Memes - Behind the Scenes02:00:42Aralon: Sword and Shadow HD02:05:07Misfits02:12:04Unsere Freunde von der CSU]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Episode #1 - Man sieht nur mit den Ohren gut - no - fanboys - Man sieht nur mit den Ohren gut - - FAN001 - Fri, 07 Jan 2011 11:01:42 +0100 - 01:23:51 - - - 00:00:00Anfang00:00:21Mit Dominik00:00:23Und Martin00:00:25Was soll denn der Schmarrn?00:02:1527c3 Retrospektive00:03:54Was ist denn der Congress?00:08:11Adventures in analyzing Stuxnet00:13:54Alternativlos zu Stuxnet00:14:32The Concert00:18:12A short political history of acoustics00:19:54Console Hacking 201000:26:53Ich sehe nicht dass wir zustimmen werden00:29:58maha blog00:30:06OMG WTF PDF00:32:27Reverse Engineering the MOS 6502 CPU00:36:34Three jobs journalists will do in 205000:38:28Adventures in Mapping Afghanistan Elections00:41:35The importance of resisting Excessive Government Surveillance00:44:54Chip and PIN is Broken00:48:37OpenLase00:50:2727c3 Recordings00:51:14The Return of the kaputter Wecker00:54:59The Glif00:59:05Mac App Store01:00:42The Incident (for Mac)01:02:20Twitter for Mac01:02:49Fehler 10001:03:49Ungarische Depression01:06:56Back to the Future01:11:37Game Dev Story01:14:46Continuity01:17:03The Second Coming01:17:25The Day of the Triffids01:22:30Schluss]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vendor/fguillot/picofeed/tests/fixtures/geekstammtisch.de_episodes.mp3.rss b/vendor/fguillot/picofeed/tests/fixtures/geekstammtisch.de_episodes.mp3.rss deleted file mode 100644 index 84c7014..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/geekstammtisch.de_episodes.mp3.rss +++ /dev/null @@ -1,9428 +0,0 @@ - - - - Geekstammtisch - http://geekstammtisch.de - - - - - - - de-de - gst-kitchen - Dirk Breuer, Sebastian Cohnen, cc-by-nc-sa - Das heimelige Nerdgespräch über Webentwicklung, Ruby/Rails und mehr - Dirk Breuer, Sebastian Cohnen - alle@geekstammtisch.de (Dirk Breuer, Sebastian Cohnen) - Mehr oder weniger regelmäßiger Stammtisch rund um Nerdthemen und Webdevelopment - no - Mehr oder weniger regelmäßiger Stammtisch rund um Nerdthemen und Webdevelopment - - Dirk Breuer, Sebastian Cohnen - alle@geekstammtisch.de - - - - - - - - - - - - - - - GST000 - Batteries Included - no - Dirk Breuer, Sebastian Cohnen - Der Geekstammtisch stellt sich vor - - GST000 - Mon, 17 Dec 2012 19:02:58 +0100 - 00:42:27 - - Geekstammtisch Publishing Prozess - - - -

    Ruby Compile Tricks (Performance!!11!1)

    - - - -

    Ruby Upgrade mit RVM

    - -
      -
    • rvm upgrade ruby-1.9.3-p286 ruby-1.9.3-p327
    • -
    • Installiert 1.9.3-p327 migriert alle gems und wirft die alte Ruby version -auch komplett weg, wenn gewünscht
    • -
    - -

    Ruby Entwicklung

    - - - -

    gem picks

    - - - -

    Apps

    - - - -

    Best Practices

    - - - -

    Github's Gists in Neu und Bunt, schön :)

    - - - -

    Events

    - - -]]>
    - - - -
    - - - GST001 - Chubby Models on a Diet - no - Dirk Breuer, Sebastian Cohnen - Noch mal mit ohne Gast über aktuelles aus der Ruby-Welt - - GST001 - Mon, 07 Jan 2013 20:50:46 +0100 - 00:53:30 - - Errata - - - -

    In eigener Sache

    - -
      -
    • Endlich auch im iTunes Store und damit auch in Instacast! - -
        -
      • Nach dem Store mehr mp4 Downloads als mp3! (2:1)
      • -
      • Download Zahlen von Podcasts ermitteln: nicht einfach :-/
      • -
    • -
    • Und auch via Bittorrent (http://bitlove.org/tisba/gst) - -
    • -
    • Nettes Feedback zum gst-kitchen Publishing Prozess von @auphonic und @timpritlove
    • -
    - -

    Ruby

    - - - -

    Rails

    - - - -

    Software Development

    - - - -

    Binstubs

    - - - -

    SCM Hosting:

    - - - -

    Random Stuff

    - -
      -
    • Linus Torvalds beschimpft Kernel-Entwickler: https://lkml.org/lkml/2012/12/23/75
    • -
    • conference.jabber.org: Group-Chat Service kostenlos, wenn man das mal brauchen sollte ;-)
    • -
    -]]>
    - - - -
    - - - GST002 - Shell ist immer da - no - Dirk Breuer, Sebastian Cohnen - Mit Sebastian Schulze (@bascht) - - GST002 - Mon, 21 Jan 2013 22:12:54 +0100 - 01:00:29 - "Broadcast Input") - * Echte Automatisierung: - * Am besten direkt von Anfang an richtig machen! - * Puppet: http://puppetlabs.com/ - * Chef: http://www.opscode.com/chef/ - * Chef-Doku: http://docs.opscode.com/ - * KEINEN eigenen Chef-Server zum testen aufsetzen, einfach kostenlos bei Opscode einen nehmen: https://manage.opscode.com/ - * irgendwas anderes / eigenes ;-) (immer noch besser als manuell) - * Keine Angst mehr vor Freitagnachmittag-Deploys: http://devopsreactions.tumblr.com/post/37823969926/a-small-infrastructure-change-4pm-friday - * GST berichtete: mruby-web-irb is now WebRuby: https://github.com/xxuejie/webruby - * Ruby Facets: https://github.com/rubyworks/facets - * Zucker: http://rubyzucker.info/ - * Anwendungsfall für ActiveSupport: http://bascht.hasbeen.in - -### Rails - - * OMG!1!, more security fixes - * Rails 3.2.11, 3.1.10, 3.0.19 und sogar 2.3.15 released - * CVE-2013-0155: https://groups.google.com/group/rubyonrails-security/browse_thread/thread/b75585bae4326af2 - * CVE-2013-0156: https://groups.google.com/group/rubyonrails-security/browse_thread/thread/eb56e482f9d21934 - * View-Decorator: https://github.com/drapergem/draper - * Gary Berhardt: "How do we stop our Rails apps from being so horrible when they grow up?" - -### Web Services - - * http://hackdesign.org/ - Desing courses for Hacker - -### Events - - * cologne.rb braucht Talks: https://github.com/colognerb/talks/wiki/Potentielle-Themen - * Unser Talk: https://speakerdeck.com/railsbros_dirk/cologne-dot-rb-magic-kindergarten - * Am 6.7. ist Iron Maiden in Oberhausen \m/ - * Sigint findet auch an diesem Wochenende statt: http://sigint.ccc.de/ (5.-7.7.2013) - * Railsgirls treffen sich auch wieder (31.01.): http://www.nerdhub.de/events/115-rails-girls-cologne/dates/1442) - * wroc_love.rb: Zweiter Batch an Tickets raus - https://tito.io/wrocloverb/2013 - -### Offtopic - - * Dokumentation über das Phänomen Bronies: http://www.bronydoc.com/Brony/MAIN.html :-) - * Pony Podcast: http://ponytime.net/]]> - Heute mit unserem ersten Gast: Sebastian Schulze (@bascht, http://bascht.com/)

    - -

    Errata

    - - - -

    Ruby

    - - - -

    Rails

    - - - -

    Web Services

    - - - -

    Events

    - - - -

    Offtopic

    - - -]]>
    - - - -
    - - - GST003 - Mein Callstack ist kleiner - no - Dirk Breuer, Sebastian Cohnen - Mit Florian Gilcher (@Argorak), u.a. über Padrino - - GST003 - Mon, 28 Jan 2013 21:07:15 +0100 - 01:04:00 - Heroku - * Auch gut für Bloggen im Zug - * Empfehlung: Syntax-Sonntag bei Ruby-Mine (http://www.ruby-mine.de/) - * Sehr gute Einführung in Oniguruma (http://www.ruby-mine.de/wonado) - * Gutes deutsches Ruby-Wiki: http://wiki.ruby-portal.de/Hauptseite - * Open-Source Nachbau des RPG-Makers (http://www.rpgmakerweb.com/) in Ruby (http://devel.pegasus-alpha.eu/projects/openrubyrmk/boards) - * Ruby-Forum ist immer noch in PHP :-) - * Foren sind irgendwie nicht mehr aktuell, wird aber noch nachgefragt - -### Events - - * Insider-Infos zur SIGINT (Nachtrag): - * Mehr Technik-Bezug incoming! - * CFP soll ganz bald starten - * eurucamp findet auch wieder 2013 statt: http://eurucamp.org/ (16. - 18. August 2013)]]> - Heute wieder mit Gast: Florian Gilcher (@Argorak, http://asquera.de/blog)

    - -

    Errata

    - -
      -
    • Auf Grund der kurzen Zeit zwischen den Aufnahmen qausi ausgefallen. Oder einfach keine Fehler gemacht ;-)
    • -
    - -

    Unser Gast

    - -
      -
    • Florian aus Berlin - -
    • -
    - -

    Padrino

    - -
      -
    • Entstanden aus Sinatra-Plugins
    • -
    • Auch heute ist eine Padrino-App "nur" eine Ansammlung von Sinatra-Apps
    • -
    • Padrino ist viel expliziter als Rails
    • -
    • Padrino "zwingt" den Entwickler sich mit vielen (allen) Entscheidungen selbst zu beschäftigen
    • -
    • Rails Pain #1: Initializer-Reihenfolge (auch von Engines), Paadrino kümmert sich nicht - -
        -
      • Ladereihenfolge, Config etc muss man selbst machen
      • -
    • -
    • Rails Pain #2: Logger austauschen - -
    • -
    • Eignet sich Padrino gut für Einsteiger? - -
        -
      • Der Grund Aufwand ist nach Flo schon höher
      • -
      • Aber der Zusammenhang zwischen den Komponenten wird klarer
      • -
      • Padrino behandelt Padrino Erweiterungen (Engines) expliziter
      • -
      • Philosophie bei Padrino: Setzt euch mit den Dingen auseinander!
      • -
    • -
    • Rails und Einsteiger? Auch nicht mehr ganz so einfach… - -
    • -
    • Padrino Getting Started - -
        -
      • Es gibt auch Generatoren
      • -
      • Schritt Eins: HTTP-Stack
      • -
      • Komponenten müssen ausgewählt werden - -
          -
        • Von Test-Framework bis ORM alles auszuwählen
        • -
        • In Ruby passt eigentlich alles gut zusammen ohne viel Aufwand
        • -
      • -
      • Mit Rack (http://rack.github.com/) ist alles besser geworden
      • -
    • -
    • Es gibt auch noch Ramaze: The Web Framework for Rubyists (http://ramaze.net/)
    • -
    • Flo träumt von Jeremy Evans’ sequel (https://github.com/jeremyevans/sequel)
    • -
    • PostgreSQL hstore (http://www.postgresql.org/docs/9.0/static/hstore.html) - -
        -
      • ActiveRecord hat mittlerweile auch eine Unterstützung
      • -
    • -
    • ORM tauschen ist mit Padrino genauso schwer wie bei Rails - -
        -
      • Bei echten Projekten tauscht man nicht einfach mal so das DB-Backend, ORM hin oder her
      • -
      • Padrino macht es auch nicht einfacher, gibt einem aber von Anfang die Info, dass es mehr -als ein gibt
      • -
    • -
    • Doku bei Rails sehr monolitisch, bei Padrino für jede Komponente eine eigene, unabhängige Doku
    • -
    • Der Austausch von ActiveRecord ist wegen ActiveModel sehr leicht geworden - -
        -
      • Sehr viele ORMs und Form-Helper nutzen sehr viel ActiveModel
      • -
    • -
    • Padrino benutzt ActiveSupport - -
        -
      • Allerdings sehr wenig by default
      • -
    • -
    • Zwischenfazit: Der Entwickler wird bei Padrino eher gezwungen sich mit Komponenten und Entscheidungen -kritisch zu beschäftigen
    • -
    • Padrino bietet besser dokumentierte APIs um Komponenten einzuschieben - -
        -
      • Rails 2 Zeiten - reden wir nicht drüber
      • -
      • Immer noch Altlasten, z.B.: viele Möglichkeiten aus dem Controller zu rendern
      • -
      • Rails ist einfach gute Konkurrenz ;-)
      • -
      • Rails ist schon ein sehr mächtiges Werkzeug
      • -
    • -
    • Als Rails-Entwickler kann man sich gut von Padrino inspirieren lassen
    • -
    • Basti ist beeindruckt vom Merb-Rails Merge (http://rubyonrails.org/merb)
    • -
    - -

    Software Engineering

    - -
      -
    • Bezug "How do we stop our Rails apps from being so horrible when they grow up?" (http://bit.ly/VFtzUI) - -
        -
      • Alles unter dem Controller ist für Dirk immer noch ein sehr schwieriges Thema
      • -
    • -
    • Kann Padrino da unterstützen? Durch Aufklärung? - -
        -
      • Bei Padrino ist der Tipp: Schnell raus aus dem Controller
      • -
      • Ein Webframework sollte vor allem den Web-Teil richtig machen
      • -
      • Bei allem danach hört die Unterstützung schnell auf
      • -
    • -
    • DCI (Data, context and interaction)
    • -
    • Flo arbeitet gerade einem Projekt mit Delegates ähnlich wie in Objective-C: Funktioniert super.
    • -
    • Dependency Injection ist eigentlich nur die richtigen Objekte an die richtige Stelle schieben - -
    • -
    • "Am Ende trennt sich bei diesen Themen einfach die Spreu vom Weizen" - -
        -
      • ActiveRecord führt einen aber vielleicht zu weit in einen falsche Richtung
      • -
      • Allerdings: Nie wieder ohne ORM
      • -
    • -
    • Anemic Domain Model von Martin Fowler (http://martinfowler.com/bliki/AnemicDomainModel.html) - -
    • -
    • Die Zwei Stacks von Rails (http://words.steveklabnik.com/rails-has-two-default-stacks) - -
    • -
    • Flo kennt das Rubyworks-Ökosystem - -
    • -
    • Semantic-Versioning at its best: https://github.com/sunaku/tork
    • -
    • Mit viel Liebe und Mühe sehr gute Libraries und die Masse verwendet es noch nichtmal - -
    • -
    • RSpec's Doku ist in Cucumber (https://www.relishapp.com/)
    • -
    • Dokumentation ist nicht trivial
    • -
    • Zed Shaw hat einmal gesagt, dass das Problem darin besteht, dass wir den Leuten beibringen müssen wie sie es entwicklen - -
        -
      • Die Technik ist da, das Lernen ist das Problem
      • -
      • Code-Review ist dafür gut
      • -
      • In guten Teams geht nichts einfach durch
      • -
      • Es geht dabei um Code, nicht um Kritik an der Person
      • -
    • -
    - -

    Tools

    - - - -

    Events

    - -
      -
    • Insider-Infos zur SIGINT (Nachtrag): - -
        -
      • Mehr Technik-Bezug incoming!
      • -
      • CFP soll ganz bald starten
      • -
    • -
    • eurucamp findet auch wieder 2013 statt: http://eurucamp.org/ (16. - 18. August 2013)
    • -
    -]]>
    - - - -
    - - - GST004 - Ich dachte C ist fertig - no - Dirk Breuer, Sebastian Cohnen - Mit Frank Celler (@fceller) über mruby - - GST004 - Tue, 05 Feb 2013 00:31:37 +0100 - 01:12:18 - Englische Übersetzung der japanischen News - von Daniel Bovensiepen (http://www.bovensiepen.net/) - * mgems sind quasi C-Libs - * Stdlib ist quasi nicht existent - * Core ist auch stark eingeschränkt (kein Bignum, keine Regexp, - keine Threads) - * Es gibt als mgem eine cURL-Lib (was für eine Datenbank die HTTP - spricht ganz sinnvoll ist) - * mruby ohne Threads macht vor allem für Datenbanken Sinn - * Ruby ist ein Standard: http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579 - * Inzwischen gehen auch `attr_accessor` und andere Introspection - Features - * mruby wird magischer ;-) - * Wo hat der Frank mruby überhaupt eingebettet? - * ArangoDB - http://www.arangodb.org/ - * Eine Open-Source Dokumentendatenbank - * Wofür bettet man eine Scriptsprache in eine Datenbank ein? - * Filtern von Ausgaben - * Implementierung von Triggern (statt PL/SQL - http://en.wikipedia.org/wiki/PL/SQL) - * Anreichern von Ausgaben - * Welche Scriptsprache nimmt man da: - * PHP trauen wir uns nicht - * JavaScript funktioniert mit V8 (https://code.google.com/p/v8/), wurde dann auch integriert - * Dokumentation ist grausam - * Sehr schnell, in C++ - * wenn man einen Fehler sucht, kann man nur aufgeben ;-) - * Arango ist in C/C++ geschrieben - * Haben sehr früh Zugang zum mruby Repo bekommen - * mruby lässt sich sehr leicht einbetten - * Dokumentation ist genauso schlecht wie die von V8 - * Man kommt aber noch zu Fuß durch den Code - * Probleme bei V8 war JavaScript-Prototypen in C++ Objekte abzubilden - * mruby wurde mit dem Gedanke entwickelt eingebettet zu werden, daher - sind entsprechende Hooks vorgesehen C-Strukturen in Ruby abzubilden - * V8 verwendet UTF-16, Arango verwendet UTF-8 - * mruby verwendet auch UTF-8 -> Overhead fällt weg - * Frank hat mit LLVM rum gespielt und hat aus mruby den Faktor 2-3 raus geholt - * Was noch viel für die Performance tun kann ist Method-Caching - * Momentan ist mruby noch Alpha-Status - * In der homebrew Version ist mruby drin - * Für Linux muss es per Hand gebaut werden - * Bei ArangoDB ist eine Shell für mruby dabei (siehe auch: http://qiezi.me/projects/mruby-web-irb/mruby.html) - * emscripten.org - * Die mruby Shell in ArangoDB ist analog zu der JavaScript Shell in - ArangoDB - * mruby hatte bis vor kurzem keine richtiges Makefile - * Daniel Bovensiepen hat dann ein CMake-File erstellt (http://cmake.org) - * Seit Dezember 2012 gibt es auch ein Rakefile - * War unter Windows vor der totale Krampf - * ArangoDB gibt es seit kurzem auch für Windows - * Probleme mit libev und ICU - * UTF-8 hat zwei Darstellung für Umlaute: den Umlaut und zwei Punkte + Buchstabe - * Basti hatte einmal sehr viel Freude mit case-insensitive und case-sensitive Systemen - * Macht auch Probleme bei Collation - * ICU macht das einfach für einen (http://site.icu-project.org/) - * Die Windows-Version von ArangoDB hat keinen mruby Support - * mruby targeted aber Windows - * Anekdote: Die C-Standards entwickeln sich im Jahrzehnt-Rhytmus - * VisualStudio ist bei ANSI-C Version '89 stehengeblieben - * Frank macht C schon seit 30 Jahren - * Hat für den TRS-80 ein Arcade-Spiel nachprogrammiert (http://en.wikipedia.org/wiki/TRS-80) - * Frank hat das Spiel auf einem TRS-80 Emulator für Linux widergefunden :-) - * "Magic Worm for Model I" (http://fosdem.graph-database.org/news/8, - http://www.retrocomputing.net/parts/r/radio/TRS80_4/docs/on2002.htm) - * Frank erinnert einen C Interpreter - * Wenn C dann lieber Objective-C, meint Frank - * Ist für Rubyisten noch eingängiger, vom mentalen Modell - * Basti hat auf dem letzten DevHouseFriday 'Ruby is Magic - Reflections' gezeigt (https://speakerdeck.com/railsbros_dirk/colognerb-reflections) - * Cocoa ist von oben bis unten voll mit Magic - * ArangoDB im MacApp-Store: https://itunes.apple.com/de/app/arangodb/id564723448?l=en&mt=12 - * War letztes Jahr unter den Top-10 für Dev-Tools - * Ohne mruby - * Ähnlich wie damals CouchDBX: http://janl.github.com/couchdbx/ - * Die JavaScript-Shell von ArangoDB läuft im Browser - * Die ArangoDB-Shell ist ein eigener Client und spricht mit dem Server über HTTP - * JavaScript-Console für den Browser: http://replit.github.com/jq-console/ - * http://stedolan.github.com/jq/ - * The JSON Query Language: http://www.jsoniq.org/ - * Ähnlich wie das was ArangoDB verwendet (unabhängig) - -### Events - - * NoSQL Matters: 25. - 27.4.2013 (http://2013.nosql-matters.org/cgn/) - * Early Bird Tickets schon verfügbar - * 25.4. ist Training Day - * Keynote: Martin Fowler - * Im KOMED in Köln - * Mit Hadoop-Track - * Und der Rest der bisher veröffentlichen Speaker ist nicht weniger hochkarätig - -BTW: Jan Lehnardt ist jetzt bei 'The Couch Firm' - http://thecouchfirm.com/]]> - Unser Gast ist heute: Frank Celler (@fceller, http://triagens.com)

    - -

    Synopsis: Heute geht es um mruby, C-Hacking und Bytecode-Compiler

    - -

    Errata

    - - - -

    Unser Gast

    - -
      -
    • Als Errata zu GST001, mruby ;-)
    • -
    • Frank ist kein Rubyist, sondern C-Hacker
    • -
    - -

    (M)Ruby

    - -
      -
    • Steht für Matz Minimal Embedded Ruby
    • -
    • Um irgendwo embedded zu werden - -
    • -
    • Redis (http://redis.io/) embedded zum Beispiel Lua (http://www.lua.org/) - -
        -
      • Da Lua irgendwie nicht so richtig für Programmierer ist, könnte -mruby hier eine Lücke schließen
      • -
    • -
    • Ruby 1.8 ist nicht dafür entworfen irgendwo eingebettet zu werden
    • -
    • mruby in a Nutshell - -
        -
      • Bytecode-Compiler (ähnlich wie YARV in Ruby 1.9)
      • -
      • Soll eine sehr, sehr kleine, überall lauffähige VM bieten -(Rite-VM)
      • -
      • Ein sehr kleiner Satz von Libraries - -
      • -
    • -
    • Wo hat der Frank mruby überhaupt eingebettet? - -
    • -
    • Wofür bettet man eine Scriptsprache in eine Datenbank ein? - -
        -
      • Filtern von Ausgaben
      • -
      • Implementierung von Triggern (statt PL/SQL - http://en.wikipedia.org/wiki/PL/SQL)
      • -
      • Anreichern von Ausgaben
      • -
      • Welche Scriptsprache nimmt man da: - -
          -
        • PHP trauen wir uns nicht
        • -
        • JavaScript funktioniert mit V8 (https://code.google.com/p/v8/), wurde dann auch integriert
        • -
        • Dokumentation ist grausam
        • -
        • Sehr schnell, in C++
        • -
        • wenn man einen Fehler sucht, kann man nur aufgeben ;-)
        • -
      • -
    • -
    • Arango ist in C/C++ geschrieben - -
        -
      • Haben sehr früh Zugang zum mruby Repo bekommen
      • -
    • -
    • mruby lässt sich sehr leicht einbetten
    • -
    • Dokumentation ist genauso schlecht wie die von V8 - -
        -
      • Man kommt aber noch zu Fuß durch den Code
      • -
    • -
    • Probleme bei V8 war JavaScript-Prototypen in C++ Objekte abzubilden
    • -
    • mruby wurde mit dem Gedanke entwickelt eingebettet zu werden, daher -sind entsprechende Hooks vorgesehen C-Strukturen in Ruby abzubilden
    • -
    • V8 verwendet UTF-16, Arango verwendet UTF-8
    • -
    • mruby verwendet auch UTF-8 -> Overhead fällt weg
    • -
    • Frank hat mit LLVM rum gespielt und hat aus mruby den Faktor 2-3 raus geholt
    • -
    • Was noch viel für die Performance tun kann ist Method-Caching
    • -
    • Momentan ist mruby noch Alpha-Status - -
        -
      • In der homebrew Version ist mruby drin
      • -
      • Für Linux muss es per Hand gebaut werden
      • -
    • -
    • Bei ArangoDB ist eine Shell für mruby dabei (siehe auch: http://qiezi.me/projects/mruby-web-irb/mruby.html)
    • -
    • emscripten.org
    • -
    • Die mruby Shell in ArangoDB ist analog zu der JavaScript Shell in -ArangoDB
    • -
    • mruby hatte bis vor kurzem keine richtiges Makefile - -
        -
      • Daniel Bovensiepen hat dann ein CMake-File erstellt (http://cmake.org)
      • -
      • Seit Dezember 2012 gibt es auch ein Rakefile
      • -
      • War unter Windows vor der totale Krampf
      • -
    • -
    • ArangoDB gibt es seit kurzem auch für Windows - -
        -
      • Probleme mit libev und ICU
      • -
    • -
    • UTF-8 hat zwei Darstellung für Umlaute: den Umlaut und zwei Punkte + Buchstabe
    • -
    • Basti hatte einmal sehr viel Freude mit case-insensitive und case-sensitive Systemen
    • -
    • Macht auch Probleme bei Collation
    • -
    • ICU macht das einfach für einen (http://site.icu-project.org/)
    • -
    • Die Windows-Version von ArangoDB hat keinen mruby Support
    • -
    • mruby targeted aber Windows
    • -
    • Anekdote: Die C-Standards entwickeln sich im Jahrzehnt-Rhytmus
    • -
    • VisualStudio ist bei ANSI-C Version '89 stehengeblieben
    • -
    • Frank macht C schon seit 30 Jahren - -
    • -
    • Frank erinnert einen C Interpreter
    • -
    • Wenn C dann lieber Objective-C, meint Frank
    • -
    • Ist für Rubyisten noch eingängiger, vom mentalen Modell
    • -
    • Basti hat auf dem letzten DevHouseFriday 'Ruby is Magic - Reflections' gezeigt (https://speakerdeck.com/railsbros_dirk/colognerb-reflections)
    • -
    • Cocoa ist von oben bis unten voll mit Magic
    • -
    • ArangoDB im MacApp-Store: https://itunes.apple.com/de/app/arangodb/id564723448?l=en&mt=12 - -
    • -
    • Die JavaScript-Shell von ArangoDB läuft im Browser
    • -
    • Die ArangoDB-Shell ist ein eigener Client und spricht mit dem Server über HTTP - -
    • -
    • http://stedolan.github.com/jq/
    • -
    • The JSON Query Language: http://www.jsoniq.org/ - -
        -
      • Ähnlich wie das was ArangoDB verwendet (unabhängig)
      • -
    • -
    - -

    Events

    - -
      -
    • NoSQL Matters: 25. - 27.4.2013 (http://2013.nosql-matters.org/cgn/) - -
        -
      • Early Bird Tickets schon verfügbar
      • -
      • 25.4. ist Training Day
      • -
      • Keynote: Martin Fowler
      • -
      • Im KOMED in Köln
      • -
      • Mit Hadoop-Track
      • -
      • Und der Rest der bisher veröffentlichen Speaker ist nicht weniger hochkarätig
      • -
    • -
    - -

    BTW: Jan Lehnardt ist jetzt bei 'The Couch Firm' - http://thecouchfirm.com/

    -]]>
    - - - -
    - - - GST005 - HistorieLöschenService - no - Dirk Breuer, Sebastian Cohnen - Mit Oliver Jucknath über Architektur, SOA, Continuous Deployment und Testing und die Cloud - - GST005 - Thu, 14 Feb 2013 15:07:49 +0100 - 01:26:34 - - Unser Gast ist heute: Oliver Jucknath (http://www.jubeco.de/)

    - -

    Synopsis: Heute geht es um (Software) Architektur, Testing, Agile -Entwicklung in großen Teams und SOA. Außerdem bietet unser Gast einige -interessante Einblicke in seine Erfahrung mit Großprojekten.

    - -

    Unser Gast

    - -
      -
    • Oliver ist Entwickler, SOA Evangelist, Architekt und Social Debugger
    • -
    • Angefangen zu programmieren mit 11, macht aktuell vor allem Java
    • -
    • lange Zeit Entwickler gewesen
    • -
    • mittlerweile mehr in Richtung Consulting
    • -
    • schreibt auch Computerspiele Service-orientiert
    • -
    - -

    Architektur

    - -
      -
    • Was ist Architektur? Auswahl von Tooling, Deployment, Performance, ...
    • -
    • Manchmal ist etwas neu entwickeltes weg werfen und neu machen eine sehr gute Idee
    • -
    • Explorative Architektur
    • -
    • Oliver hat einen sehr weiten Blick auf Architektur - -
        -
      • Architektur fängt bei der fachlichen Seite an
      • -
      • …und endet beim Entwickler
      • -
    • -
    • Oliver hat Konzerne mit Write-only Architekturen erlebt, wo ein -Architekt ein System baut, ohne wirkliches Feedback zu bekommen
    • -
    • Oliver's kleinstes Projekt: nur er selber – das größte 2000 Entwickler
    • -
    • Erste Grundregel des Consultings: "Arbeite nicht für einen dummen Chef"
    • -
    • Task Force: Projektarbeit unter extremen Umständen. Weit über Time & Budget. Projektrettung.
    • -
    • Der Übergang von Architekturaufgaben zum Entwicklungsprozess sind teilweise fließend
    • -
    - -

    Agile Entwicklung

    - -
      -
    • Agile Entwicklung zielt darauf ab, immer wieder lauffähige -Zwischenergebnisse zu erzielen
    • -
    • Lieber eine Woche in die falsche, dann zwei Wochen in die fast -richtige und dann in die richtige Richtung laufen
    • -
    • Clean HEAD, Dirty HEAD - -
        -
      • Lieber Clean HEAD, nur in Ausnahmesituationen Dirty HEAD
      • -
    • -
    - -

    Continuous Deployment und Testing

    - -
      -
    • Continuous Deployment ist für viele der heilige Gral
    • -
    • Continuous Deployment erfordert zwingend kontinuierliches Testen
    • -
    • Oliver: "Testen ist Teil der Architektur"
    • -
    • Durch zu vieles (Unit) Testen, kann die Agilität abnehmen (viele -Tests für einen kleinen Change)
    • -
    • Oliver bevorzugt mittlerweile Application Level Testing (z.B. mit jmeter)
    • -
    • Entwickler sind häufig keine guten Tester (falsche Perspektive)
    • -
    • Ab Teams mit sieben Entwicklern, würde Oliver gerne einen Tester dabei haben
    • -
    • In großen Unternehmen, haben Entwickler keinen Einblick in -Produktionsdaten und können somit nicht immer verstehen, was die -Benutzer brauchen.
    • -
    • Olivers Debugging Abenteuer: Es gab bei einem großen deutschen Telco mal ein Handy für 87 Fragezeichen
    • -
    • Testing auf einer pre-Stage Umgebung (siehe Continuous Deployment)
    • -
    • Optionale Service Parameter und Featureflags (Loose Coupling)
    • -
    • Continuous Deployment (CD) ist richtig teuer: - -
        -
      • gute Entwickler
      • -
      • vernünftiges Projektmanagement
      • -
      • Pre-Stage Hardware
      • -
    • -
    • Wo lohnt sich CD? - -
        -
      • Handelsplattformen, Banken, die sich schnell auf Situationen -einstellen müssen
      • -
    • -
    • Bei kleinen Projekten: CI und CD machbarer
    • -
    • Man will aber in jedem Fall Metriken haben, das ist (natürlich) auch -ein Thema für die Architektur
    • -
    - -

    SOA: Service-oriented Architecture

    - -
      -
    • Oliver: Der Sprung zur SOA ist wie der Sprung zur Objekt-orientierten Programmierung
    • -
    • Änderungen an einem System über fünf Jahre bei einer großen Telco - -
        -
      • GUI: extrem viele Änderungen, sehr variabel
      • -
      • Datenbank: ebenfalls nicht sehr stabil
      • -
      • Services: sind am stabilsten
      • -
    • -
    • Was ist ein Service?
    • -
    • Ein Service ist eine Schnittstelle zu einer fachlichen (selten -technisch) Funktionalität, die unabhängig von der Implementierung ist
    • -
    • Service Anti-Pattern: Ein Service, der eine OO-Schnittstelle, exportiert.
    • -
    • Ein Service muss die Fachlichkeit beschreiben, dass können am besten -Leute aus der Fachseite
    • -
    • Entwickler passen sich besser an die "komischen" fachlichen Services -an, als die Fachseite an die Services, die Entwickler definieren -würden.
    • -
    • Services sind NICHT Objekt-orientiert!
    • -
    • Reusability ist keine gute Idee für Services, mehrfache Verwendung -durch verschiedene Kanäle ist hingegen eine gute Idee
    • -
    • "Menschen denken nicht Objekt-orientiert"
    • -
    • Services sind leichtgewichtig, man kann sie einfacher ändern, oder -neue, parallel zu bestehenden einführen
    • -
    • Noch ein Anti-Pattern: "Do what I mean Service", bestehend aus einem -String "XML in" und Return-Wert "XML out"
    • -
    • Services sollen wohl definiert sein
    • -
    • Ein Service-Bus ist ein zentrales Medium, welches benutzt wird, um als -Servicenutzer einen Service aufzurufen.
    • -
    • Ein Bus kann auf fachlicher Ebene beobachtet werden, denn auf dem -Bus werden Fachliche Dinge versendet
    • -
    • Vor SOA war EAI (http://en.wikipedia.org/wiki/Enterprise_application_integration)
    • -
    • SOA Architekturen haben eine bessere Performance als andere Architekturen
    • -
    • Mit CRUD fährt man SOA mit richtiger Wonne gegen die Wand
    • -
    • Und CRUD ist der Tot jeder Performance
    • -
    • Der (nächste) heilige Gral: Modellierung von Prozessen
    • -
    • Wechsel im Medium sind ein Problem: Anmeldung via Webseite, Support via Telefon
    • -
    • Was man will: Eine Business Process Engine (im Prinzip eine große State Machine)
    • -
    • Ein Prozess mit persistiert werden können
    • -
    • Eine SOA in Kombination mit einer Process Engine erlaubt es sehr -gute Beobachtungen und Aussagen über Systeme und Geschäftsabläufe zu treffen
    • -
    - -

    Die Cloud

    - -
      -
    • Die Cloud ist interessant für Architekten
    • -
    • …hat aber auch eigene Schwierigkeiten: z.B. anvertrauen von Daten
    • -
    • Cloud ist hervorragend um (hoch) parallel und mit hoher Verfügbarkeit zu arbeiten
    • -
    • …setzt aber viel Knowhow im Bereich Kryptographie voraus
    • -
    • Oliver würde User Authentifizierung nicht in der Cloud machen
    • -
    • Warum will man in die Cloud? - -
        -
      • Geringere Kosten
      • -
      • Hohe Verfügbarkeit
      • -
      • Hohe Sicherheit
      • -
    • -
    • Oliver meint, dass hohe Verfügbarkeit ist kein wirkliches Argument -für die Cloud ist, weil heutige Hardware ohnehin sehr gut ist
    • -
    • 90% der Downtimes sind Security Relevant, der Rest ist meist ein Fehler von Entwicklern
    • -
    • Daher hauptsächlicher Grund für Downtimes: Security
    • -
    • Pro Cloud: Anonymous Angriff auf Amazon, gemerkt hat Amazon aber kaum was
    • -
    - -

    Olivers kleine Geschichte zu Open Source

    - -
      -
    • Kleine Firma und StartUps: Open Source, yeah!
    • -
    • Dann wird es ernst und die Firma seriös: Wir können uns Oracle leisten!
    • -
    • Dann will man aber five-nines Uptime haben… das geht nur noch mit -Open Source, weil man ggf. selber Dinge patchen muss
    • -
    • Weil: Stecker ziehen ist schlecht für die Uptime
    • -
    • Unterm Strich will man alle Systeme, die an der Front stehen, in Open -Source haben
    • -
    -]]>
    - - - -
    - - - GST006 - Heute machen, morgen Legacy - no - Dirk Breuer, Sebastian Cohnen - Mit Lucas Dohmen (@moonbeamlabs) vor allem über ArangoDB - - GST006 - Tue, 19 Feb 2013 23:27:37 +0100 - 01:28:07 - Rubyracer (V8) -> emscripted-ruby -> Ruby (https://github.com/cantino/ruby_on_ruby) - * Yanked Gems sind doof :-) (net-scp, net-ssh-gateway, newrelic) - -### Technical Dept (00:55:10) - - * Technical Dept: http://tech.groups.yahoo.com/group/scrumdevelopment/message/55626 - * Don't do it. - * When we do it, figure out why and stop. - * When we do it, **leave it alone** if it's not in the way. - * If it is in the way, clean up the parts we pass through. - -### Erlang on XEN aka geiler Scheiß (01:08:35) - - * Erlang on XEN: http://zerg.erlangonxen.org/ - * Startet im Kontext eines Requests eine komplette Erlang VM inkl. Applikation - -### Tools (01:11:40) - - * Record your Terminal: http://ascii.io/ - * Boxen: http://boxen.github.com/ - * Für Chef: https://github.com/pivotal/pivotal_workstation - * Vim Autocompletion (wenn Lucas schon da ist ^^) - * Aktuell verwenden Lucas und Dirk “YouCompleteMe”: https://github.com/Valloric/YouCompleteMe. Gefällt uns nicht so gut, aber sehr zu empfehlen wenn man C-* programmiert - * Alternative: https://github.com/Shougo/neocomplcache - * Oder einfach ohne extra Plugin ;-) - -### Events (01:20:20) - - * Railsgirls Rheinland ist in knapp 2 Wochen (http://www.nerdhub.de/events/260-rails-girls-rheinland/dates/1756) - * Railsgirls Followup am Donnerstag bei Intro (http://www.nerdhub.de/events/115-rails-girls-cologne/dates/1571) - * cologne.rb am Mittwoch bei adcloud (http://www.nerdhub.de/events/40-cologne-rb/dates/843) - * cologne.js in der neuen Bottfabrik! (http://www.nerdhub.de/events/3-cologne-js/dates/1597) - -### Offtopic (01:25:40) - - * Die Nifty Drives (http://theniftyminidrive.com/) von Basti und Dirk sind endlich da - * Das von Dirk leider aber doch nur in Silber (statt Pink) - * XKCD Style Comics in HTML: http://cmx.io/edit/]]> - Synopsis: Heute geht es um ArangoDB und wie man einen coolen low-level Client für eine Datenbank baut, Mutation Testing, -Ruby/Rails Security und anderen geilen Scheiß.

    - -

    Gast (00:00:40)

    - - - -

    ArangoDB & Ashikawa (00:01:40)

    - - - -

    Testing Ruby (00:19:50)

    - -
      -
    • Seattle.rb (http://ruby.sadi.st/Ruby_Sadist.html NSFW) - -
        -
      • Projekte wie flog, flay, heckle
      • -
    • -
    • Am Anfang war die Code-to-Test-Ratio das Maß aller Dinge
    • -
    • Dann kam die Code Coverage (http://en.wikipedia.org/wiki/Code_coverage)
    • -
    • Code Coverage ist seit Ruby 1.9 sehr einfach zu messen
    • -
    • Wir haben uns darauf geeinigt, dass 100% Code Coverage in Core-Bibliotheken erstrebenswert ist, in Anwendungen nicht mehr
    • -
    • Beide Metriken sagen aber nichts über die absolute Qualität von Tests aus
    • -
    • Wenn 100% Code Coverage erreichen sehr schwierig ist, dann ist das ein Code-Smell
    • -
    • Code Metrics as a Service: Code Climate (https://codeclimate.com/)
    • -
    • Enter Mutation Testing… - -
    • -
    • Lucas will auch Mutation Testing in ashikawa-core machen
    • -
    • mutant läuft am besten unter Rubinius
    • -
    • https://github.com/burke/zeus - -
        -
      • pre-loaded Rails environment
      • -
      • ähnlich zu spork, aber intelligenter, wenn es um reloading geht
      • -
    • -
    - -

    Ruby/Rails Security (00:39:00)

    - - - -

    Ruby (00:48:50)

    - - - -

    Technical Dept (00:55:10)

    - - - -

    Erlang on XEN aka geiler Scheiß (01:08:35)

    - - - -

    Tools (01:11:40)

    - - - -

    Events (01:20:20)

    - - - -

    Offtopic (01:25:40)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST007 - Provisionieren mit Bash - no - Dirk Breuer, Sebastian Cohnen - Mit Klaus Zanders (@klaustopher) - - GST007 - Sat, 09 Mar 2013 18:40:28 +0100 - 01:40:10 - - Synopsis: Heute zu Gast ist Klaus (@klaustopher) und wir reden viel -über Ruby 2.0, die aktuellen Rails Release Candidates, Config-Formate -und Threading in Ruby. Das -ganze wird diesmal abgerundet mit einem Ausflug in die Frontend-Welt und -ein Besuch bei DevOps.

    - -

    Unser Gast (00:01:25)

    - -
      -
    • Klaus Zanders (@klaustopher)
    • -
    • www.putpat.tv
    • -
    • Hat bei IBM studiert
    • -
    • War dann bei Microsoft
    • -
    • Zwischendurch bei einer Versicherung
    • -
    • Nun darf er endlich Ruby machen \o/
    • -
    - -

    In eigener Sache (00:04:35)

    - -
      -
    • Wir haben Hörer in Polen!! https://shellycloud.com/
    • -
    • Es gibt Leute, die an gst-kitchen interessiert sind yeah :)
    • -
    • Wir haben jetzt auch Kapitelmarken
    • -
    • Unsere Webseite hat jetzt den Podlove-Webplayer
    • -
    • opus ist auf dem Weg
    • -
    - -

    Ruby 2.0 (00:09:00)

    - - - -

    Refinements (00:20:31)

    - - - -

    Rails (00:26:57)

    - - - -

    TOML, Performance, SOA und Threads (00:28:40)

    - - - -

    RegExp debugging, 1M Connections mit Ruby (00:47:50)

    - - - -

    FlatUI, ember.js & The end of Browser Wars? (01:02:00)

    - - - -

    Self-Plug: Homeoffice Cologne (01:18:23)

    - - - -

    DevOps: Chef (01:21:33)

    - - - -

    Misc (01:32:21)

    - - - -

    Musikkonsum (01:35:30)

    - -
      -
    • Spotify ja oder nein?
    • -
    • Musik via Podcast (im elektronischen Bereich jedenfalls)
    • -
    - -

    Events (01:38:50)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST008 - Rake auf Drogen - no - Dirk Breuer, Sebastian Cohnen - Mit Lucas Dohmen (@moonbeamlabs) über Ruby, JRuby, DevOps und anderen spannenden Dingen - - GST008 - Wed, 20 Mar 2013 17:49:40 +0100 - 01:30:32 - - Synopsis: Heute ist der Lucas (@moonbeamlabs) mal wieder zu Besuch und wir haben über Serialisierung in Ruby, Thor und JRuby gesprochen. Es gibt auch mal wieder was aus der DevOps-Ecke, namentlich Vagrant und VMware und Gem-Hosting. Natürlich haben wir uns auch nicht nehmen lassen, über das Ende von Google Reader zu philosophieren und den GitHub Enterprise Faux Pa zu erwähnen. Zum Ende erzählt Lucas noch etwas zu seinem Dotfiles Installationsskript.

    - -

    Intro / Errata (00:00:00)

    - - - -

    Ruby (00:06:27)

    - - - -

    JRuby (00:28:06)

    - - - -

    DevOps (00:43:10)

    - - - -

    Netzklatsch (00:58:04)

    - - - -

    Cool Stuff (01:17:50)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - -
    - - - GST009 - Zweites Rack rechts - no - Dirk Breuer, Sebastian Cohnen - Mit @bascht und sehr DevOps lastig: Deployment Strategien, Chef und VPNs - - GST009 - Tue, 26 Mar 2013 13:50:35 +0100 - 01:19:48 - Wenn man mal irgendwo ist wo es man nicht weiß was man für - Internet bekommt. - * Aktueller Favorit ist BlackVPN: https://www.blackvpn.com/services/ - * Einwurf: 30C3 Sneak Preview: https://alpha.app.net/evelyn/post/4178558 - -### Cool Stuff™ (00:55:30) - - * CSS-style JSON Selektoren: http://jsonselect.org/ - * http://goessner.net/articles/JsonPath/ - * Window Manager für OS X: https://github.com/jigish/slate - * Window Manager für Linux (in Ruby gebaut): http://subforge.org/projects/subtle - * https://github.com/aziz/tmuxinator (gefunden über Lucas dotfiles) - -### Vermischtes (01:14:31) - - * http://flattr.kejsarmakten.se/github/ -> Flattr Button bei GitHub - * https://www.gittip.com/ - * Sublime statt Vim: - http://delvarworld.github.com/blog/2013/03/16/just-use-sublime-text/ - * Haben uns sagen lassen, dass RubyMine total geil sein soll - (zumindest als Editor / Browser): http://www.jetbrains.com/ruby/]]> - Synopsis: Zur 9ten Ausgabe hat sich der gute @bascht wieder zu uns auf -das Sofa gesetzt. Wie sollte es anders sein, reden wir relativ viel über -DevOps Themen. Neben Deploymentstrategien geht es dabei um Best -Practices mit Chef und VPNs. Zum Ende gibt es wieder neues aus der -Rubrik Cool Stuff™. Auf Grund knapper Vorbereitung ist die Folge diesmal -wieder etwas kürzer geraten.

    - -

    Intro (00:00:00)

    - -
      -
    • Ruby 2.0 Walkthrough von Peter Cooper fertig. Backer haben schon -Zugriff, wird also wohl demnächst kommen.
    • -
    - -

    Rails (00:01:46)

    - - - -

    Deployment-Strategien (00:06:52)

    - - - -

    Arbeiten mit Chef (00:24:15)

    - - - -

    VPN (00:42:26)

    - - - -

    Cool Stuff™ (00:55:30)

    - - - -

    Vermischtes (01:14:31)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - -
    - - - GST010 - Dackelklub - no - Dirk Breuer, Sebastian Cohnen - Mit Liane Thönnes (liane_thoennes) über das Leben und Arbeiten einer Designerin unter Entwicklern - - GST010 - Tue, 02 Apr 2013 22:01:30 +0200 - 01:07:40 - - Synopsis: Wir sprechen zur 10. Sendung mit Liane (@liane_thoennes) über -das Leben und Arbeiten einer Designerin unter Entwicklern. Wir reden -über Werkzeuge, Prozesse und das allgemeine Miteinander. CoolStuff™ darf -natürlich auch nicht fehlen.

    - -

    Intro & Gast (00:00:00)

    - - - -

    (Web-)Design (00:02:59)

    - - - -

    Coworking (00:43:15)

    - -
      -
    • Liane erzählt etwas zum Gasmotorenfabrik e.V.
    • -
    • Es herrscht Uneinigkeit, was den Namen anbelangt
    • -
    • Neue Location des Cowoco: An der Bottmühle 5, 50678 Köln
    • -
    • Der Name ist noch so ein Problem :)
    • -
    - -

    CoolStuff™ (00:52:56)

    - - - -

    Verschiedenes (00:57:15)

    - - -]]>
    - - - - - - - - - - - - - - - - - -
    - - - GST011 - Unsatisfied Computers - no - Dirk Breuer, Sebastian Cohnen - Ein Geekstammtisch Classic, mit ohne Gast über OO Design, Code Metriken und und und… - - GST011 - Mon, 15 Apr 2013 10:42:36 +0200 - 01:22:32 - - Synopsis: Heute ein Geekstammtisch Classic, mit ohne Gast. Wir reden -über Regeln für gutes OO-Design, Code Metriken, schlechte Angewohnheiten -von Entwicklern, Cool Stuff und etwas über git. Zur Auflockerung -philosophieren wir gegen Ende noch etwas über den PC Markt.

    - -

    Errata (00:00:45)

    - -
      -
    • Liane organisiert natürlich Railsgirls und arbeitet für Railslove. Da kommt man schon mal durcheinander :)
    • -
    • Matthias @luebken machte uns aufmerksam auf “Lean UX”: https://twitter.com/luebken/status/321933241936384000
    • -
    • Kuchi Paku Freisprecheinrichtung funktioniert nicht wie im Video, trotzdem lustig
    • -
    - -

    Podcasting (00:04:35)

    - -
      -
    • Geekstammtisch nun mit flattr!
    • -
    • Wir sind bei der Hörsuppe gefeaturet worden: hoersuppe.de
    • -
    • Neues Produkt aus dem Kölner Podcasting Cluster: nerdkun.de mit @bitboxer, @klaustoper, @moonbeamlabs und @l_ama (produziert im HOC und mit gst-kitchen)
    • -
    - -

    Ruby (00:08:23)

    - - - -

    Gems (00:32:15)

    - - - -

    CoolStuff™ (00:37:31)

    - - - -

    Verschiedenes: iOS, git, Google blink (00:49:25)

    - - - -

    Meta(ebene) (01:00:20)

    - - - -

    Events (01:14:40)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST013 - NoSQL Matters 2013 - no - Dirk Breuer, Sebastian Cohnen - Berichterstattung von der NoSQL Matters 2013 - - GST013 - Wed, 01 May 2013 20:40:24 +0200 - 01:38:47 - Die Anwendungsbereiche sind sehr viel größer (z.B. Lucene als sehr schnelle Hashmap zu nutzen) - * elasticsearch ist durch sein append-only Ansatz extrem auf schnelles Schreiben optimiert und begünstigt zudem den Einsatz von SSDs - * Lucene 4 ist seit Oktober 2012 draußen mit massiven Verbesserungen bei der Performance und den Datenstrukturen - -### Roland Gude von YOOCHOOSE (00:51:10) - - * Roland (@rjtg_) arbeitet bei YOOCHOOSE in Köln (http://http://www.yoochoose.com/) - * Baut ein Empfehlungssystem (z.B. für Shops) - * Beschäftigt sich dabei vor allem mit den Fragen rund um "Big Data" (Was? Wie?) - * Eingesetzt wird Cassandra (http://cassandra.apache.org/), Hadoop (für Research), Spark (http://spark-project.org/) - * Roland fand Seans Vortrag zu konvergierenden Datenstrukturen sehr gut: http://2013.nosql-matters.org/cgn/abstracts/#abstract_sean_cribbs - * Ebenfalls der Vortrag von Mahesh Paolini-Subramanya (@dieswaytoofast) http://2013.nosql-matters.org/cgn/abstracts/#abstract_mahesh_paolini-subramanya - * Bei der Frage, "Ease of Development oder Big Data" findet Roland, dass die Einfachheit der Entwicklung keine große Rolle spielt. Er sieht eher den Vorteil beim Betrieb von NoSQL Datenbanken. - * YOOCHOOSE verwendet Asgard, das AWS Deployment und Management Tool von Netflix https://github.com/Netflix/asgard - * Cassandra ist bei YOOCHOOSE ist noch nicht vollständig automatisiert, was den Betrieb angeht. Es wird aber dran gearbeitet. - -### Waldemar Schwan von Adcloud (01:04:59) - - * Waldemar (@Velrok) arbeitet bei Adcloud - * Im Moment arbeitet er an seiner Masterarbeit zum Thema Empfehlungssysteme - * Beschäftigt sich mit Hadoop und kümmert u.a. sich um Hive - * Fand, wie jeder bisher, die Keynote sehr gut - * Sehr spannend fand er auch den Vortrag von Michael Hausenblas (@mhausenblas) zu Apache Drill (http://incubator.apache.org/drill/): http://2013.nosql-matters.org/cgn/abstracts/#abstract_michael_hausenblas - * Gekocht wird mit (heißem?) Wasser - * Waldemar wird einen Clojure Workshop am 22.05.2013 ab 16:30 bei adcloud geben: http://dev.adcloud.com/blog/2013/04/19/clojure-introduction-workshop/ - -### Sean Cribbs von basho (01:15:18) - - * Weltpremiere beim Geekstammtisch: Englisch :) - * Sean (@seancribbs) ist Entwickler bei @basho ("Makers of Riak") - * Basho ist ein verteiltes Unternehmen und Sean verrät ein paar Geheimnisse, warum das so gut funktioniert und worauf man achten muss - * Vertrauen in Mitarbeiter - * Hochmotivierte Mitarbeiter - * Verschiedene Kommunikationskanäle (z.B. HipChat, Skype, mumble, gotomeeting.com, E-Mail, yammer, ...) - * man muss **viel** kommunikativer sein, wenn man verteilt arbeitet - * Insgesamt bleibt zu sagen die Kultur eines Unternehmens bestimmt die Technologie - * An der NoSQL Matters gefällt Sean vor allem, dass so viele verschiedene Sichtweisen zusammenkommen und wie Leute NoSQL Systeme konkret einsetzen für ihre Produkte - * Er sieht einen beginnenden Reifeprozess im Bereich der NoSQL Datenbanken - * Es gibt weniger Angst bei Unternehmen vor NoSQL Systemen und die Akzeptanz steigt - * Sean interessiert sich sehr - * Probleme von verteilten Systemen - * eine "strongly consistent" Alternative zu Riak - * In seinem Vortrag (http://2013.nosql-matters.org/cgn/abstracts/#abstract_sean_cribbs) spricht er über konvergierende Datenstrukturen - * Es gibt eine gewisse Angst vor eventual consistency aus Unverständnis - * Wir reden über Fehlannahmen, was Konsistenzverhalten verschiedene Systeme anbelangt - -### Gereon Steffens von Finanzen100 (01:25:03) - - * Gereon (@gereons) arbeitet Finanzen100, die Finanzinformationssysteme herstellen - * NoSQL spielt noch keine richtig große Rolle bei Finanzen100 - * Erste Gehversuche mit Redis (inspiriert durch http://tisba.de/2012/06/28/nosql-not-only-a-fairy-tale/) - * Riak hat Gereon auch auf dem Radar und nutzt die Gelegenheit auf der Konferenz sich auszutauschen - * Redis wurde als Spielprojekt eingesetzt um einen URL Shortner zu bauen - * Und demnächst dann zum Aufbau von Watchlisten - * Angeschaut hat sich recht viel :) - * Der Trend bei Finanzen100 geht weg von Web und hin zu Apps - * Wir schweifen etwas ab und Reden über iOS Apps, iAd und Vor- und Nachteile von nativen und nicht-nativen Apps - * Weiterhin reden wir über Finanzen100s Transition von Webanwendung hin zu nativen Apps]]> - Synopsis: Wir waren auf der NoSQL Matters 2013 in Köln (@nosqlmatters). Das ist jedoch keine Retrospektive in unserem Studio, sondern wir haben unser Equipment in den Mediapark Köln getragen und mit Teilnehmern und Speakern direkt vor Ort kurze Gespräche über die Konferenz, NoSQL und was sie technologisch bewegt geführt. Ergebnis ist die vorliegende Ausgabe vom Geekstammtisch. Wir hoffen euch gefällt dieses Experiment und ihr stört euch nicht zu sehr an der eingeschränkten Audioqualität.

    - -

    Gesprächspartner

    - - - -

    Begrüßung (00:00:00)

    - -
      -
    • Wir erklären worum es bei der Ausgabe geht und schwärmen von Martin Fowlers (http://martinfowler.com) Keynote ;-) - -
        -
      • Hat ein Buch zu dem Thema: http://martinfowler.com/books/nosql.html
      • -
      • 'NoSQL' hat eigentlich keine Bedeutung und war nur ein Twitter-Hashtag
      • -
      • Polyglot-Persistence als zentrales Stichwort: "Weg von der einen großen Datenbank"
      • -
      • Zwei treibende Faktoren hinter der Entscheidung für NoSQL: - -
          -
        • Entwicklungsgeschwindigkeit
        • -
        • "Big Data"
        • -
      • -
      • Durch das Aufkommen von SOA fällt die Datenbank als Integrationspunkt weg
      • -
    • -
    • Definitive Aufforderung sich die Videos zu den Talks anzusehen ;-)
    • -
    - -

    Martin Otten von Adcloud (00:10:34)

    - -
      -
    • Martin (@Mobbit) arbeitet bei Adcloud in Köln
    • -
    • Verwendung von unterschiedlichen Datenbanksystemen
    • -
    • Martin würde auch S3 als "Datenbank" bezeichnen
    • -
    • CouchDB ist super leicht an den Start zu bringen
    • -
    • Basti weißt darauf hin, dass man grundsätzlich das System so einsetzen soll, dass es seine Stärken ausspielen kann
    • -
    • Relationale Datenbanken sind auch dort noch nicht raus
    • -
    - -

    Lucas Dohmen von triAGENS (00:16:01)

    - -
      -
    • @moonbeamlabs war Teil der Orga und ist Teil des ArangoDB Core-Teams
    • -
    • Talks werden als Videos bereitgestellt
    • -
    • Die meisten Leute auf der Konferenz nutzen NoSQL Datenbanken und Gespräche werden über konkrete Probleme im Einsatz geführt
    • -
    • Lucas hat auch einen Talk über ArangoDB Foxx gehalten (http://www.arangodb.org/2013/03/29/foxx-a-lightweight-javascript-application-framework-for-arangodb) - -
    • -
    • Lucas geht viel auf Konferenzen, weil sie machen Spaß und die Gespräche sind gut
    • -
    • Lucas hat den Eindruck, dass die meisten bereits NoSQL Datenbanken einsetzen
    • -
    • Viele setzen wohl viele Datenbanken ein, dass macht es zwar komplexer, aber bei großen Datenmengen hat man eh komplexe Systeme
    • -
    • ArangoDB als allgemeine Datenbank vereint dokumentenbasierte wie graphbasierte Konzepte, was die Komplexität wieder reduzieren kann
    • -
    - -

    Sebastian Röbke und Stefan Kaes von Xing (00:25:04)

    - -
      -
    • Sebastian (@boosty) und Stefan sind im Architektur-Team von Xing tätig
    • -
    • Evaluieren neue Technologie, entwickeln Prototypen und beraten die übrigen Teams
    • -
    • Setzen unterschiedliche Datenbanken wie RabbitMQ, Riak und Redis ein
    • -
    • Xing hat etwa 150 Engineers inkl. QA
    • -
    • Inhalt des Talks - -
        -
      • Migration von SQL zu einem Riak-basierten System
      • -
      • Fokus auf die Migration
      • -
    • -
    • Weitere Technologien im Einsatz: - -
        -
      • Memcache, Redis, MongoDB, Neo4J, elasticsearch
      • -
    • -
    • Für die Zukunft liegt der Fokus auf Optimierung der eingesetzen Technologien. Dabei werden Anwendungen auch schon mal wieder zurück auf MySQL geschoben
    • -
    • Ziel ist die optimale Lösung für ein Problem zu finden
    • -
    - -

    Frank Celler und Martin Schönert von triAGENS (00:31:25)

    - -
      -
    • Martin (@mschoenert) arbeitet derzeit vor allem als Software-Architekt bei triAGENS
    • -
    • Frank (@fceller) ist vor allem als Orga hier und kommt so langsam zur Ruhe :-)
    • -
    • Martin hält einen Talk über das CAP-Theorem (http://en.wikipedia.org/wiki/CAP_theorem) und dessen Einfluss vor allem auf große Systeme
    • -
    • Der Talk ist dabei unabhängig von konkreten Datenbankimplementationen
    • -
    • Für Frank ist das ganze eher eine Bewegung mit fast ausschließlich Open Source Vertretern
    • -
    • Es wird nicht der eine Produktkatalog abgearbeitet, sondern vielmehr findet ein reger Austausch über die unterschiedlichen Einsatzgebiete von Systemen statt
    • -
    • Für Martin geht es bei der Konferenz vor allem um den Austausch von Erfahrungen bei der Auswahl von Systemen
    • -
    • NoSQL werden aus Martins Sicht viel stärker als Bausteine gesehen um spezielle Probleme lösen zu können
    • -
    • Weg von monolithischen zu komponentenbasierten Systemen
    • -
    • Frank freut sich, dass wir da sind :-)
    • -
    - -

    Simon Willnauer von elasticsearch (00:39:11)

    - -
      -
    • Simon (@s1m0nw) ist seit 2006 am Apache Lucene Projekt beteiligt (http://lucene.apache.org/core/)
    • -
    • Mit-Gründer von Elasticsearch Inc. (http://www.elasticsearch.com/) der Firma hinter elasticsearch
    • -
    • Organisiert die Berlin Buzzwords Konferenz (http://berlinbuzzwords.de/)
    • -
    • Er ist wirklich beeindruckt von der Konferenz und der Organisation
    • -
    • Simons Talk war ein Einsteiger-Talk ohne Slides (https://github.com/s1monw/hammertime)
    • -
    • Demo, die in Echtzeit alle wesentlichen Eigenschaften von elasticsearch zeigt
    • -
    • Wir sind uns alle einig, dass Live-Demos immer eine gute Alternative sind und vor allem authentisch rüberkommen
    • -
    • Was hat eigentlich mit elasticsearch mit NoSQL zu tun? - -
        -
      • "Everything is a search"
      • -
      • Simon macht mit Lucene NoSQL seit 2001
      • -
      • Neo4J verwendet Lucene unter der Haube
      • -
      • Lucene ist ein sehr performanter Key-Value-Store
      • -
      • "Ich brauche keine Volltextsuche, ich brauch kein elasticsearch" -> Die Anwendungsbereiche sind sehr viel größer (z.B. Lucene als sehr schnelle Hashmap zu nutzen)
      • -
    • -
    • elasticsearch ist durch sein append-only Ansatz extrem auf schnelles Schreiben optimiert und begünstigt zudem den Einsatz von SSDs
    • -
    • Lucene 4 ist seit Oktober 2012 draußen mit massiven Verbesserungen bei der Performance und den Datenstrukturen
    • -
    - -

    Roland Gude von YOOCHOOSE (00:51:10)

    - - - -

    Waldemar Schwan von Adcloud (01:04:59)

    - - - -

    Sean Cribbs von basho (01:15:18)

    - -
      -
    • Weltpremiere beim Geekstammtisch: Englisch :)
    • -
    • Sean (@seancribbs) ist Entwickler bei @basho ("Makers of Riak")
    • -
    • Basho ist ein verteiltes Unternehmen und Sean verrät ein paar Geheimnisse, warum das so gut funktioniert und worauf man achten muss - -
        -
      • Vertrauen in Mitarbeiter
      • -
      • Hochmotivierte Mitarbeiter
      • -
      • Verschiedene Kommunikationskanäle (z.B. HipChat, Skype, mumble, gotomeeting.com, E-Mail, yammer, ...)
      • -
      • man muss viel kommunikativer sein, wenn man verteilt arbeitet
      • -
    • -
    • Insgesamt bleibt zu sagen die Kultur eines Unternehmens bestimmt die Technologie
    • -
    • An der NoSQL Matters gefällt Sean vor allem, dass so viele verschiedene Sichtweisen zusammenkommen und wie Leute NoSQL Systeme konkret einsetzen für ihre Produkte
    • -
    • Er sieht einen beginnenden Reifeprozess im Bereich der NoSQL Datenbanken
    • -
    • Es gibt weniger Angst bei Unternehmen vor NoSQL Systemen und die Akzeptanz steigt
    • -
    • Sean interessiert sich sehr - -
        -
      • Probleme von verteilten Systemen
      • -
      • eine "strongly consistent" Alternative zu Riak
      • -
    • -
    • In seinem Vortrag (http://2013.nosql-matters.org/cgn/abstracts/#abstract_sean_cribbs) spricht er über konvergierende Datenstrukturen
    • -
    • Es gibt eine gewisse Angst vor eventual consistency aus Unverständnis
    • -
    • Wir reden über Fehlannahmen, was Konsistenzverhalten verschiedene Systeme anbelangt
    • -
    - -

    Gereon Steffens von Finanzen100 (01:25:03)

    - -
      -
    • Gereon (@gereons) arbeitet Finanzen100, die Finanzinformationssysteme herstellen
    • -
    • NoSQL spielt noch keine richtig große Rolle bei Finanzen100
    • -
    • Erste Gehversuche mit Redis (inspiriert durch http://tisba.de/2012/06/28/nosql-not-only-a-fairy-tale/)
    • -
    • Riak hat Gereon auch auf dem Radar und nutzt die Gelegenheit auf der Konferenz sich auszutauschen
    • -
    • Redis wurde als Spielprojekt eingesetzt um einen URL Shortner zu bauen
    • -
    • Und demnächst dann zum Aufbau von Watchlisten
    • -
    • Angeschaut hat sich recht viel :)
    • -
    • Der Trend bei Finanzen100 geht weg von Web und hin zu Apps
    • -
    • Wir schweifen etwas ab und Reden über iOS Apps, iAd und Vor- und Nachteile von nativen und nicht-nativen Apps
    • -
    • Weiterhin reden wir über Finanzen100s Transition von Webanwendung hin zu nativen Apps
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST014 - Business Kasper UG - no - Dirk Breuer, Sebastian Cohnen - Mit Matthias @luebken über den leidenschaftlichen Entwickler und agile Softwareentwicklung - - GST014 - Mon, 20 May 2013 17:18:16 +0200 - 01:44:21 - Agiles Unternehmen - * Wir stellen fest, dass die ganze agile Bewegung schon recht alt ist (z.B. Lean Manufacturing: http://en.wikipedia.org/wiki/Lean_manufacturing) - * Embrace the Change, Veränderung ist Teil des Systems, und kein Fehler. - -### Das Wort zum Sonntag (01:35:42) - - * Matthias empfielt alles von Henrik Kniberg (@henrikkniberg, http://www.crisp.se/konsulter/henrik-kniberg), z.B. http://blog.crisp.se/2012/11/14/henrikkniberg/scaling-agile-at-spotify) - * Kommt zu User Groups, tauscht euch aus! - * Hört Podcasts! :) - * Matthias ruft auf zur NoDev User Group in Köln, analog zu NoSQL, Not-Only Dev! - * aka "Business Kasper UG" - * #nodev - * Business Kasper (http://vimeo.com/4560687)]]> - Synopsis: Wir haben uns mit Matthias @luebken hingesetzt und einen -Geekstammtisch abgehalten. Gesprochen haben darüber, was einen guten, -leidenschaftlichen Softwareentwickler ausmacht und warum wir alle agile -Softwareentwicklung machen (wollen). Wie immer schweifen wir in alle -mögliche Richtungen ab und danken @larsvegas für das Bringen neuen -Bieres!

    - -

    Intro & Gast (00:00:00)

    - -
      -
    • Matthias trinkt Leffe Ruby: http://www.leffe.com/en/beer/leffe-ruby
    • -
    • Macht was mit Softwareentwicklung
    • -
    • Director Software Development bei Adcloud
    • -
    • Matthias <3 Agile Softwareentwicklung
    • -
    • Programmiert zwar gerne, sein Steckenpferd ist aber eher der Enabler zu sein für Entwicklung
    • -
    - -

    Der ideale Entwickler (00:04:45)

    - - - -

    Einschub: Post-it! (00:26:16)

    - -
      -
    • Matthias liebt Post-it! Er arbeitet viel mit kleinen Zetteln in verschiedenen Bereichen der Produkt- und Softwareentwicklung bei Adcloud
    • -
    • Matthias bietet Schulungen an, wie man Post-its richtig abzieht :)
    • -
    • Präsentationen mit Post-it!s?
    • -
    • Visual Facilitation kann man lernen, selbst als Nerd: http://de.wikipedia.org/wiki/Visual_Facilitation
    • -
    - -

    Prozesse zur Softwareentwicklung & Arbeitsmodelle (00:35:00)

    - -
      -
    • Wasserfall: http://en.wikipedia.org/wiki/Waterfall_model
    • -
    • Man kann aus zwei verschiedenen Richtungen zur agilen Softwareentwicklung kommen - -
        -
      • man möchte “weniger” oder andere Strukturen (von Wasserfall her kommend)
      • -
      • man möchte mehr Struktur, weil es vorher gar keine gab (kein Prozess)
      • -
    • -
    • Das agile Manifest (Manifesto for Agile Software Development): http://agilemanifesto.org/
    • -
    • Principles behind the Agile Manifesto: http://agilemanifesto.org/principles.html
    • -
    • Matthias findet Face-to-Face Kommunikation sehr wichtig und wir fragen uns, wie sich das in Einklang bringen kann mit verteilten Arbeiten, Homeoffice usw.
    • -
    • Wie bringt man für agile Entwicklung Leute zusammen, die nicht die selbe Sprache als Muttersprache haben? Oder nicht alle vor Ort sind?
    • -
    • Matthias würde immer nicht-verteilt arbeiten, wenn es möglich ist - -
        -
      • …andere versuchen genau das Gegenteil
      • -
    • -
    • Marissa Mayer von Yahoo ruft die Homeoffice-Arbeiter zurück: http://www.nytimes.com/2013/02/26/technology/yahoo-orders-home-workers-back-to-the-office.html?pagewanted=all
    • -
    • The Values of Extreme Programming: Simplicity, Communication, Feedback, Respect and Courage (http://www.extremeprogramming.org/values.html) - -
    • -
    • Dirk hat bei pkw.de gute Erfahrung damit gemacht, den “ganz oder gar nicht”-Ansatz zu verfolgen und sich einen externen Scrum Master zu besorgen
    • -
    • Wir sind uns einig, dass Retrospektiven, das zentrale und entscheidene Mittel in guten Entwicklungsprozessen ist.
    • -
    • Ein agiler Ansatz hat Auswirkungen auf das ganze Unternehmen: Agile Softwareentwicklung => Agiles Unternehmen
    • -
    • Wir stellen fest, dass die ganze agile Bewegung schon recht alt ist (z.B. Lean Manufacturing: http://en.wikipedia.org/wiki/Lean_manufacturing)
    • -
    • Embrace the Change, Veränderung ist Teil des Systems, und kein Fehler.
    • -
    - -

    Das Wort zum Sonntag (01:35:42)

    - - -]]>
    - - - - - - - - - - - - - - - - - -
    - - - GST015 - Geschäftsvorfall als Ereignis - no - Dirk Breuer, Sebastian Cohnen - Mit Michael Bumann (@bumi) über AMQP und Legacy-Systeme, Cloud-Hosting und und und… - - GST015 - Sun, 09 Jun 2013 17:58:55 +0200 - 01:52:37 - - Synopsis: Diesmal ist es wieder technischer, aber nicht weniger nerdig. Wir hatten @bumi von @railslove zu Gast. Mit ihm haben wir über gute Zusammenarbeit von Kunde und Auftraggeber gesprochen. Weiterhin war AMQP zur Anbindung von Legacy-Systemen und das Betreiben von Software in der Cloud das Thema. Es gab dann noch einiges über Ruby und Frontendentwicklung zu erzählen. Und zum Schluss gibt es dann, wie immer, dann noch ein paar Hinweise auf interessante Events in nächster Zeit.

    - -

    Unser Gast (00:00:00)

    - - - -

    Software Engineering (00:06:35)

    - -
      -
    • PSP: Payment-Service-Provide (http://en.wikipedia.org/wiki/Payment_service_provider)
    • -
    • Bankenumfeld bedeutet immer auch Legacy-Systeme anbinden
    • -
    • Message-basierte Kommunikation auf Basis von AMQP (http://en.wikipedia.org/wiki/Advanced_Message_Queuing_Protocol) -mit RabbitMQ (http://www.rabbitmq.com/)
    • -
    • Entkopplung von Systemen durch Messaging
    • -
    • Railslove macht nicht nur "einfache" Entwicklung, sondern arbeitet -in einem ganzheitlichen Ansatz: Anforderungen ermitteln, Technologie -auswählen, Implementierung bis hin zu UI-Unterstützung
    • -
    • AMQP scheint im Bankensektor sehr verbreitet
    • -
    • In Ruby verwendet man das amqp-gem (https://github.com/ruby-amqp/amqp/)
    • -
    • Fehlerbehandlung ist nicht trivial
    • -
    • Testing von asynchronem Code ist immer schwierig - -
        -
      • Fokus auf Unit-Testing
      • -
      • Callbacks testbar machen: Der Anwendungsfall™ für die -method-Methode
      • -
    • -
    • Failover-Testing ist auch hart…
    • -
    - -

    Monitoring (00:29:36)

    - - - -

    Ops (00:39:10)

    - - - -

    Ruby (00:53:15)

    - - - -

    Rails (01:11:52)

    - - - -

    Tools (01:20:46)

    - - - -

    Geiler Scheiß (01:24:31)

    - - - -

    Geiler Frontend Scheiß (01:30:30)

    - - - -

    Events (01:40:06)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST016 - WWDC 2013 - Surfin’ USA - no - Dirk Breuer, Sebastian Cohnen - Wir kommentieren die WWDC 2013 Keynote - - GST016 - Tue, 11 Jun 2013 21:14:00 +0200 - 00:41:22 - - Synopsis: Anlässlich der diesjährigen Apple Entwickler Konferenz und -der Tatsache, dass es endlich mal wieder einen Live-Stream gab, wollen -wir uns einen Kommentar nicht nehmen lassen. Wir halten uns diesmal -bewusst kurz, schneiden aber trotzdem alle Punkte zumindest an. -Beeindruckt hat uns der neue Mac Pro, bei iOS 7 sind wir uns noch nicht -sicher und OS X 10.9 macht vor allem den Eindruck, dass aufgeräumt wird.

    - -

    Intro (00:00:00)

    - -
      -
    • Heute der Kommentar zur WWDC 2013 mit Basti und Dirk
    • -
    - -

    Neues OS X: Mavericks (00:03:22)

    - - - -

    Hardware (00:20:14)

    - - - -

    iOS 7 (00:27:01)

    - - - -

    Sonstiges (00:37:40)

    - - -]]>
    - - - - - - - - - - - - - - - - - -
    - - - GST017 - developer-whisperer.DLL - no - Dirk Breuer, Sebastian Cohnen - Mit Oliver Thylmann (@othylmann) über Gründung (in Köln), Start-Ups und die Firma der Zukunft - - GST017 - Sun, 23 Jun 2013 16:41:14 +0200 - 01:10:19 - - Synopsis: Wir sprechen mit Oliver Thylmann über Köln als -Gründerstadt, Gründungen im Allgemeinen, die Firma der Zukunft und und -und. Dabei schweifen wir (also Oli) immer wieder mal ab, haben uns dann -aber doch ganz gut im Zaum gehalten und ein gutes zeitiges Ende -gefunden. Vielen Dank an @luebken für die Shownotes!

    - -

    Unser Gast (00:00:00)

    - -
      -
    • Oliver Thylmann (@othylmann), Kölner Serial Entrepreneur
    • -
    • Search Engine Spamming in der Jugend
    • -
    • …, Ligatus, Ormigo, Adcloud, …
    • -
    • Jetzt: Wieder was neues mit Henning in Köln
    • -
    - -

    Köln als Gründungsstadt (00:04:52)

    - -
      -
    • Berlin ist weniger “kompakt” als z.B. Köln
    • -
    • Oli: “Der noch nicht eröffnete Berliner Flughafen kostet so viel im Jahr, wie in deutsche Startups investiert wird”
    • -
    • Köln hat eine gute Lage und ist gut angebunden
    • -
    • Köln wird mehr und mehr besser vernetzt und es beginnt sich zu clustern
    • -
    • Wir brauchen noch ein Oberholz (http://www.sanktoberholz.de/). Ein -Kaffee wie in Berlin wo alle Leute sich so treffen. Im Moment muss -so was wie der Startplatz herhalten.
    • -
    • Virtuelle Firma: 150 km auseinander. Man trifft 2-3 Tage die Woche in einem Kaffee. Und es gibt Meetingräume.
    • -
    • Oli sieht Köln als Gründerstadt. Wir haben recht viel. Nur es ist nicht so “laut”. - -
        -
      • Ein paar alte Beispiele: QSC, Sedo, Onvista, Is. Teledata
      • -
    • -
    • Es fängt langsam an das sich Leute lose treffen. z.B. im Startplatz
    • -
    • Klarstellung: Das Homeoffice ist nicht in der Südstadt!
    • -
    • Vom Gefühl ist der Spot in der Ecke Mediapark, Friesenplatz, Brüssler Platz.
    • -
    • Die Leute gehen nach Berlin und kommen teilweise wieder zurück. - -
        -
      • z.B.: Ich baue ein Mobile Startup. Warum muss ich nach Berlin, wenn Vodafone etc. hier sind?
      • -
    • -
    - -

    Virtuelles Unternehmen, Remote Arbeiten (00:17:03)

    - -
      -
    • Was funktioniert als “virtuelles” Unternehmen gut? z.B. Wordpress, Github funktionieren gut. Das sind Produktfirmen.
    • -
    • Wenn es nicht aus den Leuten raus kommt, dann brauchst Du wieder einen Produktmensch.
    • -
    • Gerne virtuell. Aber ab und zu muss man sich treffen.
    • -
    • Erste Gehversuche mit einem Remote-Entwickler: Ständiger Google-Hangout.
    • -
    • “Es geht nicht darum was Du vorne in die Leitung rein pummst, sondern das was hinten raus kommt.” (Dee Hock, http://en.wikipedia.org/wiki/Dee_Hock)
    • -
    - -

    Die Firma der Zukunft (00:20:09)

    - -
      -
    • Wie setze ich eine Firma auf? Warum arbeiten die Leute in einer Firma?
    • -
    • Was sind die Probleme die wir heute lösen?
    • -
    • Gary Hammel: Future of Management (http://www.youtube.com/watch?v=K3-_IY66tpI)
    • -
    • Arbeiten und Management im Wandel: Aber was ist das “andere” Management Prinzip?
    • -
    • Firmen müssen innovativ am Kunden arbeiten. Der “klassische” Manager ist nicht beim Kunden! Wie kann man den Leuten am Kunden Entscheidungsmacht geben? - -
    • -
    • Valve hat aber auch Stacked Ranking. Es werden zwar nicht die unteren 5% gefeuert, trotzdem gibt es direktes Feedback.
    • -
    • Oli Fragt sich: Wie würde die Firma aussehen wo die sehr guten Leuten arbeiten wenn es denen erstmal nicht mehr um Geld geht.
    • -
    • Oli: “Die guten Leute sind besser besser, als sie teurer sind”; überproportional war das Wort, was Oli suchte :)
    • -
    • Nettes Buch: Antifragile: Things That Gain from Disorder von Nassim Nicholas Taleb (http://www.amazon.de/Antifragile-Things-That-Gain-Disorder/dp/1400067820) - -
        -
      • Wie baue ich etwas auf, so dass ich ein Grundrauschen habe um nicht zu sterben und dann irgendwann die richtige Idee zu haben.
      • -
    • -
    • Jeff Bezos: “Du musst viele Sachen ausprobieren, um Innovation zu haben”
    • -
    • Welche Freiheiten muss ich den Leuten geben?
    • -
    - -

    Developer Loveland (00:27:30)

    - -
      -
    • Aktuelle Idee von Oli: Developer Loveland, kurz DLL ^^
    • -
    • Gesucht: Gute Entwickler? Innovation? Grundrauschen?
    • -
    • Leuten die Möglichkeit geben, Ideen auszuprobieren; 10-20% der Sachen werden funktionieren und der Rest wird auch irgendwie nutzbar sein
    • -
    • Wenn man das macht braucht man als erstes Menschen die Prototypen bauen können.
    • -
    • DLL könnte ein Safety Net sein und man bekommst so die guten Leute die nicht den Sprung zur Gründung wagen.
    • -
    • Wir überlegen, wie groß das ganze sein müsste und Oli kommt zum Schluß, dass es gerade in groß richtig Sinn macht.
    • -
    - -

    Wert von Ideen, Jobs, SaaS Pricing (00:37:50)

    - -
      -
    • NDAs sind Quatsch. Jeder VC lehnt es ab und sagt “dann erzähl es mir halt nicht”.
    • -
    • Umsetzung/Ausführung ist alles bei einer Idee - -
        -
      • Oli: Man kann über die Samwers sagen was man will, aber Execution können die.
      • -
      • Ripple-Network (https://ripple.com/) - Bitcoin Richtung, Remittance Market; Größter Player in Indien. Aktuell: 5,8 Millarden USD Gebühren der Banken damit Inder weltweit Geld nach Hause schicken können.
      • -
    • -
    • Quantified Self: Es gibt einen BH der den Blutfluss misst und Brustkrebs erkennt.
    • -
    • “Andere Seite Flachbildschirm Jobs”
    • -
    • Dirk erzählt vom wenigen Spielraum, die Autohändler beim Leasing am Interface haben
    • -
    • SaaS und Enterprise Markt: Entscheidungen kommen immer mehr von unten
    • -
    • Oli prangert das Preismodel von Github Enterprise an!
    • -
    - -

    Glückliche Kunden (00:49:44)

    - -
      -
    • Net Promoter Score: Würdest Du uns weiter empfehlen? 0-10. http://en.wikipedia.org/wiki/Net_Promoter
    • -
    • Call-Center: Da wird nichts weitergeleitet, sondern wenn man sich einem Problem angenommen hat löst man es auch.
    • -
    • “Glückliche Kunden erzählen es 10 Leuten, unglückliche erzählen es 1000”
    • -
    • Dirk erzählt von dänischen Ferienhäusern, deren Vermittlung und Sommerfesten
    • -
    • Was gibt es noch? Das einzige was es noch gibt? Innovation am Kunden!
    • -
    • “Wer ist denn heutzutage noch intelligenter als ein 30 Minuten Gesurfter?”
    • -
    • Agilgedöns, “der ganze agile Scheiß.”
    • -
    • “If you don’t like change. You like irrelevancy even less.”
    • -
    • Was ist ein Manager in der Zukunft: Jemand mit Marktverständnis und der ein Netzwerk hat.
    • -
    • Erfahrung ist unmenschlich wichtig. z.B. von Klaus Hommels.
    • -
    - -

    Zum Abschluß (01:01:03)

    - -
      -
    • Interactive Cologne: Die Kölner SXSW (South By South West) - http://interactive-cologne.com
    • -
    • Hack on Startup in der Trinitatis Kirche in Köln. Ist wirklich gut geworden. Gute Pitches. Gute VCs. Gute Hacker.
    • -
    • Man trifft die Kölner Szene.
    • -
    • Warum der Startplatz: "Es gibt Menschen die sich um die Spülmaschine kümmern."
    • -
    • Unperfekt Haus (http://www.unperfekthaus.de/). Geben nur 10 € aus für eine Putzfrau. Er nimmt Eintritt für nicht Künstler die durch das Haus gehen.
    • -
    • Oli hat jede Geekstammtisch Folge gehört! \o/
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST018 - Runde Ecken - no - Dirk Breuer, Sebastian Cohnen - Mit Sebastian Kippe (@skddc) über 5Apps, Arbeiten beim W3C, HTTP 2.0, DevOps und mehr… - - GST018 - Fri, 28 Jun 2013 18:09:55 +0200 - 01:25:51 - - Synopsis - -

    Der Geekstammtisch wird volljährig! Dieses mal sprachen wir mit Sebastian Kippe (@skddc) und sprechen über Hacking Trips, sein Startup 5Apps, das Arbeiten beim W3C, HTTP 2.0, IPv6, SSL, DevOps. Zum Abschluss noch ein ganz besonderes Thema: BitCoins und Namecoin.

    - -

    Unser Gast (00:00:00)

    - - - -

    Hackertrips (00:02:23)

    - - - -

    5Apps (00:06:08)

    - - - -

    Web Apps (00:08:56)

    - - - -

    5Apps Deploy und Storage & remoteStorage (00:16:00)

    - -
      -
    • Das erste Produkt von 5Apps: 5Apps Deploy
    • -
    • PaaS für Client-side JavaScript Apps
    • -
    • Hilft zusätzlich zu einem "git push"-Deploy z.B. beim Packaging
    • -
    • Weitere zukünftige Dienste von 5Apps Deploy: - -
        -
      • JavaScript Exception Tracking
      • -
      • Web store/payment integration
      • -
    • -
    • 5Apps Storage - -
        -
      • work in progress (schon experimentell kostenlos bei jedem Account dabei)
      • -
      • basiert auf remoteStorage (siehe oben)
      • -
      • Idee: Daten liegen nicht beim App-Anbieter (z.B. Google), sondern wo der User das will
      • -
    • -
    • remoteStorage ist ein Protokoll für einen Key-Value Speicher http://remotestorage.io/ http://tools.ietf.org/html/draft-dejong-remotestorage-01
    • -
    • Webfinger: https://code.google.com/p/webfinger/
    • -
    • remoteStorage: Umziehen des Anbieters? - -
        -
      • aktuell nicht direkt vorgesehen, wenn dann muss das der Client machen, oder der Serveranbieter selbst anbieten
      • -
      • Google Takeout: https://www.google.com/takeout
      • -
    • -
    • Verschiedene Apps sollen die selben Daten benutzen können - -
        -
      • und eben nicht wie bei iCloud!
      • -
    • -
    • Konflikte werden im Moment bei remoteStorage noch wenig berücksichtigt :-/
    • -
    • remoteStorage.js funktioniert auch offline
    • -
    • ownCloud: http://owncloud.org
    • -
    • Unhosted: https://unhosted.org
    • -
    • 5Apps benutzt Riak für ihr remoteStorage Produkt und App Hosting
    • -
    - -

    Das W3C, DRM & App Stores (00:27:10)

    - - - -

    HTTP 2.0, IPv6, SSL (00:40:15)

    - - - -

    Ops und Infrastruktur bei 5Apps (00:46:51)

    - - - -

    Travis Foundation & RailsGirls: Summer of Code (00:57:00)

    - - - -

    Self-Hosted Cloud, GPG, Apple und HTML5 (01:00:08)

    - - - -

    Bitcoin / Namecoin (01:17:30)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST019 - Weg von .NET & Windows - no - Dirk Breuer, Sebastian Cohnen - Mit Stefan Schiffer (@scrat0105) über die Wandlung eines Unternehmens - - GST019 - Sat, 27 Jul 2013 16:29:29 +0200 - 01:17:25 - - Synopsis: Wir hatten dieses Mal Stefan Schiffer (@scrat0105) zu Gast. Er berichtet von dem doch sehr radikalen Wandel seines Arbeitgebers: Von On-Premise zu SaaS und Cloud, von Wasserfall-Prozessen hin zu Agiler Softwareentwicklung und von .NET & Windows zu Ruby & Linux. Stefan erzählt, woher der Wandel kommt und wie er den Wandel von Anfang an miterlebt hat.

    - -

    Intro (00:00:00)

    - - - -

    Unser Gast (00:03:24)

    - -
      -
    • Stefan Schiffer: @scrat0105, https://www.xing.com/profiles/Stefan_Schiffer8
    • -
    • hört gern denn Geekstammtisch <3
    • -
    • hat mit Dirk und Basti Medieninformatik an der FH Köln studiert
    • -
    • wollte immer in Richtung UX
    • -
    • macht seit ~2 Jahren Rails
    • -
    • explizite Stellen für Interaction Design sind eher unüblich
    • -
    - -

    InVision (00:06:02)

    - -
      -
    • Stefan arbeitet bei InVision AG: http://www.invision.de
    • -
    • InVision ein solides mittelstänidges Unternehmen aus der klassichen B2B On Premise Welt
    • -
    • Jetzt allerdings radikaler Wandel: Weg von On Premise hin zur Cloud und zu SaaS
    • -
    • InVision stellt Software für die Personaleinsatzplanung wie etwa Personal-Forecasting her
    • -
    • Vor 3-4 Jahren kam die Erkenntnis, dass man sich technologisch modernisieren muss
    • -
    • War mit der damaligen Software schwierig bis unmöglich
    • -
    • Daher war eine Schnitt unvermeidbar
    • -
    • InVision ist kein Startup
    • -
    • Mittlerweile hat sich eine "Startup-Mentalität" eingestellt - -
        -
      • Von Individualsoftware hin zu webbasierten Diensten
      • -
      • Das UX-Team kommt hier viel besser zum Einsatz
      • -
    • -
    • Vorher gab es eine C#/.NET-basierte Lösung mit viel lizensierter Drittanbietersoftware
    • -
    • Das neue, Rails-basierte Produkt ist noch nicht in Gänze live
    • -
    • Das Ziel ist, dass das neue Produkt das alte irgendwann ablöst
    • -
    • Die alte Software lebt nun auch in der Cloud und wird weiterhin betrieben
    • -
    • Diese Lösung ist auch schon als Saas verfügbar
    • -
    • Neue Kompotenten greifen auch noch teilweise auf die alte Software zu
    • -
    • Bestandskunden wechseln nach und nach auf die Cloud-basierte Variante
    • -
    • Vor allem sehr große Kunden sind noch auf der On Premise Version
    • -
    • Die Cloud der Wahl ist AWS (inkl. Windowsserver für die alte Umgebung)
    • -
    • Kunden, die die On Premise Lösung einsetzen können bereits auf neue Clouddienste zugreifen - -
        -
      • Beispiel dafür ist das Cloud-basierte Forecasting, was bereits jetzt einen Mehrwert bietet
      • -
      • Bedingt dadurch hat man nicht nur einmalige Migrationen von Altdaten, sondern auch eine konstante Verbindung zwischen den Systemen
      • -
    • -
    • 80% der Entwickler arbeiten auf dem neuen System, 20% arbeiten an der Pflege des Altsystems
    • -
    • Entwicklung findet an drei Standorten statt (Derry/Londonderry, Ratingen, Leipzig)
    • -
    • Jeder Standort hat mehrere Teams für unterschiedliche Komponenten der Software
    • -
    • Neben den Entwicklungsteams, gibt es noch Service-Teams für UX und Technical Writing, die allen Teams zur Verfügung stehen
    • -
    • Es gibt ein Operations-Team in Derry/Londonderry und es wird ein DevOps-Team in Ratingen aufgebaut
    • -
    • 50-60 Menschen in der Produktentwicklung
    • -
    - -

    Out of the Dark (00:17:40)

    - -
      -
    • Was war der Auslöser für den radikalen Wandel? - -
        -
      • Technologische Erweiterbarkeit war nicht mehr gegeben
      • -
      • Zwei Möglichkeiten: Entweder radikal aufräumen, oder von Vorne anfangen
      • -
      • Man war von der Cloud und ihren Möglichkeiten für den Anwendungsfall überzeugt
      • -
    • -
    • Erst kam der Switch zur Cloud und erst danach der Wechsel der Technologie
    • -
    • Gleichzeitig mit der Technologie wurde der Entwicklungsprozess und die Unternehmensstruktur radikal geändert
    • -
    • Wichtig war, dass die Unternehmensführung zu 100% dahinter steht
    • -
    • Ja, es sind Leute auf der Strecke geblieben: Es sind mehr Leute gegangen als die normale Fluktuation
    • -
    • Die Änderung der Unternehmensstruktur war im Nachgang eine Bedingung für den neuen Prozess
    • -
    • Mitarbeiter müssen Verantwortung übernehmen
    • -
    • Vorteil: Fachwissen gefestigt, Probleme bekannt und weitestgehend gelöst, Kundenstamm vorhanden
    • -
    • Nachteil: Niemand kannte Rails, niemand war firm in agiler Softwareentwicklung
    • -
    • Zu Beginn Scrum nach Lehrbuch inkl. externen Trainings
    • -
    • Heute wird Scrum nicht in Reinform gemacht, was die typische Entwicklung ist
    • -
    - -

    Von C# hin zu Rails (00:26:38)

    - -
      -
    • Schwerfällige Entwicklung
    • -
    • Automatisiertes Testing nur sehr schwer möglich
    • -
    • In der C#-Welt ist Open-Source nicht sehr populär
    • -
    • Entscheidung für Rails ist eher spontan gefallen - -
        -
      • Prototypen wurden mit Rails erstellt und das Vorgehen hat überzeugt
      • -
      • Danach hat man sich entschieden, dass man einfach weiter darin arbeitet und die Prototypen noch mal neumacht
      • -
    • -
    • Lizensierung und deren Kosten ein tatsächliches Problem
    • -
    • Kosten für die Server in der Cloud waren auch ein Problem
    • -
    • Herausforderungen beim Umstieg auf Rails war vor allem zu lernen was es bedeutet Web-Anwendungen zu schreiben
    • -
    • Ansonsten die üblichen Probleme: Neue Sprache, neues Framework, neues Paradigma
    • -
    • QA musste lernen Tests zu schreiben
    • -
    • Keine IDE mehr, sondern arbeiten mit Texteditor und CLI, vor allem durch den "Wegfall" des Debuggers
    • -
    • "Ich kann gar nicht mehr debuggen"
    • -
    • Zudem kam auch noch ein Wechsel des Betriebssystems ^^
    • -
    • Man musste auch lernen wie man deployed und Server provisioniert
    • -
    • Jenkins zur Realisierung der Deployment-Pipeline
    • -
    • Provisionierung der Server mit Chef
    • -
    • Genutzte Dienste von AWS: Vor allem EC2, ELB und S3
    • -
    • DB wird selber auf EC2 gehostet
    • -
    • Basti weist mal wieder darauf hin, dass AWS sich nur lohnt, wenn man es richtig nutzt und automatisch provisioniert
    • -
    • Stefan erzählt, dass sie am Anfang EC2 "nur" als Server in der Cloud gesehen haben und erst den richtigen Umgang lernen mussten
    • -
    • Stefan meint, sie sind fast fertig, aber fertig wird man ja eh nicht
    • -
    • Initiale Wissenslücke durch Trainings, Workshops und Self-Training geschlossen
    • -
    • Man musste lernen, dass man seinen eigenen Code auch mal wegwerfen muss
    • -
    - -

    Agile Softwareentwicklung (00:38:20)

    - -
      -
    • Während der Umstellung auf neue Technologien hat man sich die Frage gestellt, warum schreiben wir eigentlich Spezifikationen? Am Ende kommt eh nicht das raus, was der Kunde wollte?
    • -
    • Die häufigste Antwort auf diese Fragen war: Im besten Fall war es überflüssig, aber in der Regel hat es Nachteile gebracht.
    • -
    • Und was ist eigentlich dieses Scrum?
    • -
    • SaaS eignet sich perse nicht für Wasserfall, man muss viel schneller reagieren können
    • -
    • Man hört ganz anders auf die Kunden: Nicht mehr der einzelne zählt, sondern der Bedarf des Marktes
    • -
    • Dadurch musste auch der Produktbereich umlernen bzw. überhaupt aufgebaut werden
    • -
    • Entscheidungen über Produktänderungen werden vor allem in den einzelnen Teams getroffen
    • -
    • Am Anfang war es schwierig ein Produkt ohne echte Kunden zu entwickeln
    • -
    • Die Lücke musste durch internes Know-How geschlossen werden
    • -
    • Das machte auch Reviews schwierig
    • -
    • Mittlerweile haben alle Teams den selben Sprint-Rythmus und machen ihr Review gemeinsam in einem Conference-Call
    • -
    • Stefan ist zufrieden mit dem Transformationsprozess
    • -
    • besondere positive Aspekte, der Mehrwert der Umstellung - -
        -
      • direktes und schnelles Feedback
      • -
      • worst-case werden nur 1-2 Sprints an Zeit "weggeworfen"
      • -
    • -
    • Retrospektiven werden noch etwas stiefmütterlich behandelt
    • -
    • Teams arbeiten sehr eigenverantwortlich - -
        -
      • jedes Team betreibt ihre eigenen Komponenten/Module
      • -
      • organisieren selbst Urlaub im Team
      • -
    • -
    • Standortübergreifende Kommunikation ist eine Herausforderung - -
        -
      • Module, die enger zusammenarbeiten und direkte Abhängigkeiten haben, sind nach Möglichkeit am selben Standort angesiedelt
      • -
      • Ausnahme, das UX Team: Das Team ist verteilt und unterstüzt die anderen Teams
      • -
    • -
    • Technologie/Architekturentscheidungen werden in einer Art Architekturboard getroffen, nachdem es Vorschläge und Bewertungen aus dem jeweiligen Team gab.
    • -
    - -

    Technical Depts, eigene gems als externe Dependencies (00:54:19)

    - -
      -
    • "Technische Schulden" hat jeder, egal wie jung oder alt ein Projekt ist
    • -
    • Es gibt ein paar Regeln, wie mit Technical Depts umzugehen ist: - -
        -
      • erst kommen Bugs, dann Technical Depts und dann User Features
      • -
    • -
    • interne gems, werden von den Teams wie externe Dependencies verwendet (mit Pull Requests, Forks usw.)
    • -
    • dadurch, dass alle Teams quasi eigene Rails Apps entwickeln, sind die Teams relativ unabhängig von Entscheidungen, wie erb vs HAML oder CSS/SCSS/…
    • -
    • mitlerweile wird nur noch HAML benutzt: http://haml.info/
    • -
    - -

    Lernprozesse & Kulturwandel (01:01:25)

    - -
      -
    • Andauernder Learnprozess, viele Fehler, viel gelernt
    • -
    • Zusammen mit dem technischen Wandel gab es auch einen starken "kulturellen" Wandel - -
    • -
    - -

    APIs, Service-Orientierung (01:03:47)

    - -
      -
    • Die bisherige On-Premise-Lösung war nicht Service-orientiert
    • -
    • Jetzt geht es schon mehr in diese Richtung
    • -
    • z.B. gibt es ein zentrales User-Management (Service) - -
        -
      • API spricht JSON via HTTP
      • -
      • wird bereitgestellt durch gems
      • -
    • -
    • Services/Module haben ihre eigenen Datenbanken
    • -
    - -

    Zum Abschluss (01:09:12)

    - -
      -
    • Wir sind beeindruckt von dem doch radikalen und positiven Wandel, den Stefan beschrieben hat
    • -
    • Wir sind uns einig, dass ein ganzheitlicher Ansatz am erfolgversprechendsten ist
    • -
    • InVision sucht noch Entwickler und vor allem Leute, die DevOps machen wollen
    • -
    • Basti hat eine Mail mit Jobangebot bekommen, worin mit einem Foto von Clubmate im Kühlschrank geworben wurde :)
    • -
    • Mate gibt es bei InVision noch nicht, aber es wird gegrillt (reicht nicht ganz ^^)
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST020 - Wenn die Codebase groß genug ist... - no - Dirk Breuer, Sebastian Cohnen - Auf dem RailsCamp 2013 mit Christoph Olszowka (@TheDeadSerious) über The Ruby Toolbox und simplecov - - GST020 - Mon, 29 Jul 2013 18:27:42 +0200 - 00:47:27 - 45min :-/ - * Basti ist zufrieden mit SimpleCov und hat keine Feature Requests - * Christoph will JavaScript Coverage mit einbauen - * Die Coverage API gibt Daten in einheitlichem Format raus, das könnte man für JavaScript Testsuites nachbauen - * SimpleCov kann die Coverage Daten aus mehreren Test-Suites zusammenfügen - * Wenn jemand mitarbeiten will, Christoph freut sich über Pull-Requests - * Weitere Idee: SimpleCov in Produktion einzusetzen ("Welcher Code wird überhaupt wie oft verwendet"), das wird aber von der Coverage API nicht unterstützt - * Dirk wirft in den Raum, dass das mit DTrace (http://de.wikipedia.org/wiki/DTrace) möglich sein könnte - * Dirk: "Man sollte sich öfter fragen, ob Code überhaupt noch benutzt wird"; +1 - -### RailsCamp (00:38:50) - - * In den letzten 2 Tagen war es verdammt heiß, heute ist es eher bewölkt aber angenehm kühl - * Abenteuer Hallen Kalk: http://ahk.abenteuerhallenkalk.de - * Viele Aktivitäten: Klettern, Basketball, Laufen, Kicker, BMX… - * Basti: "Das Wasser und die Mate, die man sich hier reinkippt, schwitzt man sofort wieder aus" - * Internet per Richtfunkstrecke und WLAN vom CCC - * Wi-Fi Access Points: Ubuquity UniFi http://www.ubnt.com/unifi - * Viprinet (http://www.viprinet.com/de/home) - * Backup Uplink von Vodafone & T-Mobile - * Man läuft rum, hört Sessions mit und unterhält sich mit den Leuten - * Weitere Aktivitäten: BMX mit einigen Verletzungen, AR Drone 2 (http://ardrone2.parrot.com) - * geiles Essen, lecker Kaffee - * Übernachtung in der Skate Halle in zwischen und neben den Half Pipes (Christoph hat's getestet)]]> - Synopsis: Auf dem RailsCamp sprachen wir mit Christoph -@TheDeadSerious Olszowka. Es ging um das Rails Ökosystem und um zwei -etwas bekanntere Projekte von Christoph: The Ruby Toolbox und -simplecov.

    - -

    Unser Gast (00:00:00)

    - - - -

    Rails Camp 2013 (00:02:40)

    - - - -

    Das Rails Ökosystem (00:04:00)

    - - - -

    Ruby Toolbox (00:18:45)

    - -
      -
    • Projekt seit 2009
    • -
    • Kategorisierter Katalog von Gems und anderen Open Source Projekten
    • -
    • Sortierung nach Beliebtheit, viele Metadaten wie Aktualität, letzter Commit auf GitHub
    • -
    • Als eingeloggter User kann man Kategorien hinzufügen, das Repo updaten, etc.
    • -
    • Viele Änderungen müssen von Christoph noch manuell reviewt werden
    • -
    • Basti nutzt die Toolbox regelmäßig, wusste aber nicht, dass man auch mitarbeiten kann
    • -
    • Sortierung nach Rubygems Downloads, GitHub Stars/Watcher und Forks.
    • -
    • Man kann sich den Score eines Projektes anzeigen lassen. Beispiel: thor https://www.ruby-toolbox.com/projects/thor/popularity
    • -
    • Dirk schlägt vor den letzten Commit auch mit einzubeziehen
    • -
    • Wenn ein Gem bei RailsCasts (http://railscasts.com), etc erwähnt wird, dann beeinflusst das die Watcher Zahlen, aber die Download Zahlen ändert sich nicht zwangsläufig
    • -
    • Für Basti ist es wichtig, dass ein Projekt aktiv ist (neue GitHub Commits), um zu sehen welches Tool er benutzt
    • -
    • Gemcutter/Rubygems (http://www.rubygems.org) und Bundler (http://bundler.io/) haben das Ökosystem positiv beeinflusst
    • -
    • Ein gem zu Erstellen, zu Open Sourcen und es zu maintainen ist ein echtes Commitment!
    • -
    • Überprüfen ob Gems mit Rails 4 funktionieren: http://www.ready4rails4.net
    • -
    • "View the full dependency tree for any ruby gem": https://www.gemlou.pe
    • -
    • "Bei großen Projekten landet man oft in der Dependency-Hell"
    • -
    • Angabe von Ruby Version (http://docs.rubygems.org/read/chapter/20#required_ruby_version) und Plattform (http://docs.rubygems.org/read/chapter/20#platform) im gemspec möglich
    • -
    • Leider die Dependency-Angaben oft sehr eng oder schlichtweg falsch: z.B. MRI verlangt, aber jruby funktioniert auch
    • -
    - -

    SimpleCov (00:31:50)

    - -
      -
    • SimpleCov basiert auf der Coverage API (http://www.ruby-doc.org/stdlib-1.9.3/libdoc/coverage/rdoc/Coverage.html), die mittlerweile von JRuby (http://jruby.org) und Rubinius (http://rubini.us) auch unterstützt werden
    • -
    • die Testsuite für SimpleCov dauert unter jruby >45min :-/
    • -
    • Basti ist zufrieden mit SimpleCov und hat keine Feature Requests
    • -
    • Christoph will JavaScript Coverage mit einbauen
    • -
    • Die Coverage API gibt Daten in einheitlichem Format raus, das könnte man für JavaScript Testsuites nachbauen
    • -
    • SimpleCov kann die Coverage Daten aus mehreren Test-Suites zusammenfügen
    • -
    • Wenn jemand mitarbeiten will, Christoph freut sich über Pull-Requests
    • -
    • Weitere Idee: SimpleCov in Produktion einzusetzen ("Welcher Code wird überhaupt wie oft verwendet"), das wird aber von der Coverage API nicht unterstützt
    • -
    • Dirk wirft in den Raum, dass das mit DTrace (http://de.wikipedia.org/wiki/DTrace) möglich sein könnte
    • -
    • Dirk: "Man sollte sich öfter fragen, ob Code überhaupt noch benutzt wird"; +1
    • -
    - -

    RailsCamp (00:38:50)

    - -
      -
    • In den letzten 2 Tagen war es verdammt heiß, heute ist es eher bewölkt aber angenehm kühl
    • -
    • Abenteuer Hallen Kalk: http://ahk.abenteuerhallenkalk.de
    • -
    • Viele Aktivitäten: Klettern, Basketball, Laufen, Kicker, BMX…
    • -
    • Basti: "Das Wasser und die Mate, die man sich hier reinkippt, schwitzt man sofort wieder aus"
    • -
    • Internet per Richtfunkstrecke und WLAN vom CCC
    • -
    • Wi-Fi Access Points: Ubuquity UniFi http://www.ubnt.com/unifi
    • -
    • Viprinet (http://www.viprinet.com/de/home) - -
        -
      • Backup Uplink von Vodafone & T-Mobile
      • -
    • -
    • Man läuft rum, hört Sessions mit und unterhält sich mit den Leuten
    • -
    • Weitere Aktivitäten: BMX mit einigen Verletzungen, AR Drone 2 (http://ardrone2.parrot.com)
    • -
    • geiles Essen, lecker Kaffee
    • -
    • Übernachtung in der Skate Halle in zwischen und neben den Half Pipes (Christoph hat's getestet)
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - -
    - - - GST021 - Nerdstammtisch (aka NK008) - no - Dirk Breuer, Sebastian Cohnen - Das Geekstammtisch und Nerdkunde Joint Venture berichtet vom RailCamp 2013 - - GST021 - Tue, 30 Jul 2013 18:54:43 +0200 - 01:02:55 - - Synopsis: Der Geekstammtisch und die Nerdkunde haben auf dem RailsCamp -Germany 2013 zusammen ein paar Impressionen der Besucher gesammelt. Wir -sprachen mit @skddc, @jkwebs, @argorak, @badboy_, @Uepsi, @slogmen und -@Hagenburger. Bis zum nächsten Mal!

    - -

    Intro (00:00:00)

    - - - -

    Sebastian Kippe (00:01:02)

    - -
      -
    • Twitter: @skddc
    • -
    • (Mit-)Organisator des RailsCamps
    • -
    • es gab so circa 30 Mit-Organisatoren per GitHub Issues
    • -
    • wir fanden, die Orga lief super
    • -
    • Sebastian kommt gerade von der Crypto-Session mit Key Signing & Co.
    • -
    • Es wurden 125 Tickets verkauft, es waren circa 10 nicht da und es sind ein paar zusätzlich gekommen
    • -
    • Sebastian's Highlight: Punk Rock mit @TheDeadSerious auflegen!
    • -
    • Sport und Nerds: Es gab Opfer! 2 von 4 Leute beim BMXen waren im Krankenhaus
    • -
    - -

    Jakob Hilden (00:07:09)

    - -
      -
    • Twitter: @jkwebs
    • -
    • ebenfalls Organisator und vor allem Koordinator \o/
    • -
    • findet es super, wie alles so zusammengekommen ist
    • -
    • bei der vorletzten Cologne.rb hat Jakob tolle "Hüte" gebastelt; hat funktioniert :)
    • -
    • Die Idee einen Pool aufzustellen, kam leider etwas zu spät für's RailsCamp
    • -
    • Jakob's Highlight: Nico @Hagenburger's Session zu Living Styleguides
    • -
    • Es gab eine tolle Feedback-Runde zu dem Living Styleguide Ansatz
    • -
    - -

    Unsere Impressionen vom Camp (00:12:10)

    - -
      -
    • Dirk fragt sich, ob es eine grundsätzliche thematische Richtung auf dem Camp und wir haben nichts ausgemacht
    • -
    • uns war allen warm :)
    • -
    • Wir haben alle nicht so viele Sessions mitgemacht, sondern haben mehr an Diskussionen rundherum teilgenommen
    • -
    • Lucas hat den Eindruck, dass viele auf der Suche nach DEM Frontend JS Framework sind
    • -
    • Wir diskutieren etwas über Ember.js, Backbone.js und AngularJS
    • -
    - -

    Mike (00:16:40)

    - -
      -
    • betreut die ganzen Nerds in den AbenteuerHallenKALK: http://ahk.abenteuerhallenkalk.de/
    • -
    • die gute Seele des Hauses
    • -
    • Mike findet die RailsCamper sind tiefen-entspannt und ordentlich (hört, hört!)
    • -
    • Nerds sind pflegeleichter als Jugendliche \o/
    • -
    • Mike hat Chipstüten vermisst
    • -
    • …und er fand unseren Musikgeschmack gut
    • -
    • in den Hallen finden alle möglichen Events statt
      - -
    • -
    • Evoke wird das selbe Wi-Fi Setup bekommen, wie das RailsCamp
    • -
    - -

    Florian Gilcher (00:21:38)

    - -
      -
    • Twitter: @argorak
    • -
    • Hat AR.Dronen mitgebracht, weil er eine geschenkt bekommen hat ^^
    • -
    • Es sollte gescripted werden und nicht mit der iPhone App geflogen werden - -
        -
      • Ergebnis: Eine wird von einem N64-Controller gesteuert, die andere von einer Shoes4-App
      • -
    • -
    • Klaus hat seine neue DrohDrohnene erstmal geschrottet
    • -
    • Pro-Tipp: Drohne und Client müssen im gleichen WLAN sein
    • -
    • Implementierungen in Ruby artoo-ardrone und Node.js node-ar-drone
    • -
    • Florian hat einen Arbeitskreis für Ruby-Events gemacht
    • -
    • Wie kann man sich besser vernetzen? - -
        -
      • Deutschlandweite Mailingsliste
      • -
      • Deutschlandweites Blog
      • -
      • Ruby Berlin e.V. ist trotz des Namens nicht auf Berlin begrenzt
      • -
    • -
    • Das Railscamp wurde vom Ruby e.V. veranstaltet
    • -
    • Zentrale Frage sollen einfach zu klären sein (Bsp.: Internet, WLAN, etc)
    • -
    • Die Telekom lässt das eurucamp nicht an ihr Glas m(
    • -
    • Findet statt vom 16.-18. August und es gibt noch Tickets
    • -
    • Die einzige JRuby Konferenz dieses Jahr findet kurz vorher statt: JRuby Conf EU
    • -
    • Es gibt keine Kombitickets für die Konferenz aber eine Kombiparty
    • -
    • Am 24./25. August findet die RedFrog Conf auf der FrOSCon statt
    • -
    • "So Coded" findet am 19./20. September in Hamburg statt
    • -
    - -

    Jan-Erik Rediger (00:32:20)

    - -
      -
    • Twitter: @badboy_
    • -
    • Kommt von rrbone, die den Uplink via Richtfunk zur FH Köln realisiert haben
    • -
    • rrbone ist ein kleiner ISP aus Dortmund
    • -
    • Richtfunkstrecke ging über 1,5 km
    • -
    • Der Ausblick war großartig ^^
    • -
    • Es gab für alle Teilnehmer öffentliche IPv4 und IPv6 Adressen
    • -
    • Das Netz kommt in Düsseldorf raus!!!
    • -
    • Es gab ein Easteregg
    • -
    • Bis zu 100MBit sind über die Richtfunkstrecke gemessen worden \o/
    • -
    • Wir können jetzt überall Campen \o/
    • -
    - -

    Wir (00:37:28)

    - -
      -
    • Sport von den Panelisten: Drohne fliegen, Kickern, Schwitzen
    • -
    • Eine weitere Nerdkunde wurde in der Sauna mit Dennis Reimann aufgenommen: http://nerdkunde.de/nk0007.html
    • -
    • Und ein Geekstammtisch mit Christoph @TheDeadSerious Olszowka
    • -
    • Hardware Hacker: Buzzer und Funky Monkey Cards
    • -
    - -

    Maxim (00:38:35)

    - -
      -
    • Twitter: @Uepsi
    • -
    • Projekt hat auf der Interactive Cologne angefangen
    • -
    • Das Projekt: Mit Karte einchecken und einfach zählen, wie oft jemand am Kühlschrank ist usw.
    • -
    • Raspberry Pis als Check-In Stations
    • -
    • Aktuell sammelt jede Station für sich, denn das Netzwerk hat nicht mitgespielt
    • -
    • App ist mit Rails gebaut, wer Lust hat mitzumachen: Bei Maxim melden!
    • -
    • Buzzer hängen sich als Tastatur an den Rechner und können RGB Farbverläufe darstellen
    • -
    • Läuft mit AnyKey – die Hacker sind aber noch schwer beschäftigt
    • -
    • Klaus baut seine zukünftige Eisenbahnsteuerung vielleicht mit AnyKey
    • -
    • Nerdifiziere alles mit Einchecken
    • -
    • Alles anonym, Entwickler wehren sich gegen PRISM Vorwürfe
    • -
    • Github Repo: StuffCard local-service
    • -
    - -

    Wir (00:45:43)

    - -
      -
    • Das Fleisch war super (@killerg hat's gegrillt!)
    • -
    • Fleisch + Zwiebeln + Beck's
    • -
    - -

    Thomas Schrader (00:46:20)

    - -
      -
    • Twitter: @slogmen
    • -
    • In einem riesengroßen Topf Fleisch + riesigen Mengen von Zwiebeln + Bier + Senf
    • -
    • 24 Stunden eingelegt
    • -
    • Butterzart!
    • -
    • Sein erster Ruby Event
    • -
    • Erst seit ein paar Monaten in Köln
    • -
    • Super Atmosphäre, Leute und Location
    • -
    • Er fand Sebastian's Babuschka Vortrag und den Living Styleguide super
    • -
    • Babuschka automatisiert Server Setups
    • -
    • Abhängigkeiten stehen im Vordergrund
    • -
    • Keine zentrale Komponente wie bei Chef oder Puppet
    • -
    • Server Setups automatisieren ist immer noch nicht gelöst
    • -
    • Kann auch mehrere Server provisionieren
    • -
    • Er wird noch auf weitere Events gehen
    • -
    - -

    Wir (00:51:42)

    - -
      -
    • Podcast Workshop
    • -
    • Einige waren interessiert am Podcasten
    • -
    • Es waren jede Menge RailsGirls da
    • -
    • Die Rails Girls treffen sich wöchentlich in kleinen Gruppen mit ihrem Coach
    • -
    • Am Samstag haben sich die Rubymonsters getroffen, um ihre Tests wieder grün zu machen - -
        -
      • Sie arbeiten an der Open Source Rails App Speakerinnen Liste
      • -
      • Das soll Speakerinnen und Konferenz Organizer zusammenbringen
      • -
      • Haben Git Blame gelernt
      • -
      • Aber die sitzen alle im Git Workshop
      • -
    • -
    - -

    Nico Hagenburger (00:55:40)

    - -
      -
    • Twitter: @Hagenburger
    • -
    • Er hat einen Talk über Styleguide Driven Development gehalten: Separation von Frontend und Backend
    • -
    • Er macht das auch so
    • -
    • GitHub Repo – er baut ein Gem
    • -
    • Er schreibt in Markdown seine Code Beispiele und schreibt dann seinen Sass Code, und produziert statisches HTML + CSS
    • -
    • PHP Leute können wohl auch Sass. Aber er gibt am Liebsten direkt CSS raus
    • -
    • Sass und Compass in Symfony
    • -
    • Er muss keine Datenbank aufsetzen, die Entwickler müssen kein Sass mehr kompilieren
    • -
    • Es gibt eine CSS Datei, in der alle Patches drin sind, und die werden dann später von Nico wieder in das Sass reingezogen
    • -
    • Er macht das als Freelancer
    • -
    • Ihm hat es super viel gebracht, da zu sein: Er hat Mitstreiter gefunden und Feedback gekriegt
    • -
    • Das Gem liegt auf GitHub
    • -
    • Er fand es anders richtig geil: Diesmal hat er viel technisches mitgenommen
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST022 - Der Finder lügt! - no - Dirk Breuer, Sebastian Cohnen - Mit Manuel @StuFFmc Carrasco Molina über Podcasting, iOS/OS X Entwicklung und Apple Rumors. - - GST022 - Wed, 21 Aug 2013 10:07:09 +0200 - 01:39:10 - - Synopsis: Wir sprachen mit Manuel @StuFFmc Carrasco Molina über -seine Zeit als Podcaster (http://pomcast.com), iOS und OS X Entwicklung. -Da wir schon mal einen Apple Fanboy da hatten, haben wir die Gelegenheit -genutzt um etwas in die Glaskugel zu schauen.

    - -

    Unser Gast (00:00:00)

    - - - -

    Podcasting (00:06:00)

    - -
      -
    • Pomcast: http://pomcast.com
    • -
    • Stuff hat mit Podcasting angefangen am 31.5.2005... - -
        -
      • auf Französisch, später dann auch auf Englisch und Deutsch und ein paar auf Spanisch
      • -
    • -
    • Thema: Apple, ~5000 Hörer
    • -
    • Hat viele interessante Personen durch das Podcasting getroffen
    • -
    • Idle seit ~2010
    • -
    • Podcasts mit anderen via Skype aufnehmen - viel Arbeit! - -
    • -
    - -

    iOS Entwicklung, App Store & Co. (00:20:30)

    - - - -

    Der (App) Markt (00:34:00)

    - -
      -
    • macht Apple die Preise kaputt? Was ist mit Updates? Fragen über Fragen...
    • -
    • der Preis vom aktuellen Logic ist unter dem früheren Updatepreis
    • -
    • Aperture ist alt (2010): http://www.apple.com/aperture/
    • -
    • Wir sprechen noch mal kurz über Diskalarm und Comments.app
    • -
    • Diskalarm und die Problematik mit der Mobile Time Machine; der Finder lügt!1!!
    • -
    • df: http://en.wikipedia.org/wiki/Df_(Unix)
    • -
    • du: http://en.wikipedia.org/wiki/Du_(Unix)
    • -
    • App Store Updates? - -
        -
      • Neue Version = Neue App rausbringen?
      • -
      • Immer wieder auf Neukäufe hoffen?
      • -
      • In-App-Purchase?
      • -
      • Stuff deutet eine mögliche Lösung mit iOS 7 an, leider NDA :-/
      • -
    • -
    • App Pricing - -
        -
      • Ist allgemein schwer, aber die Preise sind gesunken
      • -
      • Wie umgehen mit Demos? XY lite? Features via IAP?
      • -
      • Basti findet Demo-Versionen blöd
      • -
    • -
    • Where To? (@wheretoapp) Von Ortwin Gentz: http://www.futuretap.com/apps/whereto-en/
    • -
    • Instapaper in Gefahr durch Safari Reading List: http://www.apple.com/osx/apps/#gallery-safari-readinglist - -
        -
      • Ist NICHT kostenlos im App Store, Basti!
      • -
      • Neues schönes Webinterface zu Instapaper: http://beta.instapaper.com/
      • -
      • Es ist nicht bekannt, ob es einen API für die Reading List gibt hust
      • -
    • -
    • Wir vermuten, dass Apples Podcast-App den kostenpflichtigen Podfetchern nicht signifikant Markt weggenommen hat
    • -
    • Podcast-App sieht unter iOS 7 immer noch so aus wie iOS 6
    • -
    - -

    Projekte unter NDA (00:54:50)

    - -
      -
    • Basti und Dirk mögen keine NDAs ;-)
    • -
    • Stuff hat zwar schon NDAs abgelehnt aber in der Regel steht er unter NDA
    • -
    • Er darf noch nicht einmal den Auftraggeber nennen
    • -
    • Manche Auftragsarbeiten sind mittlerweile auch nicht mehr im App-Store
    • -
    • Manchmal macht Stuff alles von Server-Backend bis Frontend
    • -
    • Arbeiten und NDA macht die Gestaltung des Lebenslaufs schwierig
    • -
    • Für einige ist Stuff der Rails-Guy
    • -
    • Es gibt relativ viele iOS-Entwickler, die auch die Serverbackends selber schreiben
    • -
    • Stuff sollte für einen neuen eBook-Reader entwickeln, Projekt wurde aber eingestellt
    • -
    • Er hat auch iOS-Kurse gegeben
    • -
    • Auf Nachfrage gibt er diese Kurse auch immer noch
    • -
    • Schwierigkeit ist es in 5 Tage die Kernaspekte von iOS-Entwicklung zu vermitteln
    • -
    • KISS (https://en.wikipedia.org/wiki/KISS_principle): Präsentations-App mit Animationen, Animationen sind Keynote-Präsentationen als Quicktime exportiert
    • -
    • Das Problem bei C# und .NET ist, dass leider ein Windows mitkommt
    • -
    - -

    Gerüchteküche (01:06:40)

    - - - -

    Der Marimba-Sound (01:27:37)

    - - - -

    Objective-Cologne (01:30:10)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST023 - The NeXT Episode - no - Dirk Breuer, Sebastian Cohnen - Mit Mateus "@seanlilmateus" Armando über Mobilfunktechnik, MacRuby, RubyMotion und Apple. - - GST023 - Mon, 16 Sep 2013 10:37:29 +0200 - 01:53:02 - - Synopsis: Dieses Mal war Mateus Armando zu Gast bei uns auf der Couch. Wir sprachen darüber wie neue -Mobiltelefone in das Netz der Telekom eingegliedert werden und was bei GSM so schief laufen kann. Im Anschluss -haben wir einen ganz guten Abriss über die Geschichte von RubyMotion gehört und zum Abschluss äußern wir uns -noch zum Apple iPhone Event vom 10. September.

    - -

    Unser Gast (00:00:00)

    - - - -

    Arbeiten der Telekom (00:03:55)

    - -
      -
    • Mateus automatisiert Dinge mit Ruby auf der Arbeit, ansonsten kommt es weniger zum Einsatz
    • -
    • Mateus testet Mobilfunkentgeräte mit dem Netz der Telekom
    • -
    • Zentrale Stelle für mehrere Länder - -
        -
      • Funktionieren die Geräte mit dem Netz der Telekom?
      • -
      • Softwaretests, Funktests
      • -
    • -
    • Mateus bekommt oft mal neue Geräte zum Testen in die Hand - -
        -
      • Die neuen Apple Geräte werden von speziell ausgewählten Personen getestet; Apple ist da etwas pingelig :)
      • -
    • -
    • Wenn Hersteller Mist machen, dürfen die Geräte nicht ins Netz der Telekom
    • -
    • Das Notification System eines ungenannten Devices hat vor einiger Zeit für großflächige Ausfälle gesorgt
    • -
    • Für Sicherheitsrelevante Fragen gibt es noch mal eine eigene Abteilung
    • -
    • Security Research Labs (Karsten Nohl) - "Rooting SIM cars": https://srlabs.de/rooting-sim-cards/
    • -
    • Wireshark: http://www.wireshark.org/ - -
    • -
    - -

    GSM Hacking, Security und Co (00:14:30)

    - - - -

    C, Java, NeXT, WebObjects, Erlang… (00:19:35)

    - - - -

    MacRuby & RubyMotion (00:27:30)

    - - - -

    Objective-C Runtime (01:08:00)

    - - - -

    Probleme mit RubyMotion (01:12:45)

    - -
      -
    • Bis vor kurzem gab es noch viele Probleme mit Blöcken in Bezug auf Speicherlücken
    • -
    • Für Ruby-Entwickler sind Blöcke absolut normal und werden überall verwendet
    • -
    • Viele Bugs sind entdeckt worden bei der (falschen) Verwendung von CoreData (https://en.wikipedia.org/wiki/Core_Data)
    • -
    • Wichtig ist, CoreData ist keine Datenbank, aber man kann dort Objekte ablegen
    • -
    • CoreData ist sehr mächtig und nicht leicht zu verstehen
    • -
    • Da CoreData ein Teil von iCloud-Sync ist, führt dass dazu das iCloud-Sync oft nicht richtig umgesetzt ist
    • -
    • RubyMotion ist nicht Ruby, sondern ein Dialekt von Ruby - -
        -
      • Beispiel ist, dass man mit der Block-API von Objective-C interagieren muss
      • -
      • Named Arguments sind verhalten sich unterschiedlich
      • -
      • In Objective-C sind die Named-Arguments Teil des Methodenname
      • -
    • -
    • Die großflächige Verwendung von Named-Arguments wird sich in Ruby noch etwas hinziehen
    • -
    • Wenn man für iOS entwickeln will, aber keine Lust auf Objective-C hat, dann macht man was falsch
    • -
    • Dokumentation ist in Objective-C und die Laufzeitumgebung mit all ihren Eigenheiten ist eben auch Objective-C
    • -
    • Aber: RubyMotion ist nach Mateus die beste Möglichkeit Objective-C zu lernen
    • -
    • RubyMotion ist sehr viel kompakter als Objective-C, daher die bevorzugte Umgebung von Mateus
    • -
    - -

    Apple iPhone Event (01:30:20)

    - -
      -
    • Wir wollen keine goldenen iPhones
    • -
    • Event war leider nicht live
    • -
    • Im Home-Office-Cologne gab es Rudelgucken mit Tippspiel
    • -
    • Enttäuschung, dass es keine Mac News gab
    • -
    • Wieder kein AppleTV SDK :-)
    • -
    • iPhone ist so wichtig, dass nichts parallel vorgestellt wird
    • -
    • Aber: Mavericks und Mac Pros werden kommen, aber ohne Event ist der Mac Pro eher unwahrscheinlich
    • -
    • Neue iPads und iPods stehen auch noch aus, aber dafür lohnt sich auch ein eigenes Event
    • -
    • Eigentlich haben sie Material für noch 2 Events
    • -
    • Dirk wünscht sich ein AppleTV mit SDK und der Möglichkeit einen Playstation Controller anzuschließen
    • -
    • Der Coup des Jahres wäre eine AppleTV Spieleconsole
    • -
    • iPhone/iPod als Controller für Spiele inkl. Secondscreen
    • -
    • Wir gehen nicht davon aus, dass Apple einen eigenen Controller bauen wird/kann
    • -
    • Am Anfang noch vorsichtig im Bereich, in letzter Zeit wird das ganze sehr ernsthaft verfolgt, Stichwort: Grafikleistung und OpenGL 3
    • -
    • In Bezug auf Independent-Spiele ist Apple bereits da wo Microsoft und Sony gerne hinmöchten
    • -
    • Das Event war das Ende der Ära Steve Jobs und der Beginn der Ära Jony Ive
    • -
    • Basti findet das "non" lustig ist, wenn die Löcherhülle auf dem 5C ist (https://www.apple.com/iphone-5c/design/images/cases_gallery_white_white_2x.png)
    • -
    • Die Position des iPhone 5C ist noch unklar - -
        -
      • Weder ein Billig-Phone
      • -
      • Gute Leistungsdaten
      • -
      • Es ist aber bunt
      • -
    • -
    • Basti sagt nach wie vor, Apple hat es nicht nötig ein Billig-iPhone zu bringen - -
        -
      • Unterschied momentan ist die Qualität der Anwendungen
      • -
      • Hintergrund wird nicht sein, mehr Umsatz über iPhones zu machen, sondern iOS weiterzuverbreiten
      • -
    • -
    • Das 'C' steht wahrscheinlich für 'Color' und nicht 'Cheap' ;-)
    • -
    • Wir warten weiterhin auf das 4k-Display…
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST024 - Super Spell Boy - no - Dirk Breuer, Sebastian Cohnen - Mit Björn "@_orko" Vollmer über (Indie-)Spieleentwicklung auf iOS und die Entstehung von Super Spell Boy - - GST024 - Mon, 23 Sep 2013 22:23:10 +0200 - 01:39:06 - KEIN Feuer - * Von Beginn an alle Zauber verfügbar - * Erst war die Idee, dass man nach und nach die Zauber freispielt - * Ist aber "einfach" ein Arcadespiel: Solange spielen bis man stirbt. - * Alle UI-Elemente sind im Spiel integriert: - * Pause-Button ist das Tor der Burg - * Auf dem linken Turm liegt das Zauberbuch, in dem sich alle Zauber nachschlagen lassen - * Wie sich das gehört gibt es auch Mana und Zauber brauchen unterschiedlich viel Mana - * Mana regeneriert sich selbst, aber langsam - * Manchmal lassen besiegte Gegner aber auch Mana-Tränke fallen - * Pro-Tipp: Wenn man einen Zauber beschwört hat und ihn noch NICHT auf einen Gegner geschossen hat, regeneriert sich der Mana-Vorrat nicht - * Noch mal zur Erinnerung: Das alles muss innerhalb der Game-Loop passieren - * Ereignisse müssen von Zeiteinheiten in Spielzeit (Frames) umgerechnet werden - * Bsp.: Alle 0,275 Sekunden soll sich Mana regenerieren, d.h. alle 12 Frames - * Das bedingt auch, dass die Events abhängig vom Framecounter getriggert werden und nicht in Realzeit, wenn das Spiel also langsamer läuft regeneriert nicht mehr alle 0,275 Sekunden Mana - -### Kollisionserkennung (00:43:50) - - * Irgendwann muss ermittelt werden, ob ein Gegner getroffen wurde oder nicht - * Es wurden zwei Varianten verwendet: - * Rectangle-Rectangle: Überschneiden sich zwei Rechtecke, dann ist es ein Treffer - * Problem: Einige Zauber können über Gegner "hinwegfliegen" und treffen diese nicht - * Lösung: Nur der Gegner darf getroffen werden, der vorher angeklickt wurde - * Problem: Was heißt "angeklickt"? - * Point-Rectangle: Ist ein Punkt in einem anderen Rechteck. Punkt ist in diesem Fall der "Finger" des Spielers. - * Aber es gibt auch komplexere Erkennungen: - * Der Steinzauber fliegt über das ganze Spielfeld und trifft dabei jeden Gegner - * Wenn in zwei aufeinanderfolgenden Frames ein Gegner zweimal von gleichen Stein getroffen wird, darf der Treffer nur einmal zählen - * Der Stein muss sich also merken wen er getroffen hat o_O - * Vorbereitung für Combosystem ;-) - * Was "musste" man sich selber ausdenken? - * Konzepte wie Game-Loop und Erkennen von Kollisionen existieren und sind gut beschrieben - * Details wie wen hat man getroffen, wen wollte man treffen etc. müssen dann selbst modelliert werden - * Kollisionserkennung kann beliebig komplex werden. Stichwort: Polygone - * In der Spieleentwicklung existieren ebenso Pattern wie in anderen Bereichen der Software-Entwicklung - -### Gesten (00:50:00) - - * Was muss man da selber machen - * iOS nimmt einem kaum etwas ab - * Angefangen mit GLGestureRecognizer (https://github.com/preble/GLGestureRecognizer) - * Open Source Library basiert auf dem $1 Unistroke Recognizer: https://depts.washington.edu/aimgroup/proj/dollar/ - * In der damals verwendeten Version keine zufriedenstellenden Ergebnisse - * Aktuelle Version des Spiels verwendet eine eigene Implementierung - * Prinzip basiert auf "Spiele entwickeln für iPhone und iPad (S. 398 ff.)" - * Man erstellt eine Matrix und vergibt jedem Feld der Matrix einen Buchstaben - * Die Geste wird über die Matrix gelegt und jedes durchquerte Feld wird ausgelesen - * Ergebnis ist eine String-Repräsentation der Geste: Sampling der Geste - * Wahl der Auflösung ist entscheidend - * Mehrere Zeichenketten können die gleiche Geste bedeuten - * Aktuell gute Ergebnisse aber immer noch nicht perfekt - * Was stellt aber nun iOS zur Verfügung? - * iOS entscheidet ob es eine Geste oder ein Touch war - * Man kann sich dann die Koordinaten der Geste geben lassen oder schon während der Ausführung der Geste die Koordinaten einsammeln (Björn macht die erste Variante) - * Noch mal zur Erinnerung: Das alles muss innerhalb der Game-Loop passieren, sprich in jeder 1/33 Sekunde - * Aussteuerung der erlaubten Toleranz bedingt potentielle Überschneidungen mit anderen Gesten - * GLGestureRecognizer hat aktuelle eine neue Version. Denkbar ist eine Kombination aus beiden Ansätzen. Oder ganz neuer Ansatz/Bibliothek. - * Von außen betrachtet ein einfaches Spiel und trotzdem gibt es schon Myriaden von Dingen zu beachten o_O - -### Sound und Musik abspielen (00:57:35) - - * Wie wird Sound/Musik abgespielt? - * Sound und Musik ist erstaunlich einfach: - * Musik: Zu Beginn des Spiels das Abspielen der Musik an iOS übergeben - * Soundeffekte: Wird in dem entsprechenden Frame an iOS übergeben - * Fertig :-) - -### Entwicklungsprozess (00:58:59) - - * Anzeige von Sprites mittels OpenGL - * Bewegen/Animieren von Sprites - * Interagieren mit dem Spiel (Gesten-Erkennung) - -### Testen (01:00:55) - - * HockeyApp: http://hockeyapp.net/ - * Für SSB: TestFlight: http://testflightapp.com/ - * TestFlight kostenlos - * Regelmäßige Updates an Tester - * 10 bis 15 Tester - * Iterative Entwicklung parallel zum Testen - -### Zum Schluss: Menüs, Logo, Settings etc. (01:02:09) - - * Macht das Spiel rund - * Umsetzung nochmals viel Zeit gebraucht - * Viele Fallstricke beim Sound/Musik - -### Balancing (01:04:20) - - * Auch iterativer/begleitender/explorativer Prozess - * Gradwanderung - * Spannende Phase - * Spiel eventuell zu schwer für Causal Gamer - * Dirk wartet immer noch auf sein Review zu Super Spell Boy im App-Store - -### Entwicklungsdauer (01:06:25) - - * 710:42 Stunden (~ 4,5 Monate) - * Überwiegend Teilzeit auf über ein Jahr gestreckt - * Teilzeit erschwert die Entwicklung - -### SpriteKit (01:08:50) - - * Sprite Kit Programming Guide: https://developer.apple.com/library/ios/documentation/SpriteKit/Reference/SpriteKitFramework_Ref/_index.html - * Nimmt viele Low-Level-Entwicklungen ab - * 2D-Spiele-Entwicklung - * Entwicklung für iOS und OSX - * OpenGL drin - * Physik drin (Collision Detection, Gravity) - * Partikelsystem - * Animationen - * Unterstützt ab iOS7 - * 200 Millionen Installationen iOS 7 - * Auf den Support von älteren iOS verzichten - * Konzentrieren nur auf die Spiele-Entwicklung - * Erhöhter Aufwand, wenn auch < iOS 7 unterstützt wird - -### Preisfindung (01:15:10) - - * Schritt für Schritt an den Preis angenähert - * Schlechte Bewertung im App Store, wenn Preis "zu hoch" - * Preise für Apps und Spiele im App Store "anders" - * Viel mit Leuten gesprochen, die sich auskennen - * Ursprünglich 0,89 Euro - * Davon wurde mir abgeraten: Tolles Spiel, nicht verschleudern - * Preis-"Tiers": Preise im App-Store sind gestaffelt - * Keine Ads - * Momentan noch kein In-App-Purchases - * Ein Preis - * Besprechen der verschiedenen Preise bekannter Spiele im App Store - * Entschieden für Tier 3: 2,69 Euro - * Der Entwickler bekommt: 1,64 Euro - * Preis = 2,69 Euro - USt. - 30 % an Apple - * Ne Menge verkaufen um davon leben zu können - * Glücklich, wenn Super Spell Boy so viel einspielt, dass das nächste Spiel finanziert ist - -### Marketing (01:25:01) - - * Während der Entwicklung kaum Marketing - * Seit Release Facebook (https://www.facebook.com/SuperSpellBoy), Twitter (https://twitter.com/SuperSpellBoy) etc. - * Werbung bisher nur in Facebook - * Likes "kaufen" - * Gameplay-Video "Fast Forward" beworben: http://www.youtube.com/watch?v=L_WZVLLU2Mg. Hat mittlerweile 1470 Likes - * Budget pro Tag - * Im Detail die Zielgruppe bestimmen - * Nur Spiele-Interessierte - * Nur iOS-Nutzer - * etc. - * Apple Verkaufsstatistiken sind verzögert - * Promo-Codes - * Anschreiben wegen Promo-Codes - * Bewertung schreiben im App-Store - * Wurde angeschrieben von YouTube-App-Reviewer - * 1 Review für Lau (paar hundert Views pro Video) - * 1 Review für 350 USD (Views im tausender Bereich) - -### Monetarisierung als Indie-Game-Entwickler (01:33:57) - - * Interview mit Michael Contento http://www.gamasutra.com/blogs/RuthWilson/20130827/199049/CREATING_GAMES_FOR_KIDS_HOW_TO_FIND_AND_TEST_CONTENT_MONETIZE_AND_MARKET_YOUR_GAME.php - * Cross-Platform-Entwickler - * Spieler für Kinder - * Free2Play - * In-App-Purchase - * Werbung ausblenden - * Weitere Level kaufen - * Interview: Welche Herausforderungen bei diesem Ansatz - * Ansazt auf Masse - * Andere Strategien da man alleine ist - * Marketing ist teuer - * Ziel: Spiel muss in die Top-Charts kommen - * Einkaufen von Reviews, Pressemitteilungen und Downloads - * Preise hoch/runter setzen um auf Crawling-Seiten zu erscheinen - -### Zusammenfassung (01:38:04) - - * Game-Entwicklung cool - * Marketing uncool - * Weitere Links: - * iOS 5 By Tutorials (http://www.raywenderlich.com/store/ios-5-by-tutorials) - * iOS 6 By Tutorials (http://www.raywenderlich.com/store/ios-6-by-tutorials)]]> - Synopsis: Wir haben uns mit unserem @HomeOfficeCGN Kollegen Björn hingesetzt und über Spieleentwicklung -gesprochen. Konkret ging es um iOS Spiele und noch konkreter um die Entstehung von Super Spell Boy, dem ersten -erschienen Titel für iOS von Björn. Wir gehen alles durch: von Grafiken erstellen, über Sounddesign, Gameloops -bis hin zur Preisfindung und Vermarktung.

    - -

    Intro (00:00:00)

    - - - -

    Unser Gast (00:01:50)

    - -
      -
    • Björn @_orko Vollmer, Rhineality Games (http://rhinealitygames.com/)
    • -
    • Zu finden im @HomeOfficeCGN :)
    • -
    • hat Informatik an der FH Köln studiert
    • -
    • pkw.de: "klassische" Rails Webentwicklung
    • -
    • seit 10.10.2010 (weil 101010 = 42 \o/) als Freiberuflicher Softwareentwickler unterwegs
    • -
    • und seit kurzem: Mehr in Richtung Entwicklung von eigenen Spielen
    • -
    - -

    Browser Spieleentwicklung (00:04:00)

    - - - -

    iOS Spieleentwicklung (00:07:00)

    - -
      -
    • Dann kam der Entschluss ein iOS Spiel zu machen (Startschuss: April 2012)
    • -
    • Ziele waren: - -
        -
      • Mit weniger Umfang
      • -
      • Alle Dinge mussten selbst gemacht werden ^^
      • -
    • -
    • Bisher unbekannte Plattform
    • -
    • Einfach losgelegt, ohne sich in vorher groß einzulesen
    • -
    • Bei Spielen ohnehin wenig Kontakt mit UIKit und daher Custom-UI
    • -
    • Bücher - -
    • -
    • Grafik hat Björn mit OpenGL implementiert
    • -
    • Bei OpenGL verlässt man Objective-C Land und macht Vanilla C ;-)
    • -
    • Björn war froh als er damit fertig war ^^
    • -
    • OpenGL muss nicht 3D sein, für 2D gibt es aber auch andere Möglichkeiten
    • -
    • Entscheidung für OpenGL war von eher pragmatischer Natur
    • -
    - -

    Grafiken (00:16:20)

    - -
      -
    • Grafiken kaufen? Selber machen?
    • -
    • Mastermind: http://de.wikipedia.org/wiki/Mastermind
    • -
    • Kurze Historie... - -
        -
      • Im April 2012: Mit Super Spell Boy angefangen
      • -
      • Im Dezember 2012: Versuch ein (anderes) Spiel in zwei Monaten zu machen, weil die ursprüngliche Idee zu schwer erschien
      • -
      • Dann Anfang 2013: Doch wieder zurück zu Super Spell Boy, weil geilere Idee :)
      • -
    • -
    • Pixel Art: http://en.wikipedia.org/wiki/Pixel_art
    • -
    • Pixel Art Editor unter OS X Pixen: http://pixenapp.com/
    • -
    • Dann: Viel üben, nachmalen, ausprobieren…
    • -
    • Die Objekte im Spiel sind über Vertices definiert, über die Texturen gespannt werden
    • -
    • Animationen sind Bilder, wo mehrere Bilder z.B. der Figur nebeneinander stehen
    • -
    • Gameloop: http://en.wikipedia.org/wiki/Game_programming#Game_structure, http://www.gameprogblog.com/generic-game-loop/ - -
        -
      • eine endlose Schleife, die z.B. 33 mal pro Sekunde ausgeführt wird (33 fps)
      • -
      • enthalten in der Schleife ist alles, was das Spiel ausmacht: Gamelogik, Rendering usw.
      • -
      • Taktung von Animationen und Ereignissen auf die Taktung der Gameloop
      • -
    • -
    - -

    Sound & Music erstellen (00:28:52)

    - -
      -
    • Der Intro-Sound dieser Folge war die Menümusik aus dem Spiel
    • -
    • Musik/Sound ist ein ähnliches Problem wie das Grafikproblem: Woher nehmen?
    • -
    • Laut Literatur hätte man damit direkt anfangen sollen, hat Björn aber nicht gemacht :P
    • -
    • Auch hier zunächst wieder versucht Sound-Effekte einzukaufen
    • -
    • Folgende Seiten angeschaut: - -
    • -
    • Nix dabei gewesen, weil Sound sollte vom Stil zum Spiel passen (lies: 8-bit)
    • -
    • Dabei eine App gefunden, mit der man diese Sound leicht selber machen kann: http://thirdcog.eu/apps/cfxr
    • -
    • Das heisst: Die Sound sind auch selbst gemacht
    • -
    • Thema Musik: Kaufen ist teuer, daher Creative Commons
    • -
    • Dabei ist er bei Eric Skiff (http://ericskiff.com/music/) gelandet
    • -
    • Die Musik (und unser Intro) ist von dem Album "Resistor Anthems"
    • -
    • Basti erwähnt, dass das Spiel direkt einen vollständigeren Eindruck gemacht als Musik dabei war
    • -
    • Findet George Lucas auch ;-) (http://www.brainyquote.com/quotes/quotes/g/georgeluca462198.html)
    • -
    - -

    Super Spell Boy (00:33:53)

    - -
      -
    • Im App-Store: https://itunes.apple.com/app/id702233807
    • -
    • Retro-Spiel, Retro-Name
    • -
    • Worum geht es: Der Spieler steuert einen Zauberer auf seiner Burg und muss diese gegen unendliche Horden dunkler Kreaturen verteidigen
    • -
    • Wir fragen uns was es für ein Genre ist - -
    • -
    • Wenn die Burg zerstört ist, dann ist das Spiel vorbei
    • -
    • Wie verteidigt man seine Burg? Natürlich mit Magie!
    • -
    • Man beschwört die Zauber per Gesten (a.k.a. der USP des Spiels)
    • -
    • Gespielt wird Portrait-Modus und die Gegner kommen vom oberen Bildschirmrand
    • -
    • Die Herausforderung für den Spieler besteht in: - -
        -
      • Lernen und Erinnern der richtigen Gesten
      • -
      • Lernen und Erinnern welche Gegner gegen welche Zauber anfällig sind
      • -
      • Bsp.: Brennender Gegner -> KEIN Feuer
      • -
    • -
    • Von Beginn an alle Zauber verfügbar - -
        -
      • Erst war die Idee, dass man nach und nach die Zauber freispielt
      • -
      • Ist aber "einfach" ein Arcadespiel: Solange spielen bis man stirbt.
      • -
    • -
    • Alle UI-Elemente sind im Spiel integriert: - -
        -
      • Pause-Button ist das Tor der Burg
      • -
      • Auf dem linken Turm liegt das Zauberbuch, in dem sich alle Zauber nachschlagen lassen
      • -
    • -
    • Wie sich das gehört gibt es auch Mana und Zauber brauchen unterschiedlich viel Mana
    • -
    • Mana regeneriert sich selbst, aber langsam
    • -
    • Manchmal lassen besiegte Gegner aber auch Mana-Tränke fallen
    • -
    • Pro-Tipp: Wenn man einen Zauber beschwört hat und ihn noch NICHT auf einen Gegner geschossen hat, regeneriert sich der Mana-Vorrat nicht
    • -
    • Noch mal zur Erinnerung: Das alles muss innerhalb der Game-Loop passieren
    • -
    • Ereignisse müssen von Zeiteinheiten in Spielzeit (Frames) umgerechnet werden - -
        -
      • Bsp.: Alle 0,275 Sekunden soll sich Mana regenerieren, d.h. alle 12 Frames
      • -
    • -
    • Das bedingt auch, dass die Events abhängig vom Framecounter getriggert werden und nicht in Realzeit, wenn das Spiel also langsamer läuft regeneriert nicht mehr alle 0,275 Sekunden Mana
    • -
    - -

    Kollisionserkennung (00:43:50)

    - -
      -
    • Irgendwann muss ermittelt werden, ob ein Gegner getroffen wurde oder nicht
    • -
    • Es wurden zwei Varianten verwendet: - -
        -
      • Rectangle-Rectangle: Überschneiden sich zwei Rechtecke, dann ist es ein Treffer
      • -
      • Problem: Einige Zauber können über Gegner "hinwegfliegen" und treffen diese nicht
      • -
      • Lösung: Nur der Gegner darf getroffen werden, der vorher angeklickt wurde
      • -
      • Problem: Was heißt "angeklickt"?
      • -
      • Point-Rectangle: Ist ein Punkt in einem anderen Rechteck. Punkt ist in diesem Fall der "Finger" des Spielers.
      • -
    • -
    • Aber es gibt auch komplexere Erkennungen: - -
        -
      • Der Steinzauber fliegt über das ganze Spielfeld und trifft dabei jeden Gegner
      • -
      • Wenn in zwei aufeinanderfolgenden Frames ein Gegner zweimal von gleichen Stein getroffen wird, darf der Treffer nur einmal zählen
      • -
      • Der Stein muss sich also merken wen er getroffen hat o_O
      • -
      • Vorbereitung für Combosystem ;-)
      • -
    • -
    • Was "musste" man sich selber ausdenken? - -
        -
      • Konzepte wie Game-Loop und Erkennen von Kollisionen existieren und sind gut beschrieben
      • -
      • Details wie wen hat man getroffen, wen wollte man treffen etc. müssen dann selbst modelliert werden
      • -
    • -
    • Kollisionserkennung kann beliebig komplex werden. Stichwort: Polygone
    • -
    • In der Spieleentwicklung existieren ebenso Pattern wie in anderen Bereichen der Software-Entwicklung
    • -
    - -

    Gesten (00:50:00)

    - -
      -
    • Was muss man da selber machen
    • -
    • iOS nimmt einem kaum etwas ab
    • -
    • Angefangen mit GLGestureRecognizer (https://github.com/preble/GLGestureRecognizer) - -
    • -
    • Aktuelle Version des Spiels verwendet eine eigene Implementierung - -
        -
      • Prinzip basiert auf "Spiele entwickeln für iPhone und iPad (S. 398 ff.)"
      • -
      • Man erstellt eine Matrix und vergibt jedem Feld der Matrix einen Buchstaben
      • -
      • Die Geste wird über die Matrix gelegt und jedes durchquerte Feld wird ausgelesen
      • -
      • Ergebnis ist eine String-Repräsentation der Geste: Sampling der Geste
      • -
      • Wahl der Auflösung ist entscheidend
      • -
      • Mehrere Zeichenketten können die gleiche Geste bedeuten
      • -
      • Aktuell gute Ergebnisse aber immer noch nicht perfekt
      • -
    • -
    • Was stellt aber nun iOS zur Verfügung? - -
        -
      • iOS entscheidet ob es eine Geste oder ein Touch war
      • -
      • Man kann sich dann die Koordinaten der Geste geben lassen oder schon während der Ausführung der Geste die Koordinaten einsammeln (Björn macht die erste Variante)
      • -
    • -
    • Noch mal zur Erinnerung: Das alles muss innerhalb der Game-Loop passieren, sprich in jeder 1/33 Sekunde
    • -
    • Aussteuerung der erlaubten Toleranz bedingt potentielle Überschneidungen mit anderen Gesten
    • -
    • GLGestureRecognizer hat aktuelle eine neue Version. Denkbar ist eine Kombination aus beiden Ansätzen. Oder ganz neuer Ansatz/Bibliothek.
    • -
    • Von außen betrachtet ein einfaches Spiel und trotzdem gibt es schon Myriaden von Dingen zu beachten o_O
    • -
    - -

    Sound und Musik abspielen (00:57:35)

    - -
      -
    • Wie wird Sound/Musik abgespielt?
    • -
    • Sound und Musik ist erstaunlich einfach: - -
        -
      • Musik: Zu Beginn des Spiels das Abspielen der Musik an iOS übergeben
      • -
      • Soundeffekte: Wird in dem entsprechenden Frame an iOS übergeben
      • -
      • Fertig :-)
      • -
    • -
    - -

    Entwicklungsprozess (00:58:59)

    - -
      -
    • Anzeige von Sprites mittels OpenGL
    • -
    • Bewegen/Animieren von Sprites
    • -
    • Interagieren mit dem Spiel (Gesten-Erkennung)
    • -
    - -

    Testen (01:00:55)

    - - - -

    Zum Schluss: Menüs, Logo, Settings etc. (01:02:09)

    - -
      -
    • Macht das Spiel rund
    • -
    • Umsetzung nochmals viel Zeit gebraucht
    • -
    • Viele Fallstricke beim Sound/Musik
    • -
    - -

    Balancing (01:04:20)

    - -
      -
    • Auch iterativer/begleitender/explorativer Prozess
    • -
    • Gradwanderung
    • -
    • Spannende Phase
    • -
    • Spiel eventuell zu schwer für Causal Gamer
    • -
    • Dirk wartet immer noch auf sein Review zu Super Spell Boy im App-Store
    • -
    - -

    Entwicklungsdauer (01:06:25)

    - -
      -
    • 710:42 Stunden (~ 4,5 Monate)
    • -
    • Überwiegend Teilzeit auf über ein Jahr gestreckt
    • -
    • Teilzeit erschwert die Entwicklung
    • -
    - -

    SpriteKit (01:08:50)

    - - - -

    Preisfindung (01:15:10)

    - -
      -
    • Schritt für Schritt an den Preis angenähert
    • -
    • Schlechte Bewertung im App Store, wenn Preis "zu hoch"
    • -
    • Preise für Apps und Spiele im App Store "anders"
    • -
    • Viel mit Leuten gesprochen, die sich auskennen
    • -
    • Ursprünglich 0,89 Euro
    • -
    • Davon wurde mir abgeraten: Tolles Spiel, nicht verschleudern
    • -
    • Preis-"Tiers": Preise im App-Store sind gestaffelt
    • -
    • Keine Ads
    • -
    • Momentan noch kein In-App-Purchases
    • -
    • Ein Preis
    • -
    • Besprechen der verschiedenen Preise bekannter Spiele im App Store
    • -
    • Entschieden für Tier 3: 2,69 Euro
    • -
    • Der Entwickler bekommt: 1,64 Euro
    • -
    • Preis = 2,69 Euro - USt. - 30 % an Apple
    • -
    • Ne Menge verkaufen um davon leben zu können
    • -
    • Glücklich, wenn Super Spell Boy so viel einspielt, dass das nächste Spiel finanziert ist
    • -
    - -

    Marketing (01:25:01)

    - -
      -
    • Während der Entwicklung kaum Marketing
    • -
    • Seit Release Facebook (https://www.facebook.com/SuperSpellBoy), Twitter (https://twitter.com/SuperSpellBoy) etc.
    • -
    • Werbung bisher nur in Facebook
    • -
    • Likes "kaufen"
    • -
    • Gameplay-Video "Fast Forward" beworben: http://www.youtube.com/watch?v=L_WZVLLU2Mg. Hat mittlerweile 1470 Likes
    • -
    • Budget pro Tag
    • -
    • Im Detail die Zielgruppe bestimmen - -
        -
      • Nur Spiele-Interessierte
      • -
      • Nur iOS-Nutzer
      • -
      • etc.
      • -
    • -
    • Apple Verkaufsstatistiken sind verzögert
    • -
    • Promo-Codes - -
        -
      • Anschreiben wegen Promo-Codes
      • -
      • Bewertung schreiben im App-Store
      • -
    • -
    • Wurde angeschrieben von YouTube-App-Reviewer - -
        -
      • 1 Review für Lau (paar hundert Views pro Video)
      • -
      • 1 Review für 350 USD (Views im tausender Bereich)
      • -
    • -
    - -

    Monetarisierung als Indie-Game-Entwickler (01:33:57)

    - - - -

    Zusammenfassung (01:38:04)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST025 - Vom Tellerwäscher zum Lisp-Entwickler - no - Dirk Breuer, Sebastian Cohnen - Mit Moritz Heidkamp über die Geschichte und das Ökosystem von Lisp - - GST025 - Mon, 21 Oct 2013 18:56:59 +0200 - 01:38:57 - - Synopsis: Wir hatten Moritz Heidkamp aus Köln auf unserer Couch zu Gast und sprachen mit ihm über Lisp. Wir haben dabei ganz vorne bei John McCarthy angefangen und uns dann bis in die Gegenwart zu Clojure durchgebissen. Auf dem Weg dorthin lernen wir, wie zersplittert die Lisp-Gemeinde schon immer war und wohl auch immer sein wird. Was daraus für Probleme entstehen, aber vor allem welche Möglichkeiten es eröffnet. Den Abschluss macht ein Rückblick der EuroClojure und einige Buchempfehlungen für Einsteiger.

    - -

    Intro (00:00:00)

    - - - -

    Unser Gast (00:01:15)

    - -
      -
    • Moritz Heidkamp, @DerGuteMoritz, http://ceaude.twoticketsplease.de/
    • -
    • Softwareentwickler seit 2006
    • -
    • wollte ursprünglich mal Deutsch- und Geschichtslehrer werden
    • -
    • studiert nun (ein bisschen) Informationsverarbeitung an der Uni Köln (Crossover aus Informatik und Geisteswissenschaften)
    • -
    • Gründungsmitglied RuRuG, der Vorläufer der heutigen cologne.rb (http://colognerb.de)
    • -
    - -

    Informatik an den Schulen (00:05:55)

    - -
      -
    • Moritz hatte einen guten Informatiklehrer
    • -
    • Basti leider nicht :-/
    • -
    • Wir fragen uns, ob es Informatik auf Lehramt gibt
    • -
    • Weil Informatiklehrer ja oft gar keine Informatiker sind
    • -
    • Rasberry Pi: http://www.raspberrypi.org
    • -
    - -

    Von Ruby zu Lisp (00:10:58)

    - - - -

    Elixir (00:14:23)

    - - - -

    Lisp, eine Historie (00:25:30)

    - - - -

    Lisp in der Praxis (00:56:17)

    - -
      -
    • Probleme für den realen Einsatz ergeben sich durch die vielen Unterschiede allerdings weniger als man denkt
    • -
    • Trotzdem ist es ein Problem, dass sehr viel Energie "verloren" geht: Die tolle Bibliothek A lässt sich dann nicht in Lisp X verwenden
    • -
    • Man muss das Rad zwar relativ oft neu erfinden, aber es gibt zumindest einige Implementierung mit einer kleinen Community und Infrastruktur
    • -
    • Bei bevuta wird Chicken Scheme (http://www.call-cc.org/) eingesetzt und man kann etwa auf 500 Erweiterungen zugreifen ("Eggs", lassen sich ähnlich wie Rubygems installieren)
    • -
    • Insgesamt extremer Gegensatz zu Java: Bis ins letzte spezifizierte Sprache mit definiertem Verhalten
    • -
    • Stichwort Java: Clojure versucht den Nachteil von zu wenig Bibliotheken so auszugleichen, dass man auf Java-Bibliotheken zugreifen kann
    • -
    • Problem: Das Programmiermodell von Java passt nicht zu dem von Clojure
    • -
    • Die Abbildung von Java-Objekten in Clojure und deren Verwendung ist Aufgabe des Entwicklers
    • -
    • Für jede Klasse muss im Grunde eine neue Sprache gelernt werden
    • -
    • Eine Möglichkeit ist zum Beispiel Attribute aus einem Java-Objekt in eine Clojure-Map zu übertragen
    • -
    • Beispiel: Ring (https://github.com/ring-clojure/ring) übersetzt Requests aus Java-Webservern in Clojure-Maps und zurück
    • -
    • Lisps versuchen in der Regel alles auf Listen abzubilden, weil dafür gibt es schon alle Operationen
    • -
    • Klassen sind hingegen durch die Vorgaben des Entwicklers in ihrer Verwendung eingeschränkt
    • -
    • Zwei Kulturen treffen aufeinander, dazu gibt es von Rich Hickey (Clojure) einige gute Talks: https://www.youtube.com/watch?v=rI8tNMsozo0
    • -
    • Andere Ansätze/Modelle können/sollten Anregungen für die eigene "Welt" geben (z.B.: Immutability lässt sich auch in anderen Sprachen verwenden)
    • -
    • bevuta versucht so viel wie möglich in Scheme zu machen, aber gerade bei Mobilentwicklung ist das leider nicht möglich - -
        -
      • Theoretisch läuft Clojure zwar auf Android, ist dort aber viel zu langsam
      • -
    • -
    • Aber: Die Businesslogik kann in Scheme geschrieben werden und wird anschließend nach C kompiliert, um das dann in Objective-C und Java (via JNI) einzubinden
    • -
    • Notwendiger Glue-Code ist sehr wenig, vor allem im Fall von Objective-C, JNI ist da anstrengender
    • -
    • Auch als Script-Sprache lässt sich Scheme ohne weiteres verwenden
    • -
    • Moritz macht alles™ in Emacs (soweit möglich), z.B.: Email, Todo-App. Gibt sogar einen PDF-Reader
    • -
    • Man könnte Emacs auch als Shell booten und dann aus Emacs bei Bedarf Shells starten, dabei kollidieren aber Keybindings (vor allem bei ncurses-Anwendungen). Also nicht so toll.
    • -
    • Stichwort Emacs als Betriebssystem: Es gab in den 70er- und 80er-Jahren auch Lisp-Maschinen: https://de.wikipedia.org/wiki/Lisp-Maschine
    • -
    • Wie die genau funktionieren ist bei uns dünnes Eis ^^
    • -
    • Entwicklung wurde dann Ende der 80er eingestellt, weil die Forschungsgelder im Bereich künstliche Intellegenz (vor allem vom Militär) zusammengestrichen wurden
    • -
    - -

    EuroClojure (01:15:55)

    - -
      -
    • Moritz war auf der EuroClojure in Berlin: http://euroclojure.com/2013/, ist die europäische Clojure Konferenz (~ 300 Teilnehmer)
    • -
    • Ansonsten ist Clojure sehr amerikanisch geprägt
    • -
    • Inhalt aber nicht ausschließlich Clojure, 2 Präsentationen über das eigene Lisp ;-)
    • -
    • Toy Lisp: https://www.google.com/search?q=toy%20lisp
    • -
    • Moritz hat mal eine Liste von Lisp-Implementierungen in Javascript zusammengestellt: Ergebnis 50+
    • -
    • Real-World-Clojure-Projekte auf der Konferenz: - -
        -
      • dailymail.co.uk: Hat ihr uraltes Backend im laufenden Betrieb auf Clojure umgestellt
      • -
      • "Internet of Things"-Plattform ist von Rails nach Clojure migriert; Grund für Clojure war, sie haben am meisten in der kürzesten Zeit erreicht (im Vergleich zu anderen Technologien)
      • -
    • -
    • Clojures Webstack ist bereits sehr ausgereift, u.a. weil viele Ruby-Entwickler zu Clojure gegangen sind und Konzepte mitgenommen haben (Bsp.: Ring ist von Rack inspiriert)
    • -
    • Leider keine Aufzeichnung der Talks :-(
    • -
    • Besonders Schade um die Keynote: - -
        -
      • Verhältnis zwischen der perfekten Architektur und der Abwesenheit von Architektur
      • -
      • Brasília als Beispiel von perfekt geplanter Stadt und dennoch wenig brauchbar
      • -
      • Beispiel von Städteplanung auf Softwareentwicklung
      • -
      • Java EE vs. PHP Frickelshop: Beides kann man nicht wirklich benutzen
      • -
      • Fazit: Ein gute Mischung von Struktur und Chaos finden
      • -
    • -
    • Moritz kann die Konferenz empfehlen, auch für Leute die sonst kein Clojure machen
    • -
    • Clojure ist auch in der Lisp-Community schnell aufgestiegen und gehört mittlerweile zu den Top-3
    • -
    • Positive Auswirkungen des Clojure-Hypes auf die Akzeptanz von Lisp konnte Moritz noch nicht feststellen
    • -
    - -

    Getting Started (01:30:41)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST026 - RubyConf 2013 - no - Dirk Breuer, Sebastian Cohnen - Post-Berichterstattung zur RubyConf 2013 mit Lucas Dohmen - - GST026 - Mon, 25 Nov 2013 11:19:48 +0100 - 01:22:03 - - Synopsis: Lucas und Dirk waren auf der RubyConf in Miami Beach. Wir -berichten von ihren Eindrücken und es gibt natürlich die ein oder andere -Empfehlung für einen Vortrag. Darüber hinaus diskutieren wir über die Inhalte einiger Talks. -Insgesamt ist die Folge leider ein bisschen durcheinander, trotzdem viel Spaß beim hören.

    - -

    Intro (00:00:00)

    - - - -

    Exkurs: Letzter Geekstammtich über Lisp (00:02:35)

    - - - -

    RubyConf (00:04:15)

    - - - -

    Allgemeines (00:07:00)

    - -
      -
    • Talks wurden gestreamt
    • -
    • Videos gibt es gegen Ende November
    • -
    • Dirk und Lucas müssen auch noch Talks schauen (3 Tracks ist halt zu viel)
    • -
    • Anfangs gab es im Schedule keine Angabe der Speaker; wurde dann aber nachgetragen
    • -
    - -

    Talks, Talks, Talks (00:09:25)

    - - - -

    JRuby (00:34:29)

    - -
      -
    • Nächster Release wird definitiv JRuby 9000 heißen
    • -
    • Vorstellung eines verbesserten Entwicklungsprozesses
    • -
    • Talk von Tom Enebo und Charles Nutter: http://rubyconf.org/program#tomenebo-charles-nutter
    • -
    • Überlegungen ob Java 6 Unterstützung mit dem nächsten Release entfernt wird, abhängig von Community-Feedback
    • -
    • Sehr viel aufräumen innerhalb der Code-Basis, vor allem viel wird viel gelöscht ^^
    • -
    • Keine News zu FFI, aber da ist ja eh wieder alles in Ordnung: https://github.com/ffi/ffi/issues/288
    • -
    • In JRuby soll kein FFI verwendet, sondern die native Java-Bibliothek (wie etwa nokogiri)
    • -
    • Release von JRuby 9000 im ersten Quartal 2014
    • -
    • Insgesamt hatte der Talk aber wenig neues gegenüber den bisherigen Talks diesen Jahres
    • -
    • Viel interessanter zu JRuby war aber ein Gespräch mit einem der Sponsoren: Money Desktop, http://www.moneydesktop.com - -
    • -
    - -

    ArangoDB auf der RubyConf (00:47:55)

    - - - -

    Und noch mehr interessante Talks (00:53:40)

    - - - -

    Abendveranstaltung und RailsGirls (00:59:27)

    - - - -

    Und noch mehr Talks (01:03:26)

    - - - -

    Tipps zu Miami Beach (01:17:46)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST027 - Jahresrückblick 2013 - no - Dirk Breuer, Sebastian Cohnen - Der (kleine) Geekstammtisch Jahresrückblick 2013 - - GST027 - Fri, 20 Dec 2013 17:16:52 +0100 - 00:12:41 - - Vorsicht! Diese Folge ist sehr meta! Wir ziehen ein kleines Resümee des letzten Jahres Geekstammtisch und sagen an, dass wir auch nächstes Jahr weitermachen werden :)

    - -

    Wir bedanken uns bei allen Hörern für die Aufmerksamkeit, das tolle Feedback und das Flattern und wünschen frohe Weihnachten und einen guten Rutsch!

    -]]>
    - - - - - - - -
    - - - GST028 - Sprachlos auf dem 30C3 - no - Dirk Breuer, Sebastian Cohnen - Essy, Lucas, Tobias, Bodo, Dirk und Basti berichten ihre Eindrücke vom 30C3 - - GST028 - Mon, 30 Dec 2013 15:43:01 +0100 - 00:47:15 - - Synopsis: Das zweite Joint Venture der @nerdkunde (ohne Klaus, mit Bodo) -und des @geekstammtisch (mit allen) live und in Farbe vom 30. Chaos -Communication Congress (30C3) aus dem @Sendezentrum. Wir geben einen kurzen -persönlichen Rundblick über die letzten vier Tage Kongress. Vielen Dank an das -Sendezentrum für die Bereitstellung des Equipments und Ralf (@rstockm) für die -super Betreuung!

    - -

    Eröffnung (00:00:00)

    - - - -

    Unsere Top-7 (00:07:53)

    - - - -

    So long and thank you for all the ~~fish~~mate (00:44:07)

    - -
      -
    • Danke an den CCC, alle Engel und die Orga für eine großartigen Congress
    • -
    -]]>
    - - - - - - - - - - - - - -
    - - - GST029 - Die JVM ist ein Erfolgsmodell - no - Dirk Breuer, Sebastian Cohnen - Wir sprachen mit Matthias Richter über die Freuden der Java-Entwicklung - - GST029 - Tue, 28 Jan 2014 13:19:21 +0100 - 01:47:38 - - Synopsis: Matthias ist Softwareentwickler und erzählt uns wie er jahrelang -Java im Telko-Sektor gemacht hat. Vor einem Jahr hat er dann die Branche und -die auch die Größe des Unternehmens radikal geändert und macht nun -Produktentwicklung in der Logistikbranche. Neben Java wird dort viel im -Embedded-Bereich entwickelt und trotz eines kleinen Teams sind die Aufgaben -sehr vielfältig. Seit neuestem wird Software nun auch mit JRuby und AngularJS -umgesetzt. Wir erfahren über die damit verbundenen Herausforderungen und wie -damit umgegangen wurde.

    - -

    Einleitung & GST-Meta (00:00:00)

    - - - -

    Unser Gast (00:02:45)

    - -
      -
    • Matthias hat mit Dirk & Basti studiert
    • -
    • …und hat nach dem Studium als Java Entwickler bei einer Softwarefirma im "Telekommunikationsumfeld" gearbeitet
    • -
    • Matthias hat dort nie Admins zu Gesicht bekommen :)
    • -
    • Nach vier Jahren hat Matthias dann etwas neues gesucht und ist in der Logistikbranche gelandet
    • -
    • Kleineres Unternehmen, eigene Produkte, jeder macht alles (Matthias ist also "auch" Admin)
    • -
    • wollte weiter auf der JVM entwickeln
    • -
    • Scala: http://www.scala-lang.org/
    • -
    • Clojure Koans: http://clojurekoans.com/
    • -
    • Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages (von Bruce A. Tate): http://pragprog.com/book/btlang/seven-languages-in-seven-weeks
    • -
    - -

    Java-Entwicklung (00:12:30)

    - - - -

    Deployment & JVM (01:20:00)

    - - - -

    Entwicklungsumgebung (01:23:05)

    - -
      -
    • Matthias hat jahrelang Eclipse verwendet, dann zu IntelliJ gegangen
    • -
    • Mit Ruby dann zu RubyMine gegangen (bzw. IntelliJ mit Ruby-Plugin)
    • -
    • Sublime Text auch mal ausprobiert, geweint
    • -
    • Vim ausprobiert, noch mehr geweint
    • -
    • AngularJS auch in RubyMine, Alternativ auch WebStorm vielleicht eine Möglichkeit
    • -
    • Lokale Entwicklung ist schneller geworden, da kein Kompilieren und Deployment mehr
    • -
    • Lokal wird die Anwendung mit Puma/JRuby entwickelt sowie Grunt für JavaScript
    • -
    • Keine weiteren Java-Abhängigkeiten (außer dem Datenbanktreiber)
    • -
    • Basti möchte wissen wie der Umstieg von IDE in die Welt des Terminals war
    • -
    • Matthias ist aber leider ein schlechtes Beispiel ;-) Er hat Eclipse eigentlich immer "nur" als Editor verwendet
    • -
    • Matthias würde sich gerne auch Vim mal ansehen, aber scheut derzeit die Lernkurve
    • -
    • Frage: Warum Vim? Antwort: Kosten. Aber wir stellen in Frage, ob die Kosten wirklich ein Grund ist. Wahrscheinlich nicht :-)
    • -
    • Insgesamt ist Matthias noch in der Findungsphase: RubyMine ist aber ein Favorit
    • -
    • Matthias hat Spaß auf neue Tools umzustellen :-)
    • -
    - -

    Next Steps (01:30:47)

    - -
      -
    • Derzeit macht er AngularJS Entwicklung, Testing mit Karma, Jasmine, PhantomJS
    • -
    • Es wird auch für Mobile-Plattformen mit AngularJS und Cordova (https://cordova.apache.org/) entwickelt
    • -
    • Die Software die derzeit entwickelt wird, ist sehr allgemein einsetzbar
    • -
    • Im Grunde geht darum Firmen zu unterstützen ihren Kram zusammenzuhalten
    • -
    • Zusätzlich gibt es Systeme die auf Gabelstapler montiert werden
    • -
    • Der Branchenwechseln war eine gute Idee
    • -
    - -

    Fazit (01:33:10)

    - -
      -
    • Bewertung des Wechsels: Positiv, nicht nur wegen dem Spaß sich in neue Dinge einzuarbeiten
    • -
    • Frontend-Entwicklung mit AngularJS fühlt sich tatsächlich mal an wie Entwicklung ;-)
    • -
    • Gab es auch Probleme bei der Umstellung? - -
        -
      • Einige Mitarbeiter wollen sich nicht mit so vielen Technologien befassen, das kann auch OK sein, aber man muss damit als Unternehmen/Team umgehen
      • -
      • Ein Kollege ist auch gegangen, da er mehr .NET machen wollte
      • -
      • Lernkurven müssen an die Geschäftsführung und die anderen Kollegen kommuniziert werden
      • -
      • Viele Parallenen zu GST019 (http://geekstammtisch.de/#GST019)
      • -
      • Die Umstellung ist unter anderem auch dadurch motiviert worden, weil der Chef die Folge gehört hat :-)
      • -
    • -
    • Frage dann vom Chef: Was ist eigentlich dieses Ruby und Rails? Und wenn das so gut ist, warum machen das nicht alle?
    • -
    • Entwicklungsgeschwindigkeit hat mit überzeugt
    • -
    - -

    Ausklang (01:38:35)

    - -
      -
    • Wir sind uns einig, dass die Folge Leute nicht davon abhalten wird weiter Java zu bashen. Dafür ist es auch einfach zu lustig.
    • -
    • Kritiker werden sagen: "Matthias hat ja dann doch von Java auf Ruby gewechselt"
    • -
    • Matthias hat sich eigentlich auf Java 8 gefreut
    • -
    • Das Unternehmen wird nie ganz auf (J)Ruby umstellen, dafür gibt es zu viele Bereiche in denen man Software entwickelt. Gleichzeitig macht das den Reiz aus
    • -
    • JRuby hat zwar kein Komitee aber dennoch genug Entwicklungsresourcen :-)
    • -
    • Problem ist aber, dass die Community recht klein ist und man schwieriger Lösungen für seine Probleme findet: - -
        -
      • Erste Einschränkung: JRuby
      • -
      • Zweiter Einschränkung: JBoss Deployment
      • -
    • -
    • Matthias empfiehlt: Wenn man kein Java-Know-How hat, einfach MRI verwenden
    • -
    • Wir fordern Matthias zu Usergroups zu kommen und ihr Wissen zu teilen
    • -
    • Vor allem JRuby Wissen in die Welt zu tragen lohnt sich
    • -
    • NoSQL-Matters als Konferenz Empfehlung (http://2014.nosql-matters.org/cgn/)
    • -
    • Wenn man ernsthaft JRuby macht, kann man auch mal mit dem Core-Team Kontakt aufnehmen, die freuen sich über derartiges Feedback
    • -
    - -

    Hiring-Pitch (01:44:06)

    - -
      -
    • Wir fragen explizit nach ob noch Entwickler gesucht werden
    • -
    • Antwort: Ja
    • -
    • Firma sitzt in St. Augustin, direkt neben der FH
    • -
    • FrOSCon quasi einen Steinwurf entfernt ;-)
    • -
    • Aufgaben sind sehr vielfältig (Mobile-Entwicklung, Emedded-Entwicklung, Hardware-Entwicklung, Web-Entwicklung, Infrastruktur, etc.)
    • -
    • Die Branche nennt sich: Intra-Logistik
    • -
    • Die Firma heißt IdentPro: http://www.identpro.de/de/, aber bitte nicht von der Webseite abschrecken lassen, die ist old-school-Industrie-kompatibel \o/
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST030 - Turnschuhadministration - no - Dirk Breuer, Sebastian Cohnen - Wir sprachen mit Essy (@casheeew) über das spannende Dasein einer Administratorinnen - - GST030 - Mon, 24 Mar 2014 15:02:41 +0100 - 02:03:22 - - Synopsis: Mit Essy (@casheeew) sprachen wir ausführlich über das Leben und -Arbeiten einer Administratorin innerhalb eines großen Rechenzentrums. Es geht -um Prozesse, Betrieb, Deployment und Komplexität im Umfeld von großen -Hostingumgebungen. Wir gehen auf diverse Aspekte etwas näher ein und erhalten -einen recht vollständigen Einblick in ihren Arbeitsalltag.

    - -

    Unser Gast (00:00:00)

    - - - -

    Deployment über Netzwerkfreigabe (00:10:44)

    - -
      -
    • In GST029 (http://geekstammtisch.de/#GST029) haben wir über Java-Entwicklung und Betrieb gesprochen, dabei viel der Begriff JBoss
    • -
    • Und Essy setzt sich beruflich mit dem Betrieb von Anwendungen auf dem JBoss auseinander
    • -
    • Essy arbeitet bei einem großen Rechenzentrum in Köln
    • -
    • Betrieben werden dort die unterschiedlichsten Anwendungen (vor allem auch große Anwendungen mit vielen Abhängigkeiten)
    • -
    • Herausforderungen: Leben mit komplexeren Prozessen als bei einem Fancy-Web-Startup™
    • -
    • Deployment für den JBoss läuft zum Beispiel so ab: - -
        -
      • Kunde legt Auszug aus seinem JBoss inkl. aller Konfigurationen auf einer Netzwerkfreigabe ab
      • -
      • Essy sucht Änderungen zwischen altem und neuem Stand heraus
      • -
      • Änderungen werden auf allen Systemen eingespielt
      • -
    • -
    • Klingt umständlich und ist es auch, daher der Plan: Verwendung von Puppet: http://puppetlabs.com/
    • -
    • Trotz der Strukturen und Prozesse ist es Essy und ihren Kollegen überlassen welche Tools intern verwendet werden, solange das Ergebnis am Ende passt
    • -
    • Warum mit Puppet? Die nächste Version des Red Hat Enterprise Satellite Server (http://de.redhat.com/products/enterprise-linux/satellite/) setzt auf Puppet auf, daher war hier der Wunsch Puppet auch für weitere Bereiche einzusetzen
    • -
    - -

    Server, Monitoring & Bereitschaft (00:26:00)

    - -
      -
    • Essy verantwortet den vollständigen Server
    • -
    • Die Maschine wird lediglich von einem anderen Team bereitgestellt und übergeben
    • -
    • Neben Maschinen für Kunden gibt es auch Maschinen für Forschung & Entwicklung
    • -
    • Basis-Monitoring (Erreichbarkeit, Plattenfüllstand, etc) kommt mit dem Server mit
    • -
    • Weiteres Monitoring lässt sich dann hinzufügen
    • -
    • Monitoring läuft über Icinga (https://www.icinga.org/), einem Nagios (http://www.nagios.org/) Ableger
    • -
    • Es gibt natürlich auch eine 24x7 Bereitschaft (in der nicht alle Server enthalten sind)
    • -
    • Folge ist: Systeme werden so redundant und solide aufgesetzt, dass man Nachts nicht angerufen wird
    • -
    • Das bedeutet auch, dass man Bereitschaft für Systeme machen muss, die man in der Regel nicht selbst betreut
    • -
    • Dafür existiert dann entsprechende Dokumentation, die regelmäßig kontrolliert und auditiert wird
    • -
    - -

    Softwarelandschaft (00:35:48)

    - -
      -
    • Unterschiedlichste Versionsstände von (beispielsweise) Java (von alt bis ganz neu)
    • -
    • JBoss wird nicht in der Community-Variante verwendet, sondern in der kommerziell unterstützten
    • -
    • Die Open-Source Variante wird auch nicht mehr JBoss heißen, sondern WildFly (https://github.com/wildfly/wildfly)
    • -
    • Kostet nicht unerheblich, aber weniger im Vergleich zu anderen Produkten
    • -
    • Support lohnt sich und wurde von Essy auch immer mal wieder in Anspruch genommen
    • -
    • Als Dienstleister hat mal im Grunde keine andere Wahl als den kommerziellen Support sowohl von Red Hat Linux als auch JBoss zu nehmen
    • -
    • Aus diesem Grund wird Ruby 1.8.7 auch immer noch von Red Hat gepflegt
    • -
    • Was dann natürlich zu anderen Problemen führt ^^
    • -
    - -

    Virtualisierung (00:40:40)

    - - - -

    Prozesszertifizierung, Support und Monitoring der Kaffeemaschinen (00:44:35)

    - -
      -
    • Zertifizierung ist für einen Betreiber eines Rechenzentrums sehr wichtig
    • -
    • Die ISO in diesem Fall ist die 27001 (http://de.wikipedia.org/wiki/ISO/IEC_27001)
    • -
    • In diesem Zuge werden vor allem organisatorische Aspekte geprüft
    • -
    • Neben der Dokumentation der Prozesse werden aber auch Gespräche mit Mitarbeitern geführt und exemplarisch Server betrachtet
    • -
    • Das Audit findet jährlich statt
    • -
    • Pentesting (http://de.wikipedia.org/wiki/Penetrationstest_(Informatik)) ist nicht Teil der Zertifizierung
    • -
    • Glücklicherweise keine PCI Zertifizierung (http://de.wikipedia.org/wiki/Payment_Card_Industry_Data_Security_Standard)
    • -
    • Bei der Vielzahl von Kunden und Projekten lassen sich umfangreiche Prozesse am Ende aber nicht vermeiden
    • -
    • Das Maximum an Projekten, die man so übernimmt varriert und hängt von der Komplexität der jeweiligen Projekte ab
    • -
    • Essy macht glücklicherweise kaum bis keinen Support (:
    • -
    • Der Rest des Teams macht aber durchaus auch mehr 2nd-Level Support
    • -
    • 2nd-Level Support hat keinen unmittelbaren Kontakt mit dem Kunden
    • -
    • Inhouse Servicecenter für den First Level Support, wenn das nicht reicht, landen die Tickets im Team im Second Level Support
    • -
    • Ärzte schrauben ganz gerne mal selbst an PCs rum und mailen an alle über den Mailverteiler
    • -
    • Basti hat mal in einer Firma die Druckerlandschaft mitkonfiguriert, globales Auslesen von über SNMP von Tonerfüllständen mit Abgleich auf den Lagerbestand und ggf. direkte automatisierte Bestellung beim Händler
    • -
    • Drucker sind natürlich auch im Icinga ;-) Telefone allerdings nicht mehr
    • -
    • Icinga hört immer dort auf, wo es spezialisierte Tools der jeweilgen Produkte gibt - -
    • -
    • Ungelöstes Problem: Monitoring und Alerting der Kaffeemaschinen
    • -
    - -

    K-Fälle (01:02:35)

    - -
      -
    • K-Fälle wie Katastrophenfälle
    • -
    • Redundanz bedeutet in diesem Fall auch, dass ein Rechenzentrum wegbrechen kann
    • -
    • Für diesen Fall werden unterschiedliche Szenarien durchgespielt, um Lücken im System zu entdecken
    • -
    • ESX-Cluster werden inkl. Storage zwischen den Rechenzentren gespiegelt und im Hot-Standby gehalten
    • -
    • Dafür braucht man dann allerdings auch entsprechend Bandbreite
    • -
    • Wir vermuten, dass Darkfibers in Köln zu bekommen kein Problem sein sollten
    • -
    • Diese hohe Ausfallsicherheit lohnt sich erst für Projekte/System ab einem gewissen Grad, vorher macht es finanziell einfach keinen Sinn
    • -
    • Finanziell bedeutet in diesem Fall weniger Hardware, sondern vor allem Personal, Organisation und Prozess
    • -
    • Resultat ist in jedem Fall die Einbüßung von Flexibilität
    • -
    • Hohe Anhängigkeiten zwischen verschiedenen Teams
    • -
    - -

    Deployment, Koordination (01:10:30)

    - -
      -
    • Produktmanager koordinieren zwischen Kunde, externer Entwicklung und Infrastruktur
    • -
    • Es gibt komplexe Abhängigkeiten zwischen verschiedenen System (sowohl in Hard- als auch Software)
    • -
    • Zero-Downtime Deployments werden angestrebt, aber sind nicht immer möglich
    • -
    • Vor Deployments: Wöchentliche Meetings von Teams zur Koordination
    • -
    - -

    Tooling (01:16:00)

    - - - -

    git, Gitlab, Stash, Github Enterprise (01:18:35)

    - - - -

    Administration und Automatisierung (01:25:00)

    - -
      -
    • Turnschuh-Administration: Monkey see, Monkey do!
    • -
    • Automatisierung ist nicht for-free und ein anhaltender Prozess
    • -
    • "Läuft's noch oder automatisierst du schon?" (@bascht)
    • -
    - -

    Backups (01:28:20)

    - -
      -
    • Regelmäßig machen, lang genug aufbewahren UND
    • -
    • Restore testen!
    • -
    • Bei Essys Arbeitgeber gibt es dazu ein dediziertes Backup Team
    • -
    • von VMs werden Snapshots erstellt und gesichert
    • -
    • Restore ist ein Informationssicherheitsvorfall
    • -
    - -

    Chaos Monkey (01:32:20)

    - - - -

    IPv6 (01:38:05)

    - - - -

    Verschiedenes (01:38:30)

    - - - -

    Telearbeit (01:45:00)

    - -
      -
    • Essy hat einen (Windows) Arbeitsrechner und darf mit ihrem Mac Book nicht ins Firmennetz
    • -
    • WPA2: https://en.wikipedia.org/wiki/Wi-Fi_Protected_Access
    • -
    • Remote Zugang via Citrix, dann via Remote Desktop (RDP) zum Arbeitsrechner und von da aus zu den Servern
    • -
    • Problem dabei: Keyboard Shortcuts funktionieren wegen dem hin- und hermapping nicht so richtig
    • -
    • Essy kann Heimarbeit machen, sofern es keine Notwendigkeit gibt, Vorort zu arbeiten
    • -
    - -

    Homesetup (01:53:55)

    - -
      -
    • Essy hat drei Displays (sowohl zuhause als auch auf der Arbeit) und sich kürzlich neue Hardware für einen Desktop Rechner gekauft
    • -
    • Dirk und Basti haben schon EWIG keinen Rechner mehr komplett aus Einzelteilen gebaut
    • -
    - -

    Abschluß (01:59:15)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST031 - CORBA in cool - no - Dirk Breuer, Sebastian Cohnen - Wir haben mit Stefan Tilkov über Softwarearchitekturen, REST und das Web gesprochen. - - GST031 - Mon, 14 Apr 2014 13:39:53 +0200 - 01:20:22 - - Synopsis: Mit Stefan Tilkov (@stilkov) sprachen wir über -Softwarearchitekturen, vor allem REST und Web Services. Wir haben keine 800 -Personenjahre gebraucht, um festzustellen, dass Thrift CORBA in cool ist und -die Idee "Rechte Maustaste, 'Generate and Deploy Web Service'" nicht wirklich -funktioniert. Neben REST im Allgemeinen sprechen wir über Hypermedia und wie -alles zusammengreifen kann. Stefan schlägt eine interessante Brücke von der -Idee REST als Backend-Thema hin zu REST für das Web, wodurch wir zu ROCA, einem -Architekturstil, kommen.

    - -

    Unser Gast (00:00:00)

    - -
      -
    • Stefan Tilkov, @stilkov, http://www.innoq.com/blog/st/about/
    • -
    • REST und HTTP: Einsatz der Architektur des Web für Integrationsszenarien, Stefan Tilkov: http://rest-http.info
    • -
    • Macht zum Teil Management und sonst wozu er so Lust hat: Workshops, Konferenzen, Schulungen, …
    • -
    • Hat C, C++, Java und und und gemacht, sein aktueller Favorit ist allerdings: Clojure
    • -
    - -

    Architektur im Wandel (00:02:45)

    - -
      -
    • "architect" is Latin for "cannot code anymore.", Ted Neward: http://msdn.microsoft.com/en-us/library/aa905335.aspx
    • -
    • "Architektur ist die Menge der wichtigen Entscheidungen", Stefan Tilkov :)
    • -
    • Anwendungsarchitektur Anfang der 2000er
    • -
    • Irgendwann wurde der Begriff "Architektur" negativ belegt
    • -
    - -

    Projekte bei innoQ (00:05:10)

    - -
      -
    • 60 Leute bei innoQ
    • -
    • 20% strategische Beratung
    • -
    • 80% Entwicklungsprojekt, teilweise nur mitarbeiten, teilweise komplett selber verantwortet
    • -
    • bei innoQ werden immer wieder die Rollen/Aufgaben und Projekte gewechselt
    • -
    - -

    Architektur: negativ? (00:08:40)

    - - - -

    REST (00:12:05)

    - - - -

    Der WS-Weg (00:16:55)

    - - - -

    Microservices vs SOA? (00:22:05)

    - - - -

    Hypermedia Explained (00:23:53)

    - - - -

    REST für das Web (00:45:00)

    - - - -

    Web Services, REST (01:11:30)

    - - - -

    Ausblick (01:17:20)

    - - -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - GST032 - NoSQL Matters 2014 Cologne - no - Dirk Breuer, Sebastian Cohnen - Der Geekstammtisch mit Gesprächen von der NoSQL Matters 2014. - - GST032 - Thu, 15 May 2014 08:44:23 +0200 - 03:36:27 - - Synopsis: Auch dieses Jahr sind wir wieder auf der NoSQL Matters in Köln und haben wieder mit Speakern wie Besuchern gesprochen. Wir haben viele neue Menschen kennengelernt, aber auch die ein oder andere Fortsetzung vom letzten Mal ist dabei. Ein Hinweis noch, es sind überwiegend Gespräche in Englisch.

    - -

    Gesprächspartner

    - - - -

    Intro (00:00:00)

    - -
      -
    • Basti und Dirk sagen "Hallo"
    • -
    - -

    Ted Dunning, MapR (00:03:46)

    - -
      -
    • @ted_dunning
    • -
    • War dieses Jahr Keynote Speaker
    • -
    • Thema war "Remember the Future"
    • -
    • Gist: Einige Dinge die heute modern erscheinen werden in Zukunft nicht mehr sein. Dinge von denen man dachte, sie spielen keine Relevanz mehr, werden in Zukunft modern sein.
    • -
    • Was braucht NoSQL für die Zukunft?
    • -
    • Welche Möglichkeiten werden uns Daten eröffnen?
    • -
    • Was sind die kleinen Dinge, die in Zukunft große Relevanz haben werden?
    • -
    - -

    Ellen Friedman (00:18:23)

    - -
      -
    • @Ellen_Friedman
    • -
    • Hat einen eher ungewöhnlichen Hintergrund: Sie ist Biologin mit Schwerpunkt auf Bio-Chemie und Genetik und hat in diesen Bereichen sowohl Forschung als auch Lehre betrieben
    • -
    • Sie ist Autorin von zahlreichen Publikationen in diesem Bereich, aber auch Mitglied des Mahout-Projekts und schreibt aktuell viel über Machine-Learning
    • -
    • Sie erklärt uns wie es zum Thema der Keynote "Remembering the future" kam
    • -
    • Ellen glaubt wir werden genauer wenn es darum geht die Zukunft vorher zusagen
    • -
    • Im Sinne von: Was für Probleme gelöst werden, weniger wie sie gelöst werden
    • -
    • Die Lösung wird oft sehr überraschend sein
    • -
    • Manchmal gab es die Lösung schon in der Vergangenheit und sie wird neu entdeckt
    • -
    • "Die Geschichte wiederholt sich nicht"
    • -
    • Wir sprechen über die Herausforderungen die auf unsere Gesellschaft zukommen mit der weiteren Erfassung großer Datenmengen
    • -
    • Welche Verantwortung hat die Tech-Community in diesem Zusammenhang
    • -
    • Abschließend geht es noch um die verständliche Vermittlung von komplexem Wissen
    • -
    - -

    Johnny Miller, DataStax (00:34:34)

    - -
      -
    • @cyanmiller
    • -
    • Johnny ist Solution Architect bei DataStax, der größte Committer von Cassandra
    • -
    • Neben einem Vortrag hat er auch einen sehr guten Einsteiger-Workshop gegeben
    • -
    • Wir haben mit ihm über Ease-of-use gesprochen, und dass scheinbar viele NoSQL Systeme ihre Funktionalität langsam im Griff haben und sich nun auf die Benutzbarkeit konzentrieren können
    • -
    • Sein Herzensthema ist Sicherheit in NoSQL Datenbanken, daher haben wir natürlich auch darüber gesprochen
    • -
    - -

    Michael Hunger, Neo Technologies (00:53:52)

    - -
      -
    • @mesirii
    • -
    • Michael kommt von Neo Technologies, der Firma hinter Neo4j, einer Graphdatenbank
    • -
    • Auch seinen Einsteiger-Workshop konnten wir besuchen
    • -
    • Sein Talk war ebenfalls ein Einstieg, vor allem in die Welt der Graphen
    • -
    • Wir sprachen mit ihm über "The right tool for the job" und welche Problemstellungen für Graphen geeignet sind
    • -
    • Auch hier war Ease-of-use ein Thema
    • -
    • Im Fall von Neo4j bezieht sich das sowohl auf die Anwendung als solche aber auch auf den Einstieg in die Welt der Graphen
    • -
    • Off-the-Record: Leider erst nach Aufnahme haben wir uns noch verraten lassen, dass Neo4j seinen Namen aus dem Film der Matrix hat :-)
    • -
    - -

    Akmal Chaudhri, DataStax (01:12:24)

    - -
      -
    • @akmalchaudhri
    • -
    • Akmal hat einen der wenigen nicht-technischen Talks gehalten
    • -
    • Das Thema könnte dennoch nicht wichtiger sein: Skills
    • -
    • Wie schafft man es als Unternehmen aber auch als Entwickler mit der rasanten technologischen Entwicklung mithalten zu können?
    • -
    • Wir stellen fest, dass ein großer Vorteil ist, dass im Grunde alle großen NoSQL Datenbanken frei verfügbar sind und zu jeder zahlreiche und qualitativ hochwertige Lernressourcen kostenlos zur Verfügung stehen
    • -
    - -

    Gereon Steffens, Finanzen100 (01:29:17)

    - -
      -
    • @gereons
    • -
    • Gereon ist Head of IT bei Finanzen100 in Köln
    • -
    • Wir sprachen letztes Jahr mit ihm über die geplante Einführung von Redis
    • -
    • Diese Einführung ist mehr als erfolgreich verlaufen
    • -
    • Alle Anforderungen konnten erfüllt und neue Funktionalitäten für die Nutzer etabliert werden
    • -
    • Wir sprachen auch darüber wie er diese neue Technologie im Team erfolgreich etablieren konnte
    • -
    - -

    Max Neunhöffer, triAGENS (01:45:09)

    - -
      -
    • Max kommt von der Open-Source Multi-Model Datenbank ArangoDB
    • -
    • Wir reden mit ihm über das neueste Feature von ArangoDB: Sharding
    • -
    • Vor allem geht es um die Herausforderungen ein solches Feature zu implementieren
    • -
    • Der aktuelle Stand funktioniert zwar, aber es gibt noch viel zu tun
    • -
    - -

    Mahesh Paolini-Subramanya, Ubiquiti Networks (02:00:43)

    - -
      -
    • @dieswaytoofast
    • -
    • Mit Mahesh wollten wir schon letztes Jahr sprechen, haben es aber nicht mehr geschafft. Nun hat es geklappt!
    • -
    • Er arbeitet zur Zeit bei Ubiquiti Networks "The largest Network infrastructure company you may never heard of"
    • -
    • Erste Frage die sich stellt: Was hat ein Hersteller von Netzwerkhardware mit NoSQL am Hut?
    • -
    • Antwort: Unmengen von Daten!
    • -
    • Uniquiti bietet eine Cloud-basierte Management Plattform für die Hardware an
    • -
    • Jedes Gerät schickt alle 30 Sekunden Daten dorthin und kann von dort auch Konfiguration oder andere Informationen abrufen - -
        -
      • Sie setzen dazu so ziemlich jede NoSQL Datenbank ein die es gibt (außer MongoDB)
      • -
    • -
    • Auch hier ist wieder "The right tool for the job" Thema
    • -
    • Und natürlich sprechen wir über das große Thema Sicherheit
    • -
    - -

    Boaz Leskes, Elasticsearch (02:23:56)

    - -
      -
    • @bleskes
    • -
    • Entwickler bei elasticsearch
    • -
    • Er hat einen Talk zu den Aggregationsmöglichkeiten in elasticsearch gehalten
    • -
    • Zusammengefasst: Mit Aggregationen, Facettensuche und den Analysefunktionen lassen sich sehr komplexe Systeme zur Analyse von beliebigen Daten erstellen
    • -
    • elasticsearch ist noch viel weniger "nur" für Suchen geeignet, als noch vor einem Jahr
    • -
    • Die Nutzer erkennen immer mehr, welche weiteren Möglichkeiten durch elasticsearch bekommen
    • -
    • Boaz erklärt wie die Suchfunktionalitäten von elasticsearch bei der Analyse von arbiträren Daten helfen kann
    • -
    • Es geht weiter mit einigen interessanten Einblicken in die Optimierung von Algorithmen
    • -
    • Ease-of-use ist auch bei elasticsearch ein sehr wichtiges Thema, nicht nur bei der Nutzung aus Entwicklersicht, sondern auch aus Betriebssicht
    • -
    • "Elasticsearch is a highly distributed system that really, really hard tries to hide it"
    • -
    - -

    Frank Celler und Dr. Stefan Edlich (02:39:35)

    - -
      -
    • @fceller (Dr. Celler Cologne Lectures) & @edlich
    • -
    • Frank und Stefan sind beide Organisatoren der Konferenz und im Programmkommitee
    • -
    • Wir sprechen über die Vorbereitungen der Konferenz und wie die bisherigen Eindrücke sind
    • -
    • Wir erhalten ein paar Einblicke in die Schwierigkeiten bei der Zusammenstellung des Programms
    • -
    • NoSQL Matters gibt es nicht nur in Köln, sondern auch in Dublin und Barcelona
    • -
    - -

    Russel Brown, Basho (02:53:18)

    - -
      -
    • @russelldb
    • -
    • Russel ist kurzfristig für einen Talk eingesprungen, glücklicherweise zu dem Thema, dass er implementiert hat ;-)
    • -
    • Mit Russel haben wir über CRDT in Riak gesprochen, dieses Theme hatten wir letztes Jahr auch schon mit Sean Cribbs
    • -
    • Damals steckte es noch in den Kinderschuhen, heute ist es nutzbar in der neuesten Version von Riak
    • -
    • CRDTs steht für "Conflict-Free Replicated Data-Typ"
    • -
    • Wir reden über die Herausforderungen der Implementierung
    • -
    • Und vor allem über die Herausforderungen beim Testing
    • -
    • Obwohl das Feature implementiert ist, gibt es noch viele Dinge zu tun und zu optimieren
    • -
    - -

    Jennifer Rullmann, FoundationDB (03:11:26)

    - -
      -
    • @jrullmann
    • -
    • Entwicklerin bei FoundationDB
    • -
    • Hat vorher Webanwendungen Entwickelt nun arbeitet sie an FoundationDB
    • -
    • FoundationDB: Distributed Key-Value DB mit der Möglichkeit andere Datenmodelle (Dokumente, Graphen, ...) in Form von Layern hinzufügen
    • -
    • Ihr Talk war zu dem Thema "NoSQL and ACID"
    • -
    • Ease of Use: FoundationDB legt viel Wert darauf einfach im Betrieb zu sein (wenig Konfiguration by default)
    • -
    - -

    Outro (03:28:52)

    - -
      -
    • Bast und Dirk sagen "Tschüss"
    • -
    • persönliches Fazit: Wir hatten tolle drei Tage, haben viel gelernt und sehr spannende Gespräche geführt
    • -
    • Fazit zur Konferenz: NoSQL wird erwachsen und wird uns bestimmt noch viele Jahre begleiten. In welcher Form? Das wird die Zukunft zeigen ;-)
    • -
    -]]>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/googleblog.xml b/vendor/fguillot/picofeed/tests/fixtures/googleblog.xml new file mode 100644 index 0000000..63656f7 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/googleblog.xml @@ -0,0 +1,477 @@ + +tag:blogger.com,1999:blog-108617802013-02-06T10:58:53.518-08:00The Official Google BlogInsights from Googlers into our products, technology, and the Google culture.Emily Woodnoreply@blogger.comBlogger2817125blogspot/MKufhttp://feedburner.google.comSubscribe with My Yahoo!Subscribe with NewsGatorSubscribe with My AOLSubscribe with BloglinesSubscribe with NetvibesSubscribe with GoogleSubscribe with Pageflakestag:blogger.com,1999:blog-10861780.post-42040739399152239972013-02-05T09:02:00.000-08:002013-02-05T09:02:21.880-08:002013-02-05T09:02:21.880-08:00A Chrome Experiment made with some friends from OzYou won’t need magical powers to take a journey down the yellow brick road; just point your favorite browser to the latest Chrome Experiment,&nbsp;“<a href="http://www.findyourwaytooz.com/">Find Your Way to Oz</a>.”&nbsp;Developed in collaboration with Disney and <a href="http://www.unit9.com/">UNIT9</a> in anticipation of the upcoming film, <a href="http://disney.go.com/thewizard/">Oz The Great and Powerful</a>, this experiment takes you through a dusty Kansas circus and leads to a vibrant land, following in the footsteps of the Wizard himself. <br /> +<br /> +<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/_2iDDI6Stx0" width="560"></iframe><br /> +<br /> +Like any good circus, there’s plenty to keep you entertained: compose your own music, play with a fun photo booth and create your own movie with a zoetrope. The path to Oz also involves confronting an ominous tornado; surviving it completes the journey, enabling fans of the movie to watch an exclusive unreleased clip from the film. <br /> +<br /> +<a href="http://www.chromeexperiments.com/">Chrome Experiments</a> like “Find Your Way to Oz” would have been impossible a few years ago. Since that time, the web has evolved and allowed developers and designers to create immersive beautiful experiences. For “Find Your Way to Oz” the 3D environment was built entirely with new technologies such as <a href="http://www.html5rocks.com/en/tutorials/webgl/webgl_fundamentals/">WebGL</a> and <a href="http://www.w3schools.com/css3/default.asp">CSS3</a>. It’s enhanced by rich audio effects thanks to the <a href="http://www.html5rocks.com/en/tutorials/webaudio/intro/">Web Audio API</a>.&nbsp;The photo booth and zoetrope were built using the <a href="http://www.html5rocks.com/en/tutorials/getusermedia/intro/">getUserMedia</a> feature of <a href="http://www.webrtc.org/">WebRTC</a>, which grants webpages access to your computer’s camera and microphone (with your permission). <br /> +<br /> +For the best experience, you’ll need to use an up-to-date computer built to handle intense graphics. It also works best with a webcam and a modern browser that supports WebGL and WebRTC, like <a href="http://www.google.com/intl/en/chrome/browser/promo/oz/?gl=US&amp;hl=en-US&amp;utm_source=en_US-ogb-na-US&amp;utm_medium=ogb&amp;utm_campaign=en_US">Chrome</a>. For tablet or smartphone users, we have a smaller scale yet equally enjoyable experience that you can try with the latest Chrome browser on your Android device, iPhone or iPad.<br /> +<br /> +If you want to learn more, or run away and join the developer circus, you can get an explanation of the technologies used on the <a href="http://blog.chromium.org/2013/02/introducing-find-your-way-to-oz-new.html">Chromium blog</a> or in our <a href="http://www.html5rocks.com/tutorials/casestudies/oz/">technical case study</a>.<br /> +<br /> +Start your journey towards the yellow brick road at <b><a href="http://www.findyourwaytooz.com/">www.findyourwaytooz.com</a></b>. <br /> +<br /> +<span class="byline-author">Posted by Christos Apartoglou, Marketing Manager</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/S_hccisqTW8" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/a-chrome-experiment-made-with-some.htmltag:blogger.com,1999:blog-10861780.post-63726673392833701242013-02-04T21:01:00.000-08:002013-02-04T21:01:01.357-08:002013-02-04T21:01:01.357-08:00Safer Internet Day: How we help you stay secure onlineTechnology can sometimes be complicated, but you shouldn’t have to be a computer scientist or security expert to stay safe online. Protecting our users is one of our top priorities at Google. Whether it’s creating easy-to-use tools to help you manage your information online or fighting the bad guys behind the scenes, we’re constantly investing to make Google the best service you can rely on, with security and privacy features that are on 24-7 and working for you. <br /> +<br /> +Last year, we <a href="http://googleblog.blogspot.com/2012/01/tech-tips-that-are-good-to-know.html">launched</a> <a href="http://google.com/goodtoknow">Good to Know</a>, our biggest-ever consumer education campaign focused on making the web a safer, more comfortable place. Today, on Safer Internet Day, we’re updating Good to Know to include more tips and advice to help you protect yourself and your family from identity theft, scams and online fraud. You can also learn how to make your computer or mobile device more secure, and get more out of the web—from searching more effectively to making calls from your computer. And you can find out more about how Google works to make you, your device and the whole web safer. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://4.bp.blogspot.com/-VCUm3IO6rGg/URBhkyY6QHI/AAAAAAAAKw8/l6Ak6uHI2X4/s1600/1m6X7ot5wEflZj9iJ8nFjEOy_kZcZLQ8FPg-O.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/-VCUm3IO6rGg/URBhkyY6QHI/AAAAAAAAKw8/l6Ak6uHI2X4/s500/1m6X7ot5wEflZj9iJ8nFjEOy_kZcZLQ8FPg-O.jpeg" width="500" /></a></div> +<br /> +For example, we encrypt the Gmail and Google Search traffic between your computer and Google—this protects your Google activity from being snooped on by others. We also make this protection, known as session-wide SSL encryption, the default when you’re signed into Google Drive. Because outdated software makes your computer more vulnerable to security problems, we built the Chrome browser to auto-update to the latest version every time you start it. It gives you up-to-date security protection without making you do any extra work. <br /> +<br /> +Even if you don’t use Google, we work hard to make the web safer for you. Every day we identify more than 10,000 unsafe websites—and we inform users and other web companies what we’ve found. We show warnings on up to 14 million Google Search results and 300,000 downloads, telling our users that there might be something suspicious going on behind a particular website or link. We share that data with other online companies so they can warn their users. <br /> +<br /> +We know staying safe online is important to you—and it is important to us too. Please take some time today to make your passwords stronger and <a href="http://support.google.com/accounts/bin/answer.py?hl=en&amp;answer=180744">turn on 2-step verification</a> to protect your Google Account. Talk with friends and family about Internet safety. And visit our new Good to Know site to find more tips and resources to help you stay safe online. <br /> +<br /> +<span class="byline-author">Posted by Alma Whitten, Director of Privacy, Product and Engineering</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/hptKhCOvnHc" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/safer-internet-day-how-we-help-you-stay.htmltag:blogger.com,1999:blog-10861780.post-30887704619368913632013-02-04T08:02:00.001-08:002013-02-04T08:02:30.912-08:002013-02-04T08:02:30.912-08:00Google and Brazil celebrate Carnival 2013Ask any person who’s never traveled to Brazil what he knows about the country and it’s likely that one of their first responses is: Carnival (or <i>Carnaval</i> in Portuguese). It's no wonder: Carnival is one of the largest celebrations on the planet. As a Brazilian, I can also say that it represents much of what’s wonderful about our country—joy, cultural richness and musical diversity.<br /> +<br /> +From Feb 7-12, YouTube will bring Carnival to the world for the third year in a row—giving you a front-row seat to the entire celebration on the <a href="http://www.youtube.com/carnaval">YouTube Carnival channel</a>.<br /> +<br /> +<b>The best Carnival is the one you choose, anytime, anywhere</b><br /> +What better way to experience a party the size of Brazil than by connecting to the rhythms and local traditions of six different cities—from Rio de Janeiro’s <i>samba</i> and Salvador’s <a href="http://en.wikipedia.org/wiki/Ax%C3%A9_music"><i>axé</i></a> to southern Brazil’s <a href="http://en.wikipedia.org/wiki/Frevo"><i>frevo</i></a>. This year, you’ll be able to enjoy the festivities of <a href="http://goo.gl/zKSYI">Salvador</a>, <a href="http://goo.gl/maps/nADs7">Rio de Janeiro</a>, <a href="http://goo.gl/maps/axMXO">Olinda</a>, <a href="http://goo.gl/maps/XiUPl">São Luís do Maranhão</a>, <a href="http://goo.gl/maps/stSgU">Ouro Preto</a> and <a href="http://goo.gl/maps/GFjxy">Pirenópolis</a>. <br /> +<br /> +Pick from a series of live feeds, camera angles and performances from the city of your choice, right in the middle of the party. Channel feeds are made possible by a combination of YouTube Live and Google+ Hangouts. In total, you can access a total of 150 hours of live Carnival feeds—from your laptop, tablet or smartphone.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://1.bp.blogspot.com/-tAs5pDuPZXM/UQ_ZpcyYzoI/AAAAAAAAKv0/IPN-5zrKNoQ/s1600/10qJOo9j0Cooca-p-bSghkxr1oSlx1JnDczVUtw.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-tAs5pDuPZXM/UQ_ZpcyYzoI/AAAAAAAAKv0/IPN-5zrKNoQ/s500/10qJOo9j0Cooca-p-bSghkxr1oSlx1JnDczVUtw.png" width="500" /></a></div> +<br /> +Here’s a little more detail on some of the celebrations:<br /> +<br /> +<ul> +<li><i>YouTube from Rio de Janeiro</i>—From <b>Feb 8-12</b>, you can dance as much samba as you want, as you watch the attractions of the <a href="http://www.circovoador.com.br/#/ocirco">Circo Voador</a> concert hall or check out the calmer celebrations of <a href="http://rioshow.oglobo.globo.com/musica/shows/terreirao-do-samba-1747.aspx">Terreirão do Samba</a>, a venue that receives various samba musicians and afternoon concert sessions throughout the year.</li> +<li><i>YouTube from Salvador de Bahia</i>—For the third year in a row, you’ll be able to check out the best of Salvador’s famed Carnival route, <b>Barra-Ondina</b>. However this time, you’ll be able to choose from four different camera feeds located throughout the Carnival route, so you don’t miss your favorite carnival band. Follow Salvador’s most famous carnival artists such as <a href="http://www.youtube.com/claudialeitteoficial">Claudia Leitte</a>, <a href="http://www.youtube.com/artist/chiclete-com-banana">Chiclete com Banana</a>, <a href="http://www.youtube.com/user/bandaasadeaguia">Asa de Águia</a>, <a href="http://www.youtube.com/artist/ivete-sangalo">Ivete Sangalo</a> and others as their mobile stages advance through the circuit.</li> +</ul> +<br /> +<b>Google+ joins the party</b><br /> +Everyone knows that a good party generates great photos. That’s why we’ve also joined with photographers who will be uploading pictures daily of Carnaval’s best moments from 20 different Brazilian cities at <a href="http://www.google.com.br/+/carnaval">Google+ Carnaval</a>. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-X6EtrBs6Q88/UQ_av7SIxrI/AAAAAAAAKv8/_UzeZgYKbB8/s1600/1tkjQB5Vs-oJNISezN9t7zDxudam2yG8GfZg3FQ.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-X6EtrBs6Q88/UQ_av7SIxrI/AAAAAAAAKv8/_UzeZgYKbB8/s500/1tkjQB5Vs-oJNISezN9t7zDxudam2yG8GfZg3FQ.jpeg" width="500" /></a></div> +<br /> +Find the entire agenda of this year’s Carnival events at <a href="http://www.youtube.com/carnaval">www.youtube.com/carnaval</a>. To keep track of your favorite events and the artists you want to see, download the <a href="https://chrome.google.com/webstore/detail/carnaval-2013/licfmkjjnjncmkkkccidiknfhijdnlkh">Carnaval 2013 extension</a> from the Chrome Web Store, and make sure not to miss a beat. <br /> +<br /> +<span class="byline-author">Posted by Lauren Pachaly, Consumer Marketing Manager, Google Brazil</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/_SGzsAoraXg" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/google-and-brazil-celebrate-carnival.htmltag:blogger.com,1999:blog-10861780.post-80976873858426118972013-02-04T06:00:00.000-08:002013-02-04T08:27:16.118-08:002013-02-04T08:27:16.118-08:00M&M’s, Beyonce and Ravens dominate game day searches on GoogleThis year’s big game was filled with action—brothers battled on the field and a 34-minute-long power outage nearly turned the tide of the game. With all the excitement on the field, we looked online to see what fans across the U.S. were searching for during the game.<br /> +<br /> +Overall, the top trending searches on Google during the game were:<br /> +<ol> +<li>M&amp;M’s</li> +<li>Beyonce</li> +<li>Baltimore Ravens</li> +<li>San Francisco 49ers</li> +<li>Colin Kaepernick</li> +</ol> +Other noteworthy trending searches include those about the power outage, which started trending mid-game and ended up ranking eighth out of the most-searched terms during game time. Searches for Beyonce spiked dramatically during her halftime show. And showing that ads drive consumer interest, searches for Chrysler spiked significantly after their fourth quarter commercial. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-Youe8dXhSGo/UQ9qPdP6_nI/AAAAAAAAKus/clcbyCbl-ZI/s1600/super+bowl+chart+10-30.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-Youe8dXhSGo/UQ9qPdP6_nI/AAAAAAAAKus/clcbyCbl-ZI/s500/super+bowl+chart+10-30.png" width="500" /></a></div> +<br /> +<b>The most searched team: The Ravens</b><br /> +As they did in the game, the Ravens narrowly beat out the 49ers as the most searched team during the game on Google. The most searched players of the game were <b>Colin Kaepernick, Joe Flacco, Michael Oher, David Akers</b> and <b>Jacoby Jones</b>—thanks to his <a href="http://espn.go.com/nfl/playoffs/2012/story/_/id/8911913/super-bowl-2013-baltimore-ravens-jacoby-jones-sets-record-108-yard-kickoff-return">108-yard kickoff return</a>. <br /> +<br /> +The Harbaugh brothers’ on-field battle has been one of the big stories of the game, so it’s no surprise that viewers took to the web to find more information on these coaches. While John Harbaugh took home the trophy, <b>Jim was the most searched brother</b> on Google. <br /> +<br /> +<b>Game day commercials</b><br /> +Lastly, it’s not game day without the commercials. Fans were seeking out commercials online throughout the game, driving searches for big game ads on Google 55 times higher this Sunday than the same time last week. The most searched for commercials on YouTube were ads from <b>M&amp;M’s, Mercedes-Benz, Disney’s “Oz Great and Powerful,” Lincoln</b>, and <b>Audi</b>. Searches for "Gangnam Style" were also trending on YouTube, along with searches for big game performers Alicia Keys and Beyonce. <br /> +<br /> +This year many advertisers turned to YouTube to share game day ads and teaser videos in the weeks leading up to the game. In 2013, big game ads or ad teasers were watched <b>more than 66 million times</b> on YouTube before game day. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://4.bp.blogspot.com/--dIqd62UU5o/UQ9qP1W6WXI/AAAAAAAAKu0/0PNuQBIsEjg/s1600/adblitzgallery.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/--dIqd62UU5o/UQ9qP1W6WXI/AAAAAAAAKu0/0PNuQBIsEjg/s500/adblitzgallery.png" width="500" /></a></div> +<br /> +Now that you’ve seen all the ads, vote for your favorite one on either the <a href="http://www.youtube.com/adblitz">YouTube Ad Blitz channel</a> or <a href="http://www.adweek.com/the-big-game-2013">ADWEEK.com</a> now through February 11. The winners of the Ad Blitz will be announced on the YouTube homepage on February 16.<br /> +<br /> +Will you be Monday-morning quarterbacking the game or the ads?<br /> +<br /> +<span class="byline-author">Posted by Jeffrey Oldham, Software Engineer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/Hrqka_apoic" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/m-beyonce-and-ravens-dominate-game-day.htmltag:blogger.com,1999:blog-10861780.post-454602206584135292013-02-01T10:09:00.000-08:002013-02-01T10:18:06.402-08:002013-02-01T10:18:06.402-08:00Google creates €60m Digital Publishing Innovation Fund to support transformative French digital publishing initiativesGoogle has worked with news publishers around the globe for years to help them make the most of the web. Our search engine generates billions of clicks each month, and our advertising solutions (in which we have invested billions of dollars) help them make money from that traffic. And last year, we launched Google Play, which offers new opportunities for publishers to make money—including through paid subscriptions. A healthy news industry is important for Google and our partners, and it is essential to a free society. <br /> +<br /> +Today I announced with President Hollande of France two new initiatives to help stimulate innovation and increase revenues for French publishers. First, Google has agreed to create a €60 million Digital Publishing Innovation Fund to help support transformative digital publishing initiatives for French readers. Second, Google will deepen our partnership with French publishers to help increase their online revenues using our advertising technology. <br /> +<br /> +This exciting announcement builds on the commitments we made in 2011 to increase our investment in France—including our Cultural Institute in Paris to help preserve amazing cultural treasures such as the Dead Sea Scrolls. These agreements show that through business and technology partnerships we can help stimulate digital innovation for the benefit of consumers, our partners and the wider web.<br /> +<br /> +<span class="byline-author">Posted by Eric Schmidt, Executive Chairman</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/k54_AKevGWc" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/02/google-creates-60m-digital-publishing.htmltag:blogger.com,1999:blog-10861780.post-45206541517265142332013-01-31T03:00:00.000-08:002013-01-31T11:37:06.636-08:002013-01-31T11:37:06.636-08:00Exploring the Grand Canyon on Google MapsWhether you’re planning an upcoming hike, or want to learn more about the Earth’s geological history, Google Maps can help. Today, we’re releasing panoramic imagery of one of the world’s most spectacular national monuments: the Grand Canyon. These beautiful, interactive images cover more than 75 miles of trails and surrounding roads, making our map of this area even more comprehensive, accurate and easy to use than ever before.<br /> +<br /> +<div style="text-align: center;"> +<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/mpcar4L_EXY?rel=0" width="560"></iframe><br /></div> +<div style="text-align: center;"> +<br /></div> +Take a walk down the narrow trails and exposed paths of the Grand Canyon: hike down the famous <a href="https://www.google.com/maps?ll=36.065096,-112.137107&amp;spn=0.285295,0.528374&amp;cbp=12,41.91,,0,9.06&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;t=m&amp;z=12&amp;cbll=36.065096,-112.137107">Bright Angel Trail</a>, gaze out at the <a href="https://www.google.com/maps?ll=36.09956,-112.106834&amp;spn=0.28517,0.528374&amp;cbp=12,268.94,,0,-8.85&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;t=m&amp;z=12&amp;cbll=36.09956,-112.106834">mighty Colorado River</a>, and explore <a href="https://www.google.com/maps?ll=36.033553,-112.094879&amp;spn=0.570818,1.056747&amp;cbp=12,35.75,,0,-0.91&amp;layer=c&amp;panoid=QA8lTVP30K21DyUQ3QcMvQ&amp;cbll=36.066887,-112.136123&amp;t=m&amp;z=11">scenic overlooks</a> in full 360-degrees. You’ll be happy you’re virtually hiking once you get to the steep inclines of the <a href="https://www.google.com/maps?ll=36.048544,-112.046814&amp;spn=0.570709,1.056747&amp;cbp=12,105.04,,0,8.25&amp;layer=c&amp;panoid=RcFvKdK1t79uFxoLRNvy8A&amp;cbll=36.081972,-112.087934&amp;t=m&amp;z=11">South Kaibab Trail</a>. And rather than drive a couple hours to see the nearby <a href="https://www.google.com/maps?ll=34.997941,-110.985947&amp;spn=0.578229,1.056747&amp;cbp=12,145.48,,0,3.59&amp;layer=c&amp;panoid=S2IQmPwHGhJ-YCXugFkM-Q&amp;cbll=35.03165,-111.026837&amp;t=m&amp;z=11">Meteor Crater</a>, a click of your mouse or tap of your finger will transport you to the rim of this otherworldly site.<br /> +<br /> +<div style="text-align: center;"> +<iframe frameborder="0" height="240" marginheight="0" marginwidth="0" scrolling="no" src="https://www.google.com/maps?cbp=13,270.64,,0,-0.68&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;ie=UTF8&amp;t=m&amp;cbll=36.09956,-112.106834&amp;source=embed&amp;ll=36.080459,-112.107067&amp;spn=0.066593,0.145912&amp;z=12&amp;output=svembed" width="425"></iframe><br /> +<small><a href="https://www.google.com/maps?cbp=13,270.64,,0,-0.68&amp;layer=c&amp;panoid=HX6jvVUCA2-09O3ndzgDHg&amp;ie=UTF8&amp;t=m&amp;cbll=36.09956,-112.106834&amp;source=embed&amp;ll=36.080459,-112.107067&amp;spn=0.066593,0.145912&amp;z=12" style="color: blue; text-align: left;">View Larger Map</a></small></div> +<div style="text-align: center;"> +<i>The Colorado River, one of the many impressive scenes in the Grand Canyon</i></div> +<br /> +This breathtaking <a href="http://google-latlong.blogspot.com/2012/10/trekking-grand-canyon-for-google-maps.html">imagery collection</a> was made possible with the <a href="http://maps.google.com/help/maps/streetview/learn/cars-trikes-and-more.html#trekker">Trekker</a>. Our team strapped on the Android-operated 40-pound backpacks carrying the 15-lens camera system and wound along the rocky terrain on foot, enduring temperature swings and a few muscle cramps along the way. Together, more than 9,500 panoramas of this masterpiece of nature are now available on Google Maps. <br /> +<br /> +<div style="text-align: center;"> +<iframe frameborder="0" height="240" marginheight="0" marginwidth="0" scrolling="no" src="https://www.google.com/maps?cbp=13,22.38,,0,3.59&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;ie=UTF8&amp;t=m&amp;cbll=36.065096,-112.137107&amp;source=embed&amp;ll=36.046046,-112.13728&amp;spn=0.066622,0.145912&amp;z=12&amp;output=svembed" width="425"></iframe><br /></div> +<div style="text-align: center;"> +<small><a href="https://www.google.com/maps?cbp=13,22.38,,0,3.59&amp;layer=c&amp;panoid=Fa-wHCWazJG6bn7ZjISQCA&amp;ie=UTF8&amp;t=m&amp;cbll=36.065096,-112.137107&amp;source=embed&amp;ll=36.046046,-112.13728&amp;spn=0.066622,0.145912&amp;z=12" style="color: blue; text-align: left;">View Larger Map</a></small></div> +<div style="text-align: center;"> +<i>A breathtaking 360-degree view from the famous Bright Angel Trail</i></div> +<br /> +So no matter where you are, you don’t have to travel far or wait for warmer weather to explore Grand Canyon National Park. Check out some of our favorite views on our <a href="http://www.google.com/worldwonders">World Wonders site</a> where you can find more information, facts and figures about the Grand Canyon, or in the updated <a href="http://maps.google.com/grandcanyon">Street View gallery</a>, and happy (virtual) hiking! <br /> +<br /> +<span class="byline-author">Posted by Ryan Falor, Product Manager, Google Maps</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/bVLV3alyhhk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/exploring-grand-canyon-on-google-maps.htmltag:blogger.com,1999:blog-10861780.post-22547347218195487782013-01-30T05:00:00.000-08:002013-01-31T09:10:24.743-08:002013-01-31T09:10:24.743-08:00Google Science Fair: Looking for the next generation of scientists and engineers to change the worldAt age 16, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-3">Louis Braille</a> invented an alphabet for the blind. When she was 13, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-9">Ada Lovelace</a> became fascinated with math and went on to write the first computer program. And at 18, <a href="https://www.googlesciencefair.com/en/2013/science-heroes?bookmark=science-heroes-matrix-1">Alexander Graham Bell</a> started experimenting with sound and went on to invent the telephone. Throughout history many great scientists developed their curiosity for science at an early age and went on to make groundbreaking discoveries that changed the way we live. <br /> +<br /> +Today, we’re launching the third annual Google Science Fair in partnership with CERN, the LEGO Group, National Geographic and Scientific American to find the next generation of scientists and engineers. We’re inviting students ages 13-18 to participate in the largest online science competition and submit their ideas to change the world.<br /> +<br /> +<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/3Rqcg7BJwJM" width="560"></iframe><br /> +<br /> +For the past two years, thousands of students from more than 90 countries have submitted research projects that address some of the most challenging problems we face today. Previous winners tackled issues such as the <a href="http://youtu.be/DcSWmoiLhzY">early diagnosis of breast cancer</a>, <a href="http://youtu.be/l80bxaFrQuM">improving the experience of listening to music for people with hearing loss</a> and <a href="http://youtu.be/88D1teLvZE8">cataloguing the ecosystem found in water</a>. This year we hope to once again inspire scientific exploration among young people and receive even more entries for our third competition. <br /> +<br /> +Here’s some key information for this year’s Science Fair:<br /> +<ul><li>Students can enter the Science Fair in <a href="https://www.googlesciencefair.com/en/2013/faqs?bookmark=faqs-accordion-46">13 languages</a>.</li> +<li>The deadline for submissions is April 30, 2013 at 11:59 pm PDT.</li> +<li>In June, we’ll recognize 90 regional finalists (30 from the Americas, 30 from Asia Pacific and 30 from Europe/Middle East/Africa).</li> +<li>Judges will then select the top 15 finalists, who will be flown to Google headquarters in Mountain View, Calif. for our live, final event on September 23, 2013.</li> +<li>At the finals, a <a href="https://www.googlesciencefair.com/en/2013/judging">panel of distinguished international judges</a> consisting of renowned scientists and tech innovators will select top winners in each age category (13-14, 15-16, 17-18). One will be selected as the Grand Prize winner.</li> +</ul><a href="https://www.googlesciencefair.com/en/2013/prizes">Prizes</a> for the 2013 Science Fair include a $50,000 scholarship from Google, a trip to the Galapagos with National Geographic Expeditions, experiences at CERN, Google or the LEGO Group and digital access to the Scientific American archives for the winner’s school for a year. Scientific American will also award a <a href="http://www.scientificamerican.com/science-in-action/">$50,000 Science in Action prize</a> to one project that makes a practical difference by addressing a social, environmental or health issue. We’re also introducing two new prizes for 2013:<br /> +<ul><li>In August, the public will have the opportunity to get to know our 15 finalists through a series of Google+ Hangouts on Air and will then vote for the Inspired Idea Award—an award selected by the public for the project with the greatest potential to change the world.</li> +<li>We also recognize that behind every great student there’s often a great teacher and a supportive school, so this year we’ll award a $10,000 cash grant from Google and an exclusive Google+ Hangout with CERN to the Grand Prize winner’s school.</li> +</ul>Lastly, we’ll also be hosting a series of <a href="https://plus.google.com/+GoogleScienceFair">Google+ Hangouts on Air</a>. Taking place on Mondays, Wednesdays and Fridays, these Hangouts will feature renowned scientists including inventor Dean Kamen and oceanographic explorer Fabien Cousteau, showcase exclusive behind-the-scenes tours of cutting-edge labs and science facilities, and provide access to judges and the Google Science Fair team. We hope these Google+ Hangouts will help inspire, mentor and support students throughout the competition and beyond.<br /> +<br /> +Visit <a href="http://www.googlesciencefair.com/">www.googlesciencefair.com</a> to get started now—your idea might just change the world.<br /> +<br /> +<span class="byline-author">Posted by Sam Peter, Google Science Fair Team</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/Qikj9J_1t3Q" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/google-science-fair-looking-for-next.htmltag:blogger.com,1999:blog-10861780.post-69940181936217905582013-01-30T03:00:00.000-08:002013-01-30T03:00:12.222-08:002013-01-30T03:00:12.222-08:00Mapping creates jobs and drives global economic growthTwenty years ago, we used paper maps and printed guides to help us navigate the world. Today, the most advanced digital mapping technologies—satellite imagery, GPS devices, location data and of course <a href="http://maps.google.com/">Google Maps</a>—are much more accessible. This sea change in mapping technology is improving our lives and helping businesses realize untold efficiencies. <br /> +<br /> +The transformation of the maps we use everyday is driven by a growing industry that creates jobs and economic growth globally. To present a clearer picture of the importance of the geo services industry, we commissioned studies from <a href="https://www.bcgperspectives.com/content/interviews/metals_mining_value_creation_strategy_potere_david_geospatial_growth_engine/">Boston Consulting Group</a> (BCG) and <a href="http://www.oxera.com/">Oxera</a>. What we found is that maps make a big economic splash around the world. <br /> +<br /> +In summary, the global geo services industry is valued at up to $270 billion per year and pays out $90 billion in wages. In the U.S., it employs more than 500,000 people and is worth $73 billion. The infographic below illustrates some examples of the many benefits of maps, whether it’s improving agriculture irrigation systems or helping emergency response teams save lives.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-RcMEz1LaqUg/UQi0f5-OjMI/AAAAAAAAKrg/o_vVq5wvt5w/s1600/Geo%2BServices%2BInfographic%2B-%2Bfinal.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="500" src="http://4.bp.blogspot.com/-RcMEz1LaqUg/UQi0f5-OjMI/AAAAAAAAKrg/o_vVq5wvt5w/s500/Geo%2BServices%2BInfographic%2B-%2Bfinal.jpg" /></a></div><div style="text-align: center;"><i>Click the image for a larger version</i></div><br /> +1.1 billion hours of travel time saved each year? That’s a lot of time. Also, consider <a href="http://www.ups.com/">UPS</a>, which uses map technology to optimize delivery routes—saving 5.3 million miles and more than 650,000 gallons of fuel in 2011. And every eight seconds, a user hails a taxi with <a href="http://hailocab.com/">Hailo</a>, which used maps and GPS to deliver more than 1 million journeys in London alone last year. Finally, <a href="http://www.zipcar.com/">Zipcar</a> uses maps to connect more than 760,000 customers to a growing fleet of cars in locations around the world. <br /> +<br /> +Because maps are such an integral part of how we live and do business, the list of examples goes on and on. That’s why it’s important we all understand the need to invest in the geo services industry so it continues to grow and drive the global economy. Investments can come from the public and private sectors in many forms—product innovation, support of open data policies, more geography education programs in schools and more. <br /> +<br /> +We’re proud of the contributions that <a href="http://maps.google.com/">Google Maps</a> and <a href="http://www.google.com/earth/index.html">Earth</a>, the <a href="https://developers.google.com/maps/">Google Maps APIs</a> and our <a href="http://www.google.com/enterprise/earthmaps/index.html">Enterprise solutions</a> have made to the geo services industry and to making maps more widely available, but there’s a long way to go. To learn more about the impact of the maps industry, see the <a href="http://valueoftheweb.com/reports/geospatial-services">full reports</a>. <br /> +<br /> +<span class="byline-author">Posted by Brian McClendon, VP Google Geo</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/1ud7DHoOaWk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/mapping-creates-jobs-and-drives-global.htmltag:blogger.com,1999:blog-10861780.post-37875114027437809822013-01-27T21:52:00.000-08:002013-01-28T11:25:04.258-08:002013-01-28T11:25:04.258-08:00Google’s approach to government requests for user dataToday, January 28, is Data Privacy Day, when the world recognizes the importance of preserving your online privacy and security.<br /> +<br /> +If it’s like most other days, Google—like many companies that provide online services to users—will receive dozens of letters, faxes and emails from government agencies and courts around the world requesting access to our users’ private account information. Typically this happens in connection with government investigations.<br /> +<br /> +It’s important for law enforcement agencies to pursue illegal activity and keep the public safe. We’re a law-abiding company, and we don’t want our services to be used in harmful ways. But it’s just as important that laws protect you against overly broad requests for your personal information. <br /> +<br /> +To strike this balance, we’re focused on three initiatives that I’d like to share, so you know what Google is doing to protect your privacy and security.<br /> +<br /> +First, for several years we have advocated for updating laws like the U.S. Electronic Communications Privacy Act, so the same protections that apply to your personal documents that you keep in your home also apply to your email and online documents. We’ll continue this effort strongly in 2013 through our membership in the <a href="http://www.digitaldueprocess.org/index.cfm?objectid=37940370-2551-11DF-8E02000C296BA163">Digital Due Process</a> coalition and other initiatives.<br /> +<br /> +Second, we’ll continue our long-standing strict process for handling these kinds of requests. When government agencies ask for our users’ personal information—like what you provide when you sign up for a Google Account, or the contents of an email—our team does several things:<br /> +<ul> +<li>We scrutinize the request carefully to make sure it satisfies the law and our policies. For us to consider complying, it generally must be made in writing, signed by an authorized official of the requesting agency and issued under an appropriate law.</li> +<li>We evaluate the scope of the request. If it’s overly broad, we may refuse to provide the information or <a href="http://googleblog.blogspot.com/2006/03/judge-tells-doj-no-on-search-queries.html">seek to narrow the request</a>. We do this frequently.</li> +<li>We notify users about legal demands when appropriate so that they can contact the entity requesting it or consult a lawyer. Sometimes we can’t, either because we’re legally prohibited (in which case we sometimes seek to lift gag orders or unseal search warrants) or we don’t have their verified contact information.</li> +<li>We require that government agencies conducting criminal investigations use a search warrant to compel us to provide a user’s search query information and private content stored in a Google Account—such as Gmail messages, documents, photos and YouTube videos. We believe a warrant is required by the Fourth Amendment to the U.S. Constitution, which prohibits unreasonable search and seizure and overrides conflicting provisions in ECPA.</li> +</ul> +And third, we work hard to provide you with information about government requests. Today, for example, we’ve added a new <a href="https://www.google.com/transparencyreport/userdatarequests/legalprocess/">section</a> to our Transparency Report that answers many questions you might have. And last week we released <a href="http://googleblog.blogspot.com/2013/01/transparency-report-what-it-takes-for.html">data</a> showing that government requests continue to rise, along with additional details on the U.S. legal processes—such as subpoenas, court orders and warrants—that governments use to compel us to provide this information.<br /> +<br /> +We’re proud of our approach, and we believe it’s the right way to make sure governments can pursue legitimate investigations while we do our best to protect your privacy and security.<br /> +<br /> +<span class="byline-author">Posted by David Drummond, Senior Vice President and Chief Legal Officer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/bROe78CRVZY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/googles-approach-to-government-requests.htmltag:blogger.com,1999:blog-10861780.post-82299516293540373812013-01-23T09:09:00.000-08:002013-01-23T09:09:58.588-08:002013-01-23T09:09:58.588-08:00Fireside Hangouts: Join Vice President Biden in a discussion about gun violenceAs President Obama and his cabinet begin their second term in the White House, they’re renewing a <a href="http://www.youtube.com/user/whitehouse/videos?query=hangout">series</a> of conversations on Google+ with top administration officials. These “Fireside Hangouts," a 21st-century spin on FDR’s <a href="http://en.wikipedia.org/wiki/Fireside_chats">famous radio addresses</a>, bring top Administration officials to Google+ to discuss the most important issues in the country, face-to-face-to-face with fellow citizens in a hangout. The next hangout will take place Thursday, January 24 at 1:45 pm ET with Vice President Joe Biden on a topic that’s on everyone’s mind: reducing gun violence.<br /> +<br /> +During his 30-minute hangout, Vice President Biden will discuss the White House policy recommendations on reducing gun violence with participants including <a href="https://plus.google.com/+GuyKawasaki/posts">Guy Kawasaki</a>, <a href="https://plus.google.com/+PhilipDeFranco/posts">Phil DeFranco</a> and moderator <a href="https://plus.google.com/115316486335338050080/posts">Hari Sreenivasan</a> from PBS NewsHour. If you'd like to suggest a question, just follow the participants on Google+, and look for posts about tomorrow's Hangout. To view the broadcast live, just tune in to the White House's <a href="https://plus.google.com/+whitehouse/posts">Google+ page</a> or <a href="http://www.youtube.com/whitehouse">YouTube channel</a> on Thursday afternoon. <br /> +<br /> +The White House will continue to host Hangouts with key members of the President’s cabinet on a range of second term priorities. Follow the White House on Google+ for more information about how you can join the conversation... or an upcoming Hangout.<br /> +<br /> +<span class="byline-author">Posted by <a href="https://plus.google.com/102472537558752713135/posts">Ramya Raghavan</a>, Google+ Politics</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/-YDB56sfRsk" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/fireside-hangouts-join-vice-president.htmltag:blogger.com,1999:blog-10861780.post-23460967462837544182013-01-23T07:00:00.000-08:002013-01-23T08:43:13.179-08:002013-01-23T08:43:13.179-08:00Transparency Report: What it takes for governments to access personal informationToday we’re releasing new data for the <a href="http://www.google.com/transparencyreport/userdatarequests/">Transparency Report</a>, showing that the steady increase in government requests for our users’ data continued in the second half of 2012, as usage of our services continued to grow. We’ve shared figures like this <a href="http://googleblog.blogspot.com/2010/04/greater-transparency-around-government.html">since 2010</a> because it’s important for people to understand how government actions affect them.<br /> +<br /> +We’re always looking for ways to make the report even more informative. So for the first time we’re now <a href="https://www.google.com/transparencyreport/userdatarequests/US/">including</a> a breakdown of the kinds of legal process that government entities in the U.S. use when compelling communications and technology companies to hand over user data. From July through December 2012:<br /> +<ul><li>68 percent of the requests Google received from government entities in the U.S. were through subpoenas. These are requests for user-identifying information, issued under the Electronic Communications Privacy Act (“ECPA”), and are the easiest to get because they typically don’t involve judges.</li> +<li>22 percent were through ECPA search warrants. These are, generally speaking, orders issued by judges under ECPA, based on a demonstration of “probable cause” to believe that certain information related to a crime is presently in the place to be searched.</li> +<li>The remaining 10 percent were mostly court orders issued under ECPA by judges or other processes that are difficult to categorize.</li> +</ul><br /> +<div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-i_6gaDH1iuc/UP92oDlYQvI/AAAAAAAAKpM/VT7i5zKdNk0/s1600/US_transparency_report.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-i_6gaDH1iuc/UP92oDlYQvI/AAAAAAAAKpM/VT7i5zKdNk0/s500/US_transparency_report.png" width="500" /></a></div><br /> +User data requests of all kinds have increased by more than 70 percent since 2009, as you can see in our new visualizations of overall trends. In total, we received 21,389 requests for information about 33,634 users from July through December 2012.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-FimkRyCemck/UP92oRlixzI/AAAAAAAAKpY/YpqfOEv2jgA/s1600/charts_transparency_report.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-FimkRyCemck/UP92oRlixzI/AAAAAAAAKpY/YpqfOEv2jgA/s500/charts_transparency_report.png" width="500" /></a></div><br /> +We’ll keep looking for more ways to inform you about government requests and how we handle them. We hope more companies and governments themselves join us in this effort by releasing similar kinds of data.<br /> +<br /> +One last thing: You may have noticed that the latest Transparency Report doesn’t include new data on <a href="http://www.google.com/transparencyreport/removals/government/">content removals</a>. That’s because we’ve decided to release those numbers separately going forward. Stay tuned for that data.<br /> +<br /> +<span class="byline-author">Posted by Richard Salgado, Legal Director, Law Enforcement and Information Security</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/9CGTTWZozSw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/transparency-report-what-it-takes-for.htmltag:blogger.com,1999:blog-10861780.post-71765137157135623852013-01-17T19:24:00.000-08:002013-01-17T19:24:00.229-08:002013-01-17T19:24:00.229-08:00Responding to the severe flooding in Jakarta, IndonesiaThe Google Crisis Response team has assembled a <a href="http://www.google.org/intl/en/crisisresponse/2013-jakarta-flood.html">resource page</a> to help track affected areas and provide updated emergency information for the millions affected by flooding in Jakarta. We also have a <a href="http://www.google.org/crisisresponse/2013-jakarta-flood-mobile.html">mobile page</a> with emergency contact numbers and lists of shelters, and <a href="http://www.google.co.id/search?q=evakuasi">enhanced search results on google.co.id</a> to provide information directly when people search. We’ve also included this information in our <a href="http://www.google.co.id/intl/en/mobile/landing/freezone/stp.html">FreeZone</a> service to reach affected users on feature phones.<br /> +<br /> +On both the page and map, which are available in <a href="http://www.google.org/intl/en/crisisresponse/2013-jakarta-flood.html">English</a> and <a href="http://www.google.org/intl/id/crisisresponse/2013-jakarta-flood.html">Bahasa Indonesia</a>, you'll see an update on flood locations and related data such as traffic conditions in areas affected by the flooding.<br /> +<br /> +<iframe height="400" src="http://google.org/crisismap/2013-jakarta-flood-en?hl=en&amp;llbox=-6.0192%2C-6.5103%2C107.2118%2C106.4606&amp;t=roadmap&amp;layers=layer0%2C1&amp;promoted&amp;embedded=true" style="border: 1px solid #ccc;" width="400"></iframe><br /> +<br /> +To share the page or embed these maps on your own site, click "Share" at the top of the page. <br /> +<br /> +We’ll update the content as more information becomes available.<br /> +<br /> +<span class="byline-author">Posted by Alice Bonhomme-Biais, Software Engineer, Google Crisis Response</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PQ_SBKQgOpY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/responding-to-severe-flooding-in.htmltag:blogger.com,1999:blog-10861780.post-71693102934783916582013-01-14T12:57:00.000-08:002013-01-14T12:57:25.653-08:002013-01-14T12:57:25.653-08:00Inviting kids to dream big: Doodle 4 Google 2013 is open for submission! We’re always thinking about ways to make everyday life a little easier and a little more fun. But what would the <i>perfect</i> day look like? We thought we’d ask the most creative folks out there: today we’re announcing our 6th annual U.S. Doodle 4 Google competition, inviting K-12 students around the country to create their own “doodle” (one of the <a href="http://www.google.com/doodles">special Google logos</a> you see on our homepage on various occasions). This year’s theme: “<i>My Best Day Ever...</i>” Breakdancing with aliens? Sure! Building a fortress of candy? Okay by us! Riding to school on a brontosaurus? You get the idea—but if you need more inspiration, take a look at our video here:<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://0.gvt0.com/vi/s1PPYo6WL-Q/0.jpg"><param name="movie" value="http://www.youtube.com/v/s1PPYo6WL-Q&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><param name="allowFullScreen" value="true" /><embed width="320" height="266" src="http://www.youtube.com/v/s1PPYo6WL-Q&fs=1&source=uds" type="application/x-shockwave-flash" allowfullscreen="true"></embed></object></div> +<br /> +<br /> +The winning artist will see their work on the Google homepage for a day, win a $30,000 college scholarship, and win a $50,000 technology grant for his or her school.<br /> +<br /> +The judging starts with Googlers and a panel of guest judges. This year our judges include journalist and TV personality Katie Couric; music maestro Ahmir “?uestlove” Thompson of The Roots; Chris Sanders, writer and director of <i>Lilo &amp; Stitch</i> and <i>How to Train Your Dragon</i>; and Pendleton Ward, creator of <i>Adventure Time</i>; among other great creative minds.<br /> +<br /> +On May 1 we’ll open up a public vote for the 50 State Winners. They’ll be flown to New York City for a national awards ceremony on May 22. There, we’ll announce the National Winner, whose doodle will appear on the Google homepage the following day. In addition, all the State Winners will have their artwork on display at the <a href="http://www.amnh.org/">American Museum of Natural History</a> from May 22 to July 14. <br /> +<br /> +Participating is easier than ever. You can download the entry forms on our <a href="http://www.google.com/doodle4google">Doodle 4 Google site</a> and send in completed doodles by mail or online. All entries must be received by March 22 with a parent or guardian’s signature. We encourage full classrooms to participate too. There’s no limit to the number of doodles that come from any one school or family... just remember, only one doodle per student.<br /> +<br /> +For more details, check out <a href="http://google.com/doodle4google">google.com/doodle4google</a>, where you’ll find full contest rules and entry forms. Happy doodling, and good luck!<br /> +<br /> +<span class="byline-author">Posted by Ryan Germick, Doodle Team Lead<br /> +</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/xHsgO9dzA78" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/inviting-kids-to-dream-big-doodle-4.htmltag:blogger.com,1999:blog-10861780.post-1334717340806052102013-01-09T12:04:00.000-08:002013-01-10T15:11:32.400-08:002013-01-10T15:11:32.400-08:00A wind investment deep in the heart of TexasIn late December, while most of us were busy wrapping presents, our Treasury team was tying a bow on our most recent <a href="http://www.google.com/green/energy/investments/">renewable energy deal</a>: an approximately $200 million equity investment in a wind farm in west Texas that generates enough energy to power more than 60,000 average U.S. homes.<br /> +<br /> +Spinning Spur Wind Project is located in Oldham County, a wide open, windy section of the Texas Panhandle located about 35 miles from Amarillo. The 161 megawatt facility was built by renewable energy developer EDF Renewable Energy, a veteran in the industry that has overseen more than 50 other clean energy projects. Spinning Spur’s 70 2.3 MW Siemens turbines started spinning full time just before the end of the year, and the energy they create has been contracted to SPS, a utility that primarily serves Texas and New Mexico.<br /> +<br /> +We look for projects like Spinning Spur because, in addition to creating more renewable energy and strengthening the local economy, they also make for smart investments: they offer attractive returns relative to the risks and allow us to invest in a broad range of assets. We’re also proud to be the first investor in an EDF Renewable Energy project that is not a financial institution, as we believe that corporations can be an important new source of capital for the renewable energy sector.<br /> +<br /> +Spinning Spur joins 10 other renewable energy investments we’ve made since 2010, several of which hit significant milestones in the past year: <br /> +<br /> +<ul> +<li>The <a href="http://googleblog.blogspot.com/2010/10/wind-cries-transmission.html">Atlantic Wind Connection</a> received permission to begin permitting, an important step in advancing the construction of the United States’ first offshore backbone electric transmission system (more in this <a href="http://www.youtube.com/watch?v=6qSVtSCufcw">new video</a>).</li> +<li><a href="http://googleblog.blogspot.com/2011/04/shepherding-wind.html">Shepherds Flat</a>, one of the world’s largest wind farms with a capacity of 845 MW, became fully operational in October.</li> +<li>The <a href="http://ivanpahsolar.com/">Ivanpah</a> project, which is more than 75 percent complete and employs 2,000+ people, recently installed its 100,000th heliostat, a kind of mirror (more in this <a href="http://www.youtube.com/watch?v=3d1guTvhCjk">new video</a>).</li> +<li><a href="http://www.recurrentenergy.com/sites/default/files/Recurrent%20Energy_McKenzie%20COD%20Press%20Release_FINAL.pdf">Just yesterday</a>&nbsp;(PDF),&nbsp;the fourth and final phase of Recurrent Energy's 88MW solar installation in Sacramento County, Calif., reached commercial operation.</li> +</ul> +<br /> +Altogether, the renewable energy projects we’ve invested in are capable of generating 2 gigawatts of power. To give a better sense of what that really means, we came up with some comparisons (click to enlarge):<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-QZMg4fXuPdY/UO2L1YuXayI/AAAAAAAAKm4/XrSk8o_5gD0/s1600/infographic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="http://3.bp.blogspot.com/-QZMg4fXuPdY/UO2L1YuXayI/AAAAAAAAKm4/XrSk8o_5gD0/s640/infographic.png" width="284" /></a></div> +<br /> +Here’s to a clean, renewable 2013!<br /> +<br /> +<span class="byline-author">Posted by Kojo Ako-Asare, Senior Manager, Corporate Finance</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/b2IEbHlnXd4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/a-wind-investment-deep-in-heart-of-texas.htmltag:blogger.com,1999:blog-10861780.post-13351224064043770832013-01-07T09:00:00.000-08:002013-01-07T09:00:02.714-08:002013-01-07T09:00:02.714-08:00Finding the inner programmer in every Googler<i>This is the second post in a <a href="http://googleblog.blogspot.com/search/label/g2g">series</a> profiling Googlers who facilitate classes as part of our g2g program, in which Googlers teach, share and learn from each other. Regardless of role, level or location, g2g's community-based approach makes it possible for all Googlers to take advantage of a variety of learning opportunities.</i> - Ed.<br /> +<br /> +If someone had told me when I graduated with a degree in economics that I’d one day be employed in a technical role at Google, I would have laughed. In 2008, I joined Google’s people operations rotation program, in which one experiences three different people ops areas—from benefits to staffing—over the course of two years. After just a few short months, I found myself with a passion for technology and a profound interest in programming that would draw me into teaching a class, Intro to Programming (I2P), to non-engineers at Google as a part of the g2g (Googlers-to-Googlers) program. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-4Wov2Exe8Qs/UOr8tzOHlHI/AAAAAAAAKls/V6xFiHm5gmg/s1600/i2p+1.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="239" src="http://3.bp.blogspot.com/-4Wov2Exe8Qs/UOr8tzOHlHI/AAAAAAAAKls/V6xFiHm5gmg/s320/i2p+1.jpeg" width="320" /></a></div> +<div style="text-align: center;"> +<i>Teaching programming to an I2P class at our Mountain View, Calif. headquarters </i></div> +<br /> +While on the benefits team, I was assigned a project that involved matching up hundreds of Googlers’ names with their corresponding office locations and job titles. I quickly realized that a few simple <a href="http://en.wikipedia.org/wiki/Scripting_language">programming scripts</a> could probably speed up my work and reduce errors. The only problem was, I had no clue how to write a program. <br /> +<br /> +I began to teach myself the programming language Python, which is known for its clarity of syntax and friendliness to beginners. Slowly, I produced a multi-functional automated spreadsheet, and then a web application to share with my team. My teammates, seeing that my newfound technical skills had saved all of us time, asked me to teach them how to code; thus, in front of a whiteboard in a small conference room, I2P was born. <br /> +<br /> +Since then, more than 200 Googlers have taken I2P. We encourage an open, supportive environment in the class, making it an approachable way for Googlers to broaden their horizons within the workplace and gain new skills. Some of my former students have even moved from roles in global business, finance and people operations to full-time engineering positions. That’s awesome to see, but I love that Googlers can use what they learn in I2P to make processes across the company more efficient—no matter what team they work on. For example, an administrative assistant who took the class streamlined a manual daily task by automating an email response survey for her team. <br /> +<br /> +In addition to solving business challenges, I’ve also seen Googlers using the programming skills they learned in I2P to help others—both inside and outside of Google. Recently, an I2P alum increased participation in Google’s free flu shot program by writing a Python-based enrollment tool that allows Googlers to find appointments online by preferred office location and time. Thousands more Googlers signed up to receive flu shots due to the convenience provided by the tool. Because Google donates an equal number of vaccinations, such as those preventing meningitis or pneumonia, to children in the developing world, this new tool also led to thousands more children receiving crucial vaccinations. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://4.bp.blogspot.com/-JzxJ5B9StZI/UOr8zHcAiNI/AAAAAAAAKl0/GbfUlMi42M0/s1600/i2p+2.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="239" src="http://4.bp.blogspot.com/-JzxJ5B9StZI/UOr8zHcAiNI/AAAAAAAAKl0/GbfUlMi42M0/s320/i2p+2.jpeg" width="320" /></a></div> +<div style="text-align: center;"> +<i>More than 200 Googlers have participated in the 11-week course (the sword definitely helps keep engagement high...don’t worry, it’s foam!)</i></div> +<br /> +What’s extraordinary to me is that under the g2g program, the “guy down the hall in HR” can teach programming—of all things—to his fellow Googlers. It’s been extremely rewarding to experience first-hand the results of my students’ learnings. Googlers have taken the principles and skills from I2P and put them to work in time management, email communication and even just having fun re-creating <a href="http://en.wikipedia.org/wiki/Frogger">Frogger</a>—leave it to Googlers to span the gamut of I2P skill application. I often think how awesome it would be if every Googler could take I2P and apply what they’ve learned to make processes across the company more efficient.<br /> +<br /> +If you’re interested in learning how to code, here are three tips from the course that you can practice on your own. While I’ve learned these principles via programming, they can be helpful in all kinds of fields! <br /> +<br /> +<ul> +<li><b>Practice <i>and</i> theory. </b>You learn best when you have something to apply your learning to. With programming, find a project you want to apply your skills to and build the knowledge necessary to accomplish your project.</li> +<li><b>Bad habits die hard.</b> If you are writing messy or convoluted code, you are building habits that will be very hard to break. Better to overcome the pain of doing it the right way initially so that you never have to go back and change.</li> +<li><b>Get feedback. </b>Just because a script "works" doesn't mean it works well. Always get advice from others with more experience so that you are learning how to do things better, not just sufficiently well.</li> +</ul> +<br /> +<span class="byline-author">Posted by Albert Hwang, Team Lead of the People Technology &amp; Operations Tools Group</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/x20oGYbcEG8" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/finding-inner-programmer-in-every.htmltag:blogger.com,1999:blog-10861780.post-29980535001666075392013-01-03T16:42:00.000-08:002013-01-03T16:42:37.621-08:002013-01-03T16:42:37.621-08:00Make some New Year’s resolutions for your businessWhen Melodie Bishop heard about our <a href="http://www.gybo.com/">Get Your Business Online</a> program (an initiative that makes it fast, easy and free for U.S. businesses to get online), she jumped at the opportunity to turn her hobby of creating Chicago-themed gift baskets into a full-time business. Since launching her website, <a href="http://www.sendthemchicago.com/">Send Them Chicago</a>, this past summer, Melodie has seen a 70 percent increase in new customers.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-YGbXa0cfw7Y/UOTCWf-aQVI/AAAAAAAAKko/IUqGIa_nNCA/s1600/melodie.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-YGbXa0cfw7Y/UOTCWf-aQVI/AAAAAAAAKko/IUqGIa_nNCA/s500/melodie.jpeg" width="500" /></a></div> +<div style="text-align: center;"> +<i>Melodie Bishop with one of her gift baskets</i></div> +<br /> +As the holidays wrap up and the New Year starts, millions of business owners just like Melodie are thinking about how they can grow in 2013. For many, this means getting found and connecting with customers on the web. <br /> +<br /> +Yet often, it can be difficult to know where to start. That’s why we’re helping business owners create a list of <a href="http://www.gybo.com/new-years">New Year’s resolutions</a> for 2013. <br /> +<br /> +Let us know what you hope to accomplish in the New Year. Do you want to get your basic business information online? Or do you already have a website and want to reach more customers? Once you select your goals, we’ll create a customized list of resolutions with resources to help you stick to it. <br /> +<br /> +In the U.S., 58 percent of small businesses don’t have a website, but 97 percent of Internet users look online for local products and services. So it’s not surprising that businesses with a web presence are expected to grow 40 percent faster than those without. <a href="http://www.gybo.com/new-years">Creating a list of resolutions</a> for your business may just be one of the easiest things you can do to help your business grow. <br /> +<br /> +We’ll see you on the web.<br /> +<br /> +P.S. If you aren’t a small business owner, it’s not too late to give that business you know the <a href="http://www.gybo.com/gift">gift of a free website</a>.<br /> +<br /> +<span class="byline-author">Posted by Aditya Mahesh, Product Marketing, Get Your Business Online</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/iTtzrUrGhTE" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/make-some-new-years-resolutions-for.htmltag:blogger.com,1999:blog-10861780.post-89364518345482413832013-01-03T10:09:00.000-08:002013-01-03T11:19:29.279-08:002013-01-03T11:19:29.279-08:00The Federal Trade Commission closes its antitrust reviewThe U.S. Federal Trade Commission today announced it has closed its investigation into Google after an exhaustive 19-month review that covered millions of pages of documents and involved many hours of testimony. The conclusion is clear: Google’s services are good for users and good for competition. <br /> +<br /> +Larry and Sergey founded Google because they believed that building a great search experience would improve people’s lives. And in the decade-plus that’s followed, Google has worked hard to make it quicker and easier for users to find what they need. In the early days you would type in a query, we’d return 10 blue links and you’d have to click on them individually to find what you wanted. Today we can save you the hassle by providing direct answers to your questions, as well as links to other sites. So if you type in [weather san francisco], or [tom hanks movies], we now give you the answer right from the results page—because truly great search is all about turning your needs into actions in the blink of an eye. <br /> +<br /> +As we made clear when the FTC started its investigation, we’ve always been open to improvements that would create a better experience. And today we’ve <a href="http://www.google.com/pdf/google_ftc_dec2012.pdf">written</a> (PDF) to the FTC making two voluntary product changes:<br /> +<br /> +<ul><li><b>More choice for websites</b>: Websites can already <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156449">opt out of</a> Google Search, and they can now remove content (for example reviews) from specialized search results pages, such as local, travel and shopping;</li> +<li><b>More ad campaign control</b>: Advertisers can already <a href="http://support.google.com/adwords/editor/bin/answer.py?hl=en&amp;answer=38657">export their ad campaigns</a> from Google AdWords. They will now be able to mix and copy ad campaign data within third-party services that use our AdWords API.</li> +</ul><br /> +In addition, we’ve <a href="http://www.ftc.gov/os/caselist/1210120/130103googlemotorolaagree.pdf">agreed with the FTC</a>&nbsp;(PDF) that we will seek to resolve standard-essential patent disputes through a neutral third party before seeking injunctions. This agreement establishes clear rules of the road for standards essential patents going forward. <br /> +<br /> +We’ve always accepted that with success comes regulatory scrutiny. But we’re pleased that the FTC and the other authorities that have looked at Google's business practices—including the U.S. Department of Justice (in its <a href="http://www.justice.gov/opa/pr/2011/April/11-at-445.html">ITA Software</a> review), the U.S. courts (in the <i><a href="http://www.internetlibrary.com/cases/lib_case337.cfm">SearchKing</a></i> and <i><a href="http://www.internetlibrary.com/cases/lib_case502.cfm">Kinderstart</a></i> cases), and the Brazilian courts (in a <a href="http://searchengineland.com/google-wins-major-antitrust-victory-in-brazil-does-it-foreshadow-broader-eu-us-wins-132729">case last year</a>)—have concluded that we should be free to combine direct answers with web results. So we head into 2013 excited about our ability to innovate for the benefit of users everywhere.<br /> +<br /> +<span class="byline-author">Posted by David Drummond, Senior Vice President and Chief Legal Officer</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/nND0FTzFVHw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/the-federal-trade-commission-closes-its.htmltag:blogger.com,1999:blog-10861780.post-16086359926778921922013-01-01T08:00:00.000-08:002013-01-01T08:14:05.261-08:002013-01-01T08:14:05.261-08:00A little help from Google on your New Year’s resolutions The new year has arrived, and with it all the resolutions that we hope to tackle in 2013. <br /> +<br /> +But resolutions can be hard to keep. And since eating better, taking control of personal finances, travelling more and learning something new regularly top the list of New Year’s resolutions, we've pulled together some of our best tips and tricks across Google to make 2013 the year you succeed with your goals. <br /> +<br /> +<b>Eat better</b><br /> +<ul> +<li>Counting calories? <a href="https://chrome.google.com/webstore/category/app/104-food-and-health?utm_source=chrome-ntp-icon">Apps such as Diet Diary</a> can be easily accessed through <a href="https://chrome.google.com/webstore/detail/diet-diary/neckeibmjhibmgoigmffjlihekefmffd?utm_source=chrome-ntp-icon">Chrome</a> or your <a href="https://play.google.com/store/apps/details?id=org.medhelp.mydiet&amp;hl=en">Android</a> device—that way it’s with you when it‘s on your mind. If spreadsheets are more your style, try one of several Google Docs templates, like this <a href="https://docs.google.com/previewtemplate?id=0AvwwPO-xzD_QdHNJbE9NLUdUemdFZGtPR2pqN0xyUUE&amp;mode=public">weekly meal planner</a>.</li> +<li>Find recipes for healthy meals and how-to-cook videos with apps like <a href="https://chrome.google.com/webstore/detail/bbc-good-food/jnkffnoliaheoidfeejcmnidkkgilkja?utm_source=chrome-ntp-icon">BBC’s Good Food</a> for Chrome or food channels like <a href="http://www.youtube.com/showmethecurry">Show me the Curry</a> on YouTube.</li> +<li>Rely on the Google+ community for motivation and learn from others via hangouts on <a href="http://www.youtube.com/watch?v=uxJDPpDUaY0">how to prepare healthy meals</a>.</li> +<li>We know how easy it is to fall off track. Check out <a href="http://play.google.com/">Google Play</a> to find apps, books and music to keep you motivated.<br /> +</li> +</ul> +<iframe allowfullscreen="allowfullscreen" frameborder="0" height="315" src="http://www.youtube.com/embed/LXZRq3K1y-Q" width="560"></iframe><br /> +<br /> +<b><br /> +</b> <b>Get fiscally fit</b><br /> +<ul> +<li>To control your finances, you need to know exactly where money is coming in and out. This <a href="https://drive.google.com/a/google.com/previewtemplate?id=0Ai0sr77aWQ6mdEU1RUpVTTQ0Umlzdmk5alZQYXFCU2c&amp;mode=public">simple budget template</a> in Google Drive already has you halfway there.</li> +<li>If you prefer a more detailed budget, try using an app like Mint to track your finances on the go, available on both <a href="https://play.google.com/store/apps/details?id=com.mint&amp;hl=en">Android</a> and <a href="https://chrome.google.com/webstore/detail/mint/mhgffcfekbglhpcdjkhhjekhdnddkflg?utm_source=chrome-ntp-icon">Chrome</a>.</li> +<li>Keep track of your stock portfolio and related market news via <a href="http://www.google.com/finance">Google Finance</a> or with brokerage apps like <a href="https://play.google.com/store/apps/details?id=com.etrade.mobilepro.activity&amp;hl=en">E*TRADE</a> from Google Play.</li> +</ul> +<b><br /> +</b> <b>Travel more</b><br /> +<ul> +<li>Use <a href="http://www.google.com/flights/">Google Flight Search</a> to quickly compare flight times and costs across airlines. Try the “tourist spotlight” feature on <a href="http://www.google.com/hotelfinder/#search;si=">Google Hotel Finder</a> to find a room near the hottest spots in the city.</li> +<li>Simply type [tourist attractions &lt;city name&gt;] into Google Search to see some of the <a href="https://www.google.com/search?q=tourist+attractions+buenos+aires">top points of interest</a>. Once you have a list of the things you want to do and see, keep it in one place and share it with your travel buddies using <a href="https://docs.google.com/previewtemplate?id=0AkgIu-1H_qbEdGRaVENUQzA5SFpBWHpTcWZWYlVnWHc&amp;mode=public">Google Sheets</a>.&nbsp;</li> +<li>Never get lost with <a href="http://maps.google.com/help/maps/helloworld/tips/travel.html">Google Maps</a>. Whether your plans are local or <a href="http://maps.google.com/help/maps/helloworld/android/directions.html#feature-android-offline">international</a>, <a href="http://maps.google.com/help/maps/helloworld/android/directions.html#feature-android-indoor">indoors</a> or <a href="http://maps.google.com/help/maps/streetview/gallery/index.html">out</a>, comprehensive and accurate Google Maps can help you find your way.</li> +</ul> +<b><br /> +</b> <b> Learn something new</b><br /> +<ul> +<li>Learn how to <a href="http://www.youtube.com/watch?v=-N5CLZiLOwU">hone your yoga practice</a> or <a href="http://www.youtube.com/watch?v=0jl1P507AvE">crochet a granny square</a> by following the steps of experts on YouTube. If classroom style learning works better for you, try joining a <a href="http://www.google.com/+/learnmore/hangouts/">Google+ Hangout</a> or <a href="http://www.google.com/+/learnmore/communities/">Community</a> to learn how to <a href="https://plus.google.com/+DanielIbanez/posts/QX2EK4W15tU">paint</a>, <a href="https://plus.google.com/+LarryFournillier/posts">cook</a> or <a href="https://plus.google.com/communities/112260687631793896685">knit</a> from people who share your interests and passions.</li> +<li>Try a free language learning app like the <a href="https://chrome.google.com/webstore/detail/learn-spanish-qu%C3%A9-onda-sp/pmcdjmebmeoobmdghjbjhbifoocbcmaj">Que Onda</a> Spanish app for Chrome or the <a href="https://play.google.com/store/apps/details?id=com.busuu.android.pt&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5idXN1dS5hbmRyb2lkLnB0Il0.">Busuu Portuguese language app</a> for Android.</li> +<li>Keep up with current events or hone in on specific interests by personalizing your <a href="https://news.google.com/">Google News</a> and setting up <a href="http://www.google.com/alerts">Google Alerts</a> to receive information on specific topics directly in your email. If your inbox is already on overload, try the <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.currents&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5nb29nbGUuYW5kcm9pZC5hcHBzLmN1cnJlbnRzIl0.">Google Currents app</a> for news on the go.</li> +<li>Learning something new doesn’t have to break the bank. Check out <a href="https://www.google.com/offers/">Google Offers</a> for deals on classes for dancing, cooking, bartending and more.&nbsp;</li> +</ul> +If your resolution wasn’t listed here, try checking out <a href="https://plus.google.com/u/0/+selfmagazine/posts">SELF Magazine</a>’s Google+ page with tips from experts, live via Google+ hangouts, for 13 more resolutions starting on January 13.<br /> +<br /> +<a href="http://www.dominican.edu/dominicannews/study-backs-up-strategies-for-achieving-goals">Research shows</a> that you’re more likely to achieve your resolutions if you write them down and have support. Try sharing your goals with <a href="https://plus.google.com/communities/105008312335704126105">communities</a> around you. When you’re ready to share your new year’s ambition with the world, or if you're interested in seeing what resolutions look like around the globe, add it to the <a href="http://www.google.com/zeitgeist/2012/resolutions">interactive resolution map</a> on our 2012 Zeitgeist website.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-0CgQvdqCzGw/UOHswD7LLAI/AAAAAAAAKjk/No4tcOisjuc/s1600/11VDBoYLpHIezGTHEFxBmj7v9JFdNcwM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-0CgQvdqCzGw/UOHswD7LLAI/AAAAAAAAKjk/No4tcOisjuc/s500/11VDBoYLpHIezGTHEFxBmj7v9JFdNcwM.png" width="500" /></a></div> +<br /> +No matter who you are, the web can help you do anything. <br /> +<br /> +<span class="byline-author">Posted by Liz Wessel, Associate Product Marketing Manager</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/iTzCFyAJNVU" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/a-little-help-from-google-on-your-new.htmltag:blogger.com,1999:blog-10861780.post-12336382907549140282013-01-01T00:01:00.000-08:002013-01-01T00:01:00.987-08:002013-01-01T00:01:00.987-08:00Marking the birth of the modern-day Internet<i>Today is the 30th birthday of the modern-day Internet. Five years ago we marked the occasion with <a href="http://www.google.com/doodles/happy-new-year-25-years-of-tcpip" target="_blank">a doodle</a>. This year we invited Vint Cerf to tell the story. Vint is widely regarded as one of the fathers of the Internet for his contributions to shaping the Internet’s architecture, including co-designing the TCP/IP protocol. Today he works with Google to promote and protect the Internet. -Ed.</i><br /> +<br /> +A long time ago, my colleagues and I became part of a great adventure, teamed with a small band of scientists and technologists in the U.S. and elsewhere. For me, it began in 1969, when the potential of <a href="http://www.packet.cc/files/ev-packet-sw.html" target="_blank">packet switching</a> communication was operationally tested in the grand <a href="http://en.wikipedia.org/wiki/ARPANET" target="_blank">ARPANET</a> experiment by the U.S. Defense Advanced Research Projects Agency (DARPA). <br /> +<br /> +Other kinds of packet switched networks were also pioneered by DARPA, including mobile packet radio and packet satellite, but there was a big problem. There was no common language. Each network had its own <a href="http://en.wikipedia.org/wiki/Communications_protocol" target="_blank">communications protocol</a> using different conventions and formatting standards to send and receive packets, so there was no way to transmit anything between networks. <br /> +<br /> +In an attempt to solve this, Robert Kahn and I developed a new computer communication protocol designed specifically to support connection among different packet-switched networks. We called it TCP, short for “Transmission Control Protocol,” and in 1974 we published a paper about it in IEEE Transactions on Communications: “<a href="http://www.cs.princeton.edu/courses/archive/fall06/cos561/papers/cerf74.pdf" target="_blank">A Protocol for Packet Network Intercommunication</a>.” Later, to better handle the transmission of real-time data, including voice, we split TCP into two parts, one of which we called “Internet Protocol,” or IP for short. The two protocols combined were nicknamed TCP/IP. <br /> +<br /> +TCP/IP was tested across the three types of networks developed by DARPA, and eventually was anointed as their new standard. In 1981, Jon Postel published&nbsp;<a href="http://tools.ietf.org/rfc/rfc801.txt" target="_blank">a transition plan</a>&nbsp;to migrate the 400 hosts of the ARPANET from the older NCP protocol to TCP/IP, including a deadline of January 1, 1983, after which point all hosts not switched would be cut off.<br /> +<br /> +<a href="http://4.bp.blogspot.com/-erdVu3tz5J8/UOB0kUf44uI/AAAAAAAAAkI/hP2ohFzxY_w/s1600/vint1973.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="175" src="http://4.bp.blogspot.com/-erdVu3tz5J8/UOB0kUf44uI/AAAAAAAAAkI/hP2ohFzxY_w/s175/vint1973.jpg" width="138" /></a><a href="http://2.bp.blogspot.com/-920CgB0yOus/UOB0mkYL1_I/AAAAAAAAAkQ/DyeumsP6GLg/s1600/robertkahn.jpeg" imageanchor="1" style="clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;"><img border="0" height="175" src="http://2.bp.blogspot.com/-920CgB0yOus/UOB0mkYL1_I/AAAAAAAAAkQ/DyeumsP6GLg/s175/robertkahn.jpeg" width="150" /></a><a href="http://2.bp.blogspot.com/-basjA_0v9pw/UOB0oDvo7lI/AAAAAAAAAkY/wP3LzvStEC0/s1600/jonpostel.jpeg" imageanchor="1" style="clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;"><img border="0" height="175" src="http://2.bp.blogspot.com/-basjA_0v9pw/UOB0oDvo7lI/AAAAAAAAAkY/wP3LzvStEC0/s175/jonpostel.jpeg" width="116" /></a><br /> +<div style="text-align: center;"><i><span style="font-size: x-small;"><br /> +</span></i> <i><span style="font-size: x-small;">From left to right: Vint Cerf in 1973, Robert Kahn in the 1970’s, Jon Postel</span></i></div><br /> +When the day came, it’s fair to say the main emotion was relief, especially amongst those system administrators racing against the clock. There were no grand celebrations—I can’t even find a photograph. The only visible mementos were the “I survived the TCP/IP switchover” pins proudly worn by those who went through the ordeal!<br /> +<br /> +<div style="text-align: center;"><a href="http://3.bp.blogspot.com/-okvtFrHvORQ/UOB17-TjSCI/AAAAAAAAAkk/l0TUWBS3Zw8/s1600/tcptransitionbutton.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="194" src="http://3.bp.blogspot.com/-okvtFrHvORQ/UOB17-TjSCI/AAAAAAAAAkk/l0TUWBS3Zw8/s200/tcptransitionbutton.jpg" width="200" /></a></div><br /> +Yet, with hindsight, it’s obvious it was a momentous occasion. On that day, the operational Internet was born. TCP/IP went on to be embraced as an international standard, and now underpins the entire Internet. <br /> +<br /> +It’s been almost 40 years since Bob and I wrote our paper, and I can assure you while we had high hopes, we did not dare to assume that the Internet would turn into the worldwide platform it’s become. I feel immensely privileged to have played a part and, like any proud parent, have delighted in watching it grow. I continue to <a href="http://googleblog.blogspot.co.uk/2012/12/keep-internet-free-and-open.html" target="_blank">do what I can</a> to protect its future. I hope you’ll join me today in raising a toast to the Internet—may it continue to connect us for years to come.<br /> +<br /> +<span class="byline-author">Posted by Vint Cerf, VP and Chief Internet Evangelist</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/CnvdABr2GCY" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2013/01/marking-birth-of-modern-day-internet.htmltag:blogger.com,1999:blog-10861780.post-89596038824574996532012-12-24T02:00:00.000-08:002012-12-24T02:00:04.080-08:002012-12-24T02:00:04.080-08:00Follow Santa live on Google Santa TrackerThe North Pole air traffic control elves have just notified us that Santa has taken off! For the next day, you can visit the <a href="http://www.google.com/santatracker/">Google Santa Tracker</a> to see where Santa’s headed next and keep tabs on how many presents he’s delivered. You can also keep up with him on your smartphone and tablet with the <a href="https://play.google.com/store/apps/details?id=com.google.android.santatracker">Android app</a>, in your browser with the the <a href="https://chrome.google.com/webstore/detail/santa-tracker/iodomglenhcehfbhbakhedmbobhbgjcb">Chrome extension</a>, and even in 3D with <a href="http://www.google.com/earth/download/ge/agree.html">Google Earth</a> and <a href="http://www.google.com/mobile/earth/">Google Earth mobile</a> (look for it in the Tour Guide feature with the latest version of Google Earth).<br /> +<br /> +<div style="text-align: center;"> +<embed flashvars="host=picasaweb.google.com&amp;captions=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2F101276679868918752026%2Falbumid%2F5824855058378270321%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" height="307" pluginspage="http://www.macromedia.com/go/getflashplayer" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" type="application/x-shockwave-flash" width="528"></embed><br /></div> +<br /> +And follow Google Maps on <a href="https://plus.google.com/+GoogleMaps">Google+</a>, <a href="http://www.facebook.com/GoogleMaps">Facebook</a> and <a href="https://twitter.com/googlemaps">Twitter</a> to get up-to-the-minute details on Santa’s journey around the world. <br /> +<br /> +Ho ho ho! Happy holidays everyone!<br /> +<br /> +<span class="byline-author">Posted by Brian McClendon, VP of Google Maps and Google Earth</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PKZ3-r11u90" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/follow-santa-live-on-google-santa.htmltag:blogger.com,1999:blog-10861780.post-43219248044561893842012-12-20T11:43:00.000-08:002012-12-20T12:01:50.271-08:002012-12-20T12:01:50.271-08:00Tips for getting the most from Google Maps on iPhoneWe hope you’ve had a chance to try the new Google Maps app for iPhone (announced last week and available for download in the <a href="https://itunes.apple.com/app/id585027354?mt=8">Apple App Store</a>). The app is designed to be simple—just to work whenever you need it. Still, we have a few tips to make finding things with Google Maps even faster and easier. All the tips are collected on our <a href="http://maps.google.com/help/maps/helloworld/iphone/quicktips.html">site</a> but here a few of my favorites:<br /> +<ul> +<li><b>Swipe to see more. </b>In Google Maps a wealth of information is often just a swipe away. Whether you’re looking at search results or directions, you can swipe the bottom info sheet left and right to see other options. To get more details on any of the results, swipe that info sheet upward (or just tap it—that works too). Even with the info sheet expanded, you can swipe to see those other results.</li> +</ul> +<ul> +<li><b>Place a pin.</b> Get more information about any location by just pressing and holding the map. The info sheet that pops up tells you the address, lets you save or share the place, and best of all, brings up...</li> +</ul> +<ul> +<li><b>Street View. </b>By far the easiest way to get to Street View is placing a pin. Tap the imagery preview on the info sheet to enter into Street View, then explore! I recommend the look-around feature (bottom left button) which changes what you’re looking at as you tilt and move your phone.</li> +</ul> +Want to learn more? See the rest of our tips on the <a href="http://maps.google.com/help/maps/helloworld/iphone/quicktips.html">site</a>. And as you explore the app on your own, share your own tips using #googlemaps. Most of all, enjoy discovering your world.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-F_RugfiWZkk/UNNb4tNi-TI/AAAAAAAAKig/W2_x1GAoJAI/s1600/Screen%2BShot%2B2012-12-20%2Bat%2B10.31.33%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-F_RugfiWZkk/UNNb4tNi-TI/AAAAAAAAKig/W2_x1GAoJAI/s500/Screen%2BShot%2B2012-12-20%2Bat%2B10.31.33%2BAM.png" width="500" /></a></div> +<br /> +<span class="byline-author">Posted by Vicky Tait, Consumer Operations, Google Maps</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/TSAkF7sFCYw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/tips-for-getting-most-from-google-maps.htmltag:blogger.com,1999:blog-10861780.post-17008220853716341002012-12-20T09:30:00.000-08:002012-12-20T09:30:00.983-08:002012-12-20T09:30:00.983-08:00Cloud computing enabling entrepreneurship in AfricaIn 2007, 33-year-old Vuyile moved to Cape Town from rural South Africa in search of work. Unable to complete high school, he worked as a night shift security guard earning $500/month to support his family. During the rush hour commute from his home in Khayelitsha, Vuyile realized that he could earn extra income by selling prepaid mobile airtime vouchers to other commuters on the train. <br /> +<br /> +In rural areas, it’s common to use prepaid vouchers to pay for basic services such as electricity, insurance and airtime for mobile phones. But it’s often difficult to distribute physical vouchers because of the risk of theft and fraud. <br /> +<br /> +<a href="http://www.nomanini.com/">Nomanini</a>, a startup based in South Africa, built a device that enables local entrepreneurs like Vuyile to sell prepaid mobile services in their communities. The Lula (which means “easy” in colloquial Zulu), is a portable voucher sales terminal that is used on-the-go by people ranging from taxi drivers to street vendors. It generates and prints codes which people purchase to add minutes to their mobile phones. <br /> +<br /> +Today, Vuyile sells vouchers on the train for cash payment, and earns a commission weekly. Since he started using the Lula, he’s seen his monthly income increase by 20 percent.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-KlTTWSwTYtI/UNMnPQYQl-I/AAAAAAAAKhc/1mCiudoVqtk/s1600/vuyile+(1).jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="http://3.bp.blogspot.com/-KlTTWSwTYtI/UNMnPQYQl-I/AAAAAAAAKhc/1mCiudoVqtk/s400/vuyile+(1).jpg" width="300" /></a></div> +<div style="text-align: center;"> +<i>Vuyile prints a voucher from his Lula</i></div> +<br /> +Nomanini founders Vahid and Ali Monadjem wanted to make mobile services widely available in areas where they had been inaccessible, or where—in a region where the average person makes less than $200/month—people simply couldn’t afford them. By creating a low-cost and easy-to-use product, Nomanini could enable entrepreneurs in Africa to go to deep rural areas and create businesses for themselves. <br /> +<br /> +In order to build a scalable and reliable backend system to keep the Lula running, Nomanini chose to run on <a href="https://cloud.google.com/products/?utm_source=ogb&amp;utm_medium=blog&amp;utm_campaign=nomanini">Google App Engine</a>. Their development team doesn’t have to spend time setting up their own servers and can instead run on the same infrastructure that powers Google’s own applications. They can focus on building their backend systems and easily deploy code to Google’s data centers. When Vuyile makes a sale, he presses a few buttons, App Engine processes the request, and the voucher prints in seconds. <br /> +<br /> +Last month, 40,000 people bought airtime through the Lula, and Nomanini hopes to grow this number to 1 million per month next year. While platforms like App Engine are typically used to build web or smartphone apps, entrepreneurs like Vahid and Ali are finding innovative ways to leverage this technology by building their own devices and connecting them to App Engine. Vahid tells us: “We’re a uniquely born and bred African solution, and we have great potential to take this to the rest of Africa and wider emerging markets. We could not easily scale this fast without running on Google App Engine.” <br /> +<br /> +To learn more about the technical implementation used by Nomanini, read their guest post on the <a href="http://googleappengine.blogspot.com/2012/12/developer-insights-mobile-voucher-sales.html">Google App Engine blog</a>.<br /> +<br /> +<span class="byline-author">Posted by Zafir Khan, Google App Engine</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/TbkmJIsBlV4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/cloud-computing-enabling.htmltag:blogger.com,1999:blog-10861780.post-56284069676846244662012-12-19T08:25:00.003-08:002012-12-19T08:25:41.384-08:002012-12-19T08:25:41.384-08:00Explore Spain's Jewish heritage onlineYou can now discover Spain’s Jewish heritage on a new site powered by comprehensive and accurate Google Maps: <a href="http://www.redjuderias.org/google">www.redjuderias.org/google</a>.<br /> +<br /> +Using the Google Maps API, <a href="http://www.redjuderias.org/">Red de Juderías de España</a> has built a site where you can explore more than 500 landmarks that shed light on Spain’s Jewish population throughout history. By clicking on a landmark, you can get historical information, pictures or texts, and a 360º view of the location, thanks to Street View technology. You can also use the search panel on the top of the page to filter the locations by category, type, geographic zone or date.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-ntJQdwwZNr4/UNHpASwsCpI/AAAAAAAAKgg/UrKGtiKDwYw/s1600/maps.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="276" src="http://3.bp.blogspot.com/-ntJQdwwZNr4/UNHpASwsCpI/AAAAAAAAKgg/UrKGtiKDwYw/s400/maps.png" width="400" /></a></div> +<div style="text-align: center;"> +<i>Toledo, Synagogue Santamaría la Blanca</i></div> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://4.bp.blogspot.com/-kRxbAy38icc/UNHo_UHTnuI/AAAAAAAAKgY/m3L9rgbzoMQ/s1600/maps-textos.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="276" src="http://4.bp.blogspot.com/-kRxbAy38icc/UNHo_UHTnuI/AAAAAAAAKgY/m3L9rgbzoMQ/s400/maps-textos.png" width="400" /></a></div> +<div style="text-align: center;"> +<i>Information is included on each landmark</i></div> +<br /> +This project is just one of our efforts to bring important cultural content online. This week, we worked with the Israel Antiquities Authority to <a href="http://googleblog.blogspot.com/2012/12/in-beginningbringing-scrolls-of-genesis.html">launch</a> the <a href="http://www.deadseascrolls.org.il/">Leon Levy Dead Sea Scrolls Digital Library</a>, an online collection of more than 5,000 scroll fragments, and last year we announced a <a href="http://googleblog.blogspot.com/2011/01/explore-yad-vashems-holocaust-archives.html">project</a> to digitize and make available the Yad Vashem Museum’s Holocaust archives. With the <a href="http://www.googleartproject.com/">Google Art Project</a>, people around the world can also view and explore more than 35,000 works of art in 180 museums.<br /> +<br /> +Read more about this project on the <a href="http://googlepolicyeurope.blogspot.com/2012/12/celebrating-recovery-of-spains-jewish.html">Europe Blog</a>. We hope this new site will inspire you to learn more about Spain’s Jewish history, and perhaps to visit these cities in person.<br /> +<br /> +<span class="byline-author">Posted by William Echikson, External Relations, Europe, Middle East and Africa<br /> +</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/gt2dns4sGkw" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/explore-spains-jewish-heritage-online.htmltag:blogger.com,1999:blog-10861780.post-85445130345907606132012-12-18T22:00:00.000-08:002012-12-18T23:59:28.014-08:002012-12-18T23:59:28.014-08:00Count down to Christmas Eve with Google Santa TrackerWhile millions of people eagerly await Christmas Day, Santa and his elves are keeping busy at the <a href="http://google.com/santatracker">North Pole</a>. They’re preparing presents, tuning up the sleigh, feeding the reindeer and, of course, checking the list (twice!) before they take flight on their trip around the world. <br /> +<br /> +While we’ve been tracking Santa since 2004 with Google Earth, this year a team of dedicated <a href="http://maps.google.com/">Google Maps</a> engineers built a new route algorithm to chart Santa’s journey around the world on Christmas Eve. On his sleigh, arguably the fastest airborne vehicle in the world, Santa whips from city to city delivering presents to millions of homes. You’ll be able to follow him on Google Maps and Google Earth, and get his stats starting at 2:00 a.m. PST Christmas Eve at <a href="http://google.com/santatracker">google.com/santatracker</a>. <br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://1.bp.blogspot.com/-68Yyfm-9StM/UNEeWahO9rI/AAAAAAAAKfU/9dQ4pDKxrxk/s1600/Screen+Shot+2012-12-18+at+3.38.49+PM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-68Yyfm-9StM/UNEeWahO9rI/AAAAAAAAKfU/9dQ4pDKxrxk/s500/Screen+Shot+2012-12-18+at+3.38.49+PM.png" width="500" /></a></div> +<div style="text-align: center;"> +<i>Simulating Santa's path across the world—see it live Dec 24</i></div> +<br /> +In addition, with some help from developer elves, we’ve built a few other tools to help you track Santa from wherever you may be. Add the new <a href="https://chrome.google.com/webstore/detail/iodomglenhcehfbhbakhedmbobhbgjcb">Chrome extension</a> or download the <a href="https://play.google.com/store/apps/details?id=com.google.android.santatracker">Android app</a> to keep up with Santa from your smartphone or tablet. And to get the latest updates on his trip, follow Google Maps on <a href="https://plus.google.com/+GoogleMaps/">Google+</a>, <a href="http://www.facebook.com/GoogleMaps">Facebook</a> and <a href="https://twitter.com/googlemaps">Twitter</a>.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-LnolqJl6iig/UNEeYj_QY7I/AAAAAAAAKfc/mFyxjksEMCo/s1600/dashboard.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-LnolqJl6iig/UNEeYj_QY7I/AAAAAAAAKfc/mFyxjksEMCo/s500/dashboard.png" width="500" /></a></div> +<div style="text-align: center;"> +<i>Get a dashboard view of Santa's journey on Google Maps</i></div> +<br /> +The Google Santa Tracker will launch on December 24, but the countdown to the journey starts now! Visit <a href="http://g.co/santatracker">Santa’s Village</a> today to watch the countdown clock and join the elves and reindeer in their preparations. You can even ask <a href="http://www.google.com/santatracker/santacall">Santa to call a friend or family member</a>. <br /> +<br /> +We hope you enjoy tracking Santa with us this year. And on behalf of everyone at Google—happy holidays! <br /> +<br /> +<span class="byline-author">Posted by Brian McClendon, VP of Google Maps and Google Earth</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/PGSuXuqaca4" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/count-down-to-christmas-eve-with-google.htmltag:blogger.com,1999:blog-10861780.post-68972798731283581352012-12-18T02:00:00.000-08:002012-12-18T02:00:07.805-08:002012-12-18T02:00:07.805-08:00“In the beginning”...bringing the scrolls of Genesis and the Ten Commandments onlineA little over a year ago, we <a href="http://googleblog.blogspot.com/2011/09/from-desert-to-web-bringing-dead-sea.html">helped put online</a> five manuscripts of the Dead Sea Scrolls—ancient documents that include the oldest known biblical manuscripts in existence. Written more than 2,000 years ago on pieces of parchment and papyrus, they were preserved by the hot, dry desert climate and the darkness of the caves in which they were hidden. The Scrolls are possibly the most important archaeological discovery of the 20th century.<br /> +<br /> +Today, we’re helping put more of these ancient treasures online. The Israel Antiquities Authority is launching the <a href="http://www.deadseascrolls.org.il/">Leon Levy Dead Sea Scrolls Digital Library</a>, an online collection of some 5,000 images of scroll fragments, at a quality never seen before. The texts include one of the earliest known copies of the Book of Deuteronomy, which includes the <a href="http://www.deadseascrolls.org.il/explore-the-archive/image/B-314643?locale=en_US">Ten Commandments</a>; part of Chapter 1 of the <a href="http://www.deadseascrolls.org.il/explore-the-archive/image/B-295662">Book of Genesis</a>, which describes the creation of the world; and hundreds more 2,000-year-old texts, shedding light on the time when Jesus lived and preached, and on the history of Judaism.<br /> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://2.bp.blogspot.com/-8xcrNwgKi_k/UM-J-_JBH3I/AAAAAAAAKeQ/CZ8-bSFEpZA/s1600/10+COMMANDMENTS+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-8xcrNwgKi_k/UM-J-_JBH3I/AAAAAAAAKeQ/CZ8-bSFEpZA/s500/10+COMMANDMENTS+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" width="500" /></a></div> +<div style="text-align: center;"> +<i>The Ten Commandments. Photo by Shai Halevi, courtesy of Israel Antiquities Authority</i></div> +<br /> +<div class="separator" style="clear: both; text-align: center;"> +<a href="http://3.bp.blogspot.com/-WLO0YK8_kJw/UM-J_9nLKmI/AAAAAAAAKeY/evKNiFphwhM/s1600/Genesis+Chapter+1+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-WLO0YK8_kJw/UM-J_9nLKmI/AAAAAAAAKeY/evKNiFphwhM/s500/Genesis+Chapter+1+-+photo+credit+Shai+Halevi,+courtesy+of+Israel+Antiquities+Authority.jpg" width="500" /></a></div> +<div style="text-align: center;"> +<i>Part of the Book of Genesis. Photo by Shai Halevi, courtesy of Israel Antiquities Authority</i></div> +<br /> +Millions of users and scholars can discover and decipher details invisible to the naked eye, at 1215 dpi resolution. The site displays infrared and color images that are equal in quality to the Scrolls themselves. There’s a database containing information for about 900 of the manuscripts, as well as interactive content pages. We’re thrilled to have been able to help this project through hosting on Google Storage and App Engine, and use of Maps, YouTube and Google image technology.<br /> +<br /> +This partnership with the Israel Antiquities Authority is part of our ongoing work to bring important cultural and historical materials online, to make them accessible and help preserve them for future generations. Other examples include the <a href="http://googleblog.blogspot.com/2011/01/explore-yad-vashems-holocaust-archives.html">Yad Vashem Holocaust photo collection</a>, <a href="http://www.googleartproject.com/">Google Art Project</a>, <a href="http://www.google.com/intl/en/culturalinstitute/worldwonders/">World Wonders</a> and the <a href="http://www.google.com/culturalinstitute/#!home">Google Cultural Institute</a>. <br /> +<br /> +We hope you enjoy visiting the Dead Sea Scrolls Digital Library, or any of these other projects, and interacting with history.<br /> +<br /> +<span class="byline-author">Posted by Eyal Miller, New Business Development, and Yossi Matias, Head of Israel Research and Development Center</span><img src="http://feeds.feedburner.com/~r/blogspot/MKuf/~4/qT8Tg7WjphI" height="1" width="1"/>Emily Woodhttps://plus.google.com/112374322230920073195noreply@blogger.comhttp://googleblog.blogspot.com/2012/12/in-beginningbringing-scrolls-of-genesis.html diff --git a/vendor/fguillot/picofeed/tests/fixtures/grotte_barbu.xml b/vendor/fguillot/picofeed/tests/fixtures/grotte_barbu.xml deleted file mode 100644 index 5bd0940..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/grotte_barbu.xml +++ /dev/null @@ -1,396 +0,0 @@ - - - - - La Grotte Du Barbu - - http://www.lagrottedubarbu.com - Entrez dans le monde mystérieux des barbus... - Tue, 02 Apr 2013 13:20:24 +0000 - en - hourly - 1 - http://wordpress.org/?v=3.0.1 - - LaGrotteDuBarbu – Episode 105 – ReliureToiMeme - http://www.lagrottedubarbu.com/2013/04/01/lagrottedubarbu-episode-105-reliuretoimeme/ - http://www.lagrottedubarbu.com/2013/04/01/lagrottedubarbu-episode-105-reliuretoimeme/#comments - Mon, 01 Apr 2013 09:01:50 +0000 - babozor - - - - - - - - - - - - http://www.lagrottedubarbu.com/?p=1195 - - Cette semaine, on tente de relier des feuilles pour en faire des carnets, avec de la colle vinyle, un pinceau… et surtout avec l’ami PYM eu supra guest barbu!

    -

    -

    Ce dont vous avez besoin pour cet épisode:
    -- des feuilles, du papier, des trucs que vous allez coller… perso j’ai pris du papier complètement standard A4 / 80g
    -- deux morceaux de bois de taille plus ou moins identique
    -- deux vis, écrous à ailettes, deux washers (me souviens jamais du nom de ces trucs en FR)
    -- une perceuse
    -- un foret à bois du bon diamètre (pour faire passer les vis)
    -- du tissu pour reliure (c’est pas super cher et vous en utilisez très peu)
    -- de la colle vinyl
    -- un pinceau pourri / jetable
    -- éventuellement du carton pour faire le dos du carnet
    -- des ciseaux, cutter ou scalpel pour découper votre papier (et une règle et un tapis de découpe ça vous évitera de ruiner la table qui est en dessous)

    -

    Ep105 8

    -

    Ep105 7

    -

    Le fichier de mes super todolist est disponible ici… au format illustrator ou pdf vous pouvez les imprimer, modifier comme vous voulez.

    -

    Ep105 9

    -

    Ep105 10

    -

    Quelques remarques
    -- d’abord je n’ai pas pour l’instant trouvé de solution pour microter correctement mes invités, donc les prochains devront parler plus fort, je réfléchis au problème et essayes de trouver une solution sous peu
    -- Moi j’adore me fabriquer des carnets rigolos et pas communs. Celui pour les courses est juste ultra pratique, je vais je penses rajouter un aimant dans le dos pour pouvoir le coller au frigo et l’avoir tout le temps sous la main
    -- c’est un projet qui demande pas beaucoup de matériel et qui est pas cher… le plus chiant à trouver reste le tissu pour la reliure (et encore en cherchant un peu on trouve… apparemment ils appellent ça mousseline un morceau de 65×100 cm coute 1 euro)
    -- je vous conseille d’acheter la colle vinyle en grand pot d’un litre, ça coute trois euros environ et ça peut servir à pleins de projets différents
    -- je ne suis clairement pas un spécialiste (mais je penses que ça se voit), mon but est de noyer la zone sous la colle pour que ça tienne, ça marche (bon pas à chaque fois, hein PYM?) mais ça a tendance à faire gondoler le papier qui a été noyé sous l’encre. Perso je m’en tapes, mais je préfère prévenir.
    -- Alors, j’adore les scalpels et pour plusieurs raisons, la première c’est que c’est un outil qui ne demande pas de maintenance, pas de lame à casser, pas de truc à aiguiser, dès que la lame coupe moins bien, on la change direct. Ensuite les pro l’utilisent donc il doit y avoir une raison. Enfin le prix, 2,70€ pour un manche standard… et suivant les packagings entre 8 et 15 euros pour 50 ou 100 lames de bistouri. Perso je prends du N°11 (la lame est droite sur toute la longueur) mais là aussi suivant les travaux que vous avez à réaliser vous pouvez choisir une autre forme. Les lames et les manches sont trouvables aussi bien en ligne, qu’en les commandant chez votre pharmacien (bon après je vous garanti pas une réputation sans tâche, mais…)

    -

    Quelques photos du résultat:

    -

    Ep105 12

    -

    Ep105 1

    -

    Ep105 2

    -

    Ep105 3

    -

    Ep105 4

    -

    Ep105 5

    -

    Ep105 6

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/04/01/lagrottedubarbu-episode-105-reliuretoimeme/feed/ - 9 -
    - - LaGrotteDuBarbu / OpenSource Hardware / Hackers – une ouverture qui ne se limite pas aux machines… - http://www.lagrottedubarbu.com/2013/03/19/lagrottedubarbu-opensource-hardware-hackers-une-ouverture-qui-ne-se-limite-pas-aux-machines%e2%80%a6/ - http://www.lagrottedubarbu.com/2013/03/19/lagrottedubarbu-opensource-hardware-hackers-une-ouverture-qui-ne-se-limite-pas-aux-machines%e2%80%a6/#comments - Tue, 19 Mar 2013 08:51:34 +0000 - babozor - - - http://www.lagrottedubarbu.com/?p=1182 - - Hier j’ai été interpelé par Atg qui me demande “@lagrottedubarbu Le Barbu, il soutient “MariagePourTous” ? C’est juste pour savoir…”
    -Machinalement je lui répond “@13Atg évidemment… si les gens veulent se marier peu importe leur orientation sexuelle (et je vois toujours pas pourquoi on interdis ça)”
    -Et puis cette nuit j’y ai réfléchi (oui je fais ça des fois la nuit) et je penses que ça mérite explication et approfondissement

    -

    Un mec normal, ou presque…
    -Avant de parler de tous ces sujets qui fâchent, il est bon de rappeler en quelques lignes, qui je suis… je suis un homme, blanc, hétérosexuel, séparé, père d’une gamine de 7 ans, de nationalité française, ça paraît bête de dire ça comme ça, mais globalement personne ne m’a vraiment haït pour qui je suis (pour ce que j’ai fais ou mes choix c’est un autre problème, mais la discussion n’est pas là). Si j’avais été une femme, noire, lesbienne, éthiopienne le trip aurait été je penses beaucoup plus violent… rien que pour rentrer sur le territoire français, chercher du boulot, louer un appartement, etc.
    -J’ai toujours été bizarre, à la marge… j’ai toujours été le plus grand de ma classe, le plus balèze, celui qu’on met au fond de la classe pour pas gêner les plus petits (sinon ils voient pas le tableau les pauvres choux) j’aurais dû faire du foot avec les autres, mais je préférais jouer aux jeux de rôles avec mes autres potes zarbis, j’aurais dû devenir chef de projet technique à Paris bien payé, au lieu de ça, je finis à démonter des fours dans ma grotte à la campagne (et franchement je kiffe ça) … mais ce n’est ni mon sexe, ni ma couleur de peau qui me l’a imposé, cela a été un choix ou une envie, rien d’imposé.
    -J’ai passé une bonne dizaine d’année à trouver ma place par rapport au reste de la société aux pratiques et goûts auxquels je n’adhérait pas (le foot ou la télé qui sont de bons exemples pour moi), j’ai admis et assumé ma bizarrerie et j’en suis aujourd’hui heureux.

    -

    L’ouverture une philosophie à appliquer partout
    -Je prône à tout va l’ouverture et le partage… que ce soit sous forme numérique ou physique, j’adore partager, découvrir de nouvelles choses, rencontre les gens, discuter, découvrir des nouveaux outils, matériaux, techniques, etc… dès tout petit j’aimais démonter des trucs pour savoir comment ils étaient fait, ce qui il y avait dedans et ça n’a pas changé.
    -Cette philosophie j’essayes de la pratiquer partout et avec tous, j’essayes de privilégier les rapports humains, ce que 15 ans de développement web m’a appris, c’est que ce sont les gens qui font le succès d’un projet, pas le budget ou la technologie employée… et de prêcher la bonne parole là où je peux.
    -J’avoues “j’essayes” d’être ouvert d’esprit… ça ne marche pas tout le temps, je dois combattre en permanence mon éducation, qu’elle ait été mise en place par la société (école, université, taloche, journaux) par les parents, ou via la pression sociale (les voisins, les amis, les connaissances, etc). Il y a des choses sur lesquelles je suis très réceptif et d’autres trucs beaucoup moins… j’ai encore un temps de latence suivant la façon dont la personne est habillée ou se comporte (par exemple j’aurais du mal au premier abord à aller taper la discut avec un punk à chien, pour toutes les raisons que j’ai cités plus haut).

    -

    La liberté au dessus de tout
    -J’ai choisi de me raser le crâne (bon mon manque de cheveux m’y a un peu aidé), de me laisser pousser la barbe, de balancer toutes mes âneries sur le web, de partager avec vous mes bizarreries, et je ne supportes pas l’idée que quelqu’un puisse ne serais ce qu’envisager de penser à m’interdire de le faire.
    -Du moment que vous n’imposez pas votre choix aux autres, que vous ne les forcez pas d’une façon ou d’une autre à faire quelque chose dont ils n’ont pas envie, pour moi vous avez toute liberté.
    -Peu importe la couleur de votre peau, vos préférences ou déviances sexuelles (et on pourrait revenir sur la définition traditionnelle de déviance qui suivant les époques et pays est a géométrie variable), c’est votre vie et rien ne me donne le droit (même pas celui d’être un homme blanc hétéro français au contraire de l’opinion publique) de vous dire ce que vous devez faire.
    -Ce sujet est particulièrement personnel pour moi, puisque mon frère est gay, marié depuis plus d’une décennie avec son mari, installé à Amsterdam et jusqu’à preuve du contraire heureux.

    -

    Prendre conscience et corriger
    -Ce qui m’a fait me retourner dans mon lit cette nuit, ce n’est pas cette question d’orientation sexuelle, ou d’ouverture d’esprit que je prône, mais toutes les petites choses, ces expressions, qui sont profondément ancrées dans notre culture, dans le langage et que je continue à employer:
    -“un truc de meuf” pour dire que c’est un truc pourri
    -“un truc de mec” pour dire que c’est un truc viril et solide
    -et toutes les autres conneries que je balance régulièrement (je suis sûr que y’a pleins d’autres exemples, mais là c’est les deux seuls qui me viennent à l’esprit).
    -Le but ici n’est pas non plus de m’auto-censuré pour éviter le courroux de tel ou tel groupe (parceque en fait je m’en tapes de ce que les autres pensent) mais c’est plus de prendre conscience de ces paroles et d’essayer de les déminer, de savoir pourquoi on les dit, qu’est ce que ça implique, etc… et de tenter de corriger le tir.

    -

    Ma fille comme “constant reminder”
    -L’autre chose qui m’a empêché de dormir je dois l’avouer c’est ma fille, qui a 7 ans, qui est en ce2… et qui grandit. Elle a un âge merveilleux où tout l’intéresse. Le dessin, les livres, les dessins animés, les animaux, les plantes, le papier, comment sont fabriqués les fringues et j’estime qu’un de mes rôles en tant que Papa Barbu est justement de pouvoir lui montrer et expliquer tout et n’importe quoi (et si je peux pas de lui montrer comment trouver les bonnes informations). Mais elle va grandir, apprendre, et devoir un jour choisir ce qu’elle va devoir devenir et faire… et je trouve cela insupportable l’idée qu’on puisse lui refuser un domaine parcequ’elle est une fille. Si elle veut devenir soudeuse professionnelle, électricienne, ingénieurE aéronautique, danseuse ou chanteuse de comédie musicale (ouais faut pas pousser non plus hein, je veux bien être ouvert mais peut être pas à ce point là) et si c’est sa passion, je VEUX qu’elle puisse le faire, et non parceque les stéréotypes ou les décisionnaires pensent que c’est pas bien. Donc je me dois d’abord de lui montrer qu’aucune activité ou métier n’est réservé à un sexe (je peux faire de la couture et elle peut faire de la soudure à l’arc) et que c’est quelque chose que tous les barbus devraient promouvoir… Apprendre aux filles à changer une roue de voiture, aux garçons à recoudre leur pantalon, etc…

    -

    La conclusion c’est que l’ouverture ne peut être que totale, “no middle ground” comme ils disent, donc ami(e)s femmes, hommes, noirs, blancs, asiatiques, hétéros, homos, bi, trans, français, étrangers, peut importe tous ces critères, pour moi vous êtes tous des gentils barbus avant tout (que vos poils soient visibles ou non).

    -

    Voilà, soyez barbus, soyez ouverts, cultivez votre différence…

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/03/19/lagrottedubarbu-opensource-hardware-hackers-une-ouverture-qui-ne-se-limite-pas-aux-machines%e2%80%a6/feed/ - 15 -
    - - Bricolo et Mulot (EP00 – 01 et 02) par Picaboubx - http://www.lagrottedubarbu.com/2013/03/19/bricolo-et-mulot-ep00-01-et-02-par-picaboubx/ - http://www.lagrottedubarbu.com/2013/03/19/bricolo-et-mulot-ep00-01-et-02-par-picaboubx/#comments - Tue, 19 Mar 2013 06:41:00 +0000 - babozor - - - http://www.lagrottedubarbu.com/?p=1180 - - Découvert hier via la communauté LaGrotteDuBarbu sur Google Plus (comme quoi ça aura servi au moins à ça) les premières vidéos de l’ami Picaboubx appelés “Bricolo et Mulot”

    -

    Bricolo et Mulot – Ep00 Pilote
    -

    -

    Bricolo et Mulot – Ep01 Plieuse de tôles
    -

    -

    Bricolo et Mulot – Ep02 BOouuuu la rumeur
    -

    -

    Alors déjà, (on le voit dans le pilote) le support pour iPhone avec miroir intégré, franchement c’est super malin… ça m’a aussi donné vachement envie de me fabriquer ma propre plieuse de tôle (même si j’en plie rarement je trouve l’outil barbare et cool). Ensuite partager ses expériences, sa grotte, etc… ben moi évidemment j’adore et je ne peux que vous encourager à faire de même.
    -Pas encore eut le temps de regarder l’épisode 02 (c’est prévu pour ma pause de ce midi) mais j’ai passé un bon moment en découvrant l’univers de Picaboubx et je vous invite donc à en faire de même.

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/03/19/bricolo-et-mulot-ep00-01-et-02-par-picaboubx/feed/ - 3 -
    - - partagez vos projets sur la Communauté LaGrotteDuBarbu sur Google Plus - http://www.lagrottedubarbu.com/2013/03/19/partagez-vos-projets-sur-la-communaute-lagrottedubarbu-sur-google-plus/ - http://www.lagrottedubarbu.com/2013/03/19/partagez-vos-projets-sur-la-communaute-lagrottedubarbu-sur-google-plus/#comments - Tue, 19 Mar 2013 06:22:55 +0000 - babozor - - - - - - - - - http://www.lagrottedubarbu.com/?p=1178 - - Depuis hier j’ai créé une communauté sur GooglePlus qui est dispo ici
    -Le principe est simple, tester ce nouveau truc pour voir si c’est plus adapté pour le partage d’infos entre barbus que le forum, wiki et autre trucs.

    -

    Communaute google plus LaGrotteDuBarbu

    -

    J’en profiterais aussi pour poster de temps en temps des photos, des liens rigolos, et pleins de conneries.
    -Bon alors pour y accéder vous devez avoir un compte Google, malheureusement… et en ce moment avec la fermeture prévue de Reader en Juillet j’avoues que je filerais bien un grand coup de pied dans les couilles de Google, mais si ça peut aider la communauté à partager différentes choses, ça vaut le coup de tester ça.

    -

    Donc viendez et balancez photos, liens, vidéos, évènements, cet espace il est pour vous les barbus
    -Comme d’hab si vous avez des commentaires sur la communauté ou Google, hésitez pas à dropper un commentaire

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/03/19/partagez-vos-projets-sur-la-communaute-lagrottedubarbu-sur-google-plus/feed/ - 0 -
    - - miniGrotte – Episode3 – Démontage d’un four traditionnel - http://www.lagrottedubarbu.com/2013/03/12/minigrotte-episode3-demontage-dun-four-traditionnel/ - http://www.lagrottedubarbu.com/2013/03/12/minigrotte-episode3-demontage-dun-four-traditionnel/#comments - Tue, 12 Mar 2013 15:27:37 +0000 - babozor - - - - http://www.lagrottedubarbu.com/?p=1175 - - Une petite miniGrotte pour vous faire patienter jusqu’au prochain épisode de LaGrotteDuBarbu qui arrive la semaine prochaine.

    -

    -

    Déjà un grand merci à mon voisin Claude pour m’avoir refilé ce four plus en état de marche (cuire un poulet en mode pyrolyse apparemment ça marche moyennement bien)
    -Pleins d’éléments à récupérer dans un four traditionnel:
    -- d’abord le corps du four, qui va me servir à me faire un espace à peinture à bombe / pistolet (pour éviter de mettre de la peinture dans toute la grotte)
    -- des résistances électriques (c’est ça qui fait que votre four chauffe)
    -- de l’insolation thermique (bien pratique pour isoler un truc qui crame, comme une résistance électrique)
    -- des moteurs (un lent pour la broche et l’autre super speed pour la ventilation), je vais devoir les tester pour voir si ils marchent…
    -- une sonde de température
    -et quelques autres éléments qui pourront s’avérer intéressant (de la visserie, des ressorts, etc…)

    -

    Des éléments qu’on va réutiliser pour le prochain épisode 106 de LaGrotteDuBarbu
    -comme d’hab remarques et insultes sont toujours les bienvenus dans les commentaires

    -

    [petite remarques: je suis en train de régler de façon définitive et bonne l'orientation de la caméra au dessus de mon crâne chauve… là c'est pas top mais ça sera mieux pour l'épisode 105, promis]

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/03/12/minigrotte-episode3-demontage-dun-four-traditionnel/feed/ - 3 -
    - - LaGrotteDuBarbu Episode 104 – CaisseNawak - http://www.lagrottedubarbu.com/2013/02/25/lagrottedubarbu-episode-104-caissenawak/ - http://www.lagrottedubarbu.com/2013/02/25/lagrottedubarbu-episode-104-caissenawak/#comments - Mon, 25 Feb 2013 18:41:23 +0000 - babozor - - - - - - - - - - - - http://www.lagrottedubarbu.com/?p=1173 - - Cette semaine, premier épisode de 2013 après l’opération #barbitude2013… et on s’attaque justement au rangement en se fabriquant des “CaissesNawak”

    -

    -

    Pour vous aussi vous fabriquer des CaisseNawak vous avez besoin de:
    -- du bois, des trucs récupérés à droite à gauche font très bien l’affaire, si vous voulez faire des caisses plus propres et plus funky, vous pouvez en acheter… d’ailleurs bon plan souvent les magasins de bricolage revendent pas cher des caddies entiers de chutes de bois qui sont invendables. On y trouve souvent pas grand chose d’intéressant mais suffisamment pour se faire pleins de CaisseNawak
    -- une scie… moi j’utilise ma scie à onglet, mais vous pouvez utiliser une scie à main, une scie sauteuse, une scie circulaire du moment que ça coupe.
    -- une clouteuse / agrafeuse pneumatique
    -- une lamelleuse ou biscuiteuse (et c’est @blublugrublu qui a gagné le concours et donc un cadeau pour avoir trouvé le nom de l’outils le premier)
    -- une perceuse et des vis en bois

    -

    Quelques remarques:
    -- la méthode pour couper toujours vos morceaux de bois à la même dimension marche très bien, je l’utilise super souvent… en général quand vous tentez de couper plusieurs morceaux aux même dimensions, entre la mesure, votre trait de crayon et votre trait de scie, en cumulant les demi millimètres, vous pouvez avoir des différences notables entre les pièces. Cette méthode vous permet de toujours couper votre morceau de bois à la taille choisie.
    -- ma méthode préférée pour me faire des CadreNawak reste la clouteuse, c’est rapide, pas compliqué, mais par contre c’est TRES dangereux… donc un outil à utiliser avec respect.
    -- la biscuiteuse (ou lamelleuse) n’est clairement pas une méthode adaptée pour ce genre de travail… je l’ai utilisé par exemple pour créer une table à partir de morceaux de bois divers pour mes parents et ça marche très bien, ici c’est juste pas adapté.
    -- la troisième méthode, je ferais un épisode spécifique, parceque ça peut être mortel mais là c’était pas adapté, c’était long et chiant…

    -

    Quelques photos de mes nouvelles CaisseNawak

    -

    Ep104 1

    -

    Ep104 2

    -

    Ep104 3

    -

    Ep104 4

    -

    Bien sûr toutes les remarques et insultes sont les bienvenues… sur l’épisode, le nouveau setup, le son, etc… lâchez vous les barbus ^^

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/02/25/lagrottedubarbu-episode-104-caissenawak/feed/ - 22 -
    - - BarbuCast – Episode 8 - http://www.lagrottedubarbu.com/2013/02/21/barbucast-episode-8/ - http://www.lagrottedubarbu.com/2013/02/21/barbucast-episode-8/#comments - Thu, 21 Feb 2013 18:35:49 +0000 - babozor - - - - - http://www.lagrottedubarbu.com/?p=1167 - - Un épisode enregistré le 20 janvier et que je peux ENFIN mettre en ligne

    - -

    L’épisode est écoutable dans cette page ou téléchargeable au format mp3 et bien sûr vous pouvez toujours vous abonnez au podcast via le flux RSS pour iTunes

    -

    Les news
    -- le LulzBot
    -- un blouson de wookie (et pas d’ewok chuis nul)
    -- Pirates? Hoolywood bas un record au Box Office avec 10 Milliards de $
    -- Télécharger Adobe CS2 gratos?
    -- Le système métrique le nouveau standard pour les US
    -- Microsoft applaudit le jailbreak de Windows RT
    -- Pascal Obispo et le piratage
    -- Les boutiques culturelles et Hight teck sont elles en danger?
    -- un message pour mark Zuckerberg pour 100$
    -- La caisse claire JackDaniels
    -- Imprimer son chargeur d’AR15
    -- J’voulais pas pirater mais…
    -- Mario Kart dans la vraie vie
    -- Fabriquer aux USA: moins cher et plus vert?
    -- le CSA veut réguler COS vidéos personnelles
    -- “Les nerds sont un des groupes les plus dangereux”
    -- Ecrivez du code pour l’ISS et gagnez 10 000$
    -- le masque à souder HDR
    -- deux nouvelles failles Java
    -- Piratage: une licence globale à plus de 10€/mois
    -- une poussette à 53 miles par heure

    -

    Le Dossier
    -Hackerspace, FabLab, FacLac, qu’est ce que c’est que ces trucs bizarres?…

    -

    Le site web
    -HobbyElectro le site marchand de l’ami furrtek (et son site officiel est là…)
    -http://www.hobbyelectro.fr

    -

    Le matériel
    -le matériel utilisé pour ce podcast
    -- la mixette SoundLab G105AA 4 voix acheté rue victor masset 19€
    -- le micro à 29€
    -- le cable XLR – Jack mono 20€
    -- le pied de micro Hercules 59€
    -- ampli pour casque 4 voix Behringer HA400 – 15€ environ
    -- GarageBand – 4,49€

    -

    Un grand merci pour vos commentaires sur tweeter et iTunes…

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/02/21/barbucast-episode-8/feed/ - 8 - -
    - - Petite visite de la grotte en mode FPS – aménagements finis à 57% #barbitude2013 - http://www.lagrottedubarbu.com/2013/02/20/petite-visite-de-la-grotte-en-mode-fps-amenagements-finis-a-57-barbitude2013/ - http://www.lagrottedubarbu.com/2013/02/20/petite-visite-de-la-grotte-en-mode-fps-amenagements-finis-a-57-barbitude2013/#comments - Wed, 20 Feb 2013 06:31:39 +0000 - babozor - - - - - - - - - - - - - http://www.lagrottedubarbu.com/?p=1165 - - Salut les barbus…
    -J’ai passé les derniers jours à bricoler pas mal de choses: fabrication de ma nouvelle table, revamp du système de lumière, mise en place des emplacements pour les différentes caméras, et j’ai donc fait hier une petite vidéos en mode FPS pour vous présenter tout ça.

    -

    -

    Une bonne occasion aussi de me faire la main sur le nouveau matériel son, voir si j’oublie rien, fait pas de mauvaise manie, etc…

    -

    En gros les grandes nouveautés de la grotte (qui sont pas si grosses que ça mais…)
    -- déplacement de l’établi sur la partie béton de la grotte
    -- construction de la nouvelle table, tout soudé à la main pas moi même
    -- déplacement sous peu du matériel cradoc (grand générateur de poussière) sur la partie béton (et déplacement de ma batterie dans le fond de cette partie)
    -- revamp complet du système de lumière: j’ai soudé un cadre en acier, j’y ai vissé les 4 double néons, que je suis allé vissé à la grosse poutre au dessus de la table… la soudure nickel par contre monter tout seul un cadre + 4 néons pour un ensemble d’une bonne cinquantaine de kilos tout seul à la main, perché sur une échelle à 4m de haut, c’était funky j’avoues… heureusement avec l’aide de mes amis cordes et ducttape j’ai réussi à m’en sortir tout seul comme un grand
    -- le nouveau système de lumière frontal / attache de caméra principale a été lui aussi construit à partir de profilé soudé et vissé à une autre poutre
    -- j’ai encore 2/3 néons à placer, d’abord dans la future partie cradoc et peut être un sous les étgères
    -- encore pas mal de rangements à faire…

    -

    Un dernier petit truc, oui aller acheter du profilé chez un pro c’est vachement moins cher que d’aller dans un magasin de bricolage quelconque… pour vous donner un ordre d’idée pour du profilé carré en acier de 25mm de côté épaisseur 2mm il était vendu environ une vingtaine d’euros pour 2m… et 18€ les 6m chez le spécialiste.
    -Moi j’ai trouvé le mien à Chatellerault et donc maintenant j’ai ma source pour l’acier (ils en ont un hangar plein)

    -

    Encore un ou deux jours de travaux et rangements et je vais pouvoir attaquer le tournage des premiers épisodes de cette année 2013 (je profites des vacances de la demoiselle pour ranger, fabriquer, filmer tranquillou)

    -

    Comme d’hab les commentaires et insultes sont les bienvenus
    -Un grand merci à tous les barbus pour leurs précieux conseils sur la lumière, les angles de caméras et leurs soutien en général… pleins de projets démentiels et surtout un setup beaucoup plus simple et pratique pour vous filer pleins de vidéos giga cool en 2013

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/02/20/petite-visite-de-la-grotte-en-mode-fps-amenagements-finis-a-57-barbitude2013/feed/ - 8 -
    - - retrouvez LaGrotteDuBarbu sur Lofi_00 #9 spéciale POIL - http://www.lagrottedubarbu.com/2013/02/18/retrouvez-lagrottedubarbu-sur-lofi_00-9-speciale-poil/ - http://www.lagrottedubarbu.com/2013/02/18/retrouvez-lagrottedubarbu-sur-lofi_00-9-speciale-poil/#comments - Mon, 18 Feb 2013 21:06:24 +0000 - babozor - - - - - http://www.lagrottedubarbu.com/?p=1163 - - Il y a de cela quelques semaines Peggy m’avait contacté pour m’interviewer par téléphone pour l’émission Lofi_00 (qui si j’ai bien compris passes sur une radio belge, me souviens plus laquelle mais nos amis belges me rectifieront ou pourront apporter des précisions j’en suis sûr) avec comme thématique: Le Poil

    -

    C’est à écouter ici

    -

    -

    -

    #9 Spéciale POIL by Lofi_00 on Mixcloud

    -
    -

    Gros win en tout cas puisque j’ai réussi à faire passer du Lamb Of God et du Meshuggah à la radio
    -Barbitude Power!…

    -

    Comme d’habitude, vos commentaires et insultes sont les bienvenus

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/02/18/retrouvez-lagrottedubarbu-sur-lofi_00-9-speciale-poil/feed/ - 2 -
    - - LaGrotteDuBarbu générique 2013 #barbitude2013 - http://www.lagrottedubarbu.com/2013/02/18/lagrottedubarbu-generique-2013-barbitude2013/ - http://www.lagrottedubarbu.com/2013/02/18/lagrottedubarbu-generique-2013-barbitude2013/#comments - Mon, 18 Feb 2013 14:10:53 +0000 - babozor - - - - - - - - - - - http://www.lagrottedubarbu.com/?p=1161 - - Hello les barbus…
    -Le nouveau générique de LaGrotteDuBarbu 2013 est en ligne et dispo sur TonTube

    -

    -

    Tourné et monté à la barbare ce matin (en même temps que l’intro et l’outro pour l’année 2013 de LaGrotteDuBarbu)
    -Avec comme d’habitude de la musique bourrin qui vient du dernier album de MeshuggahKoloss

    -

    Comme d’hab tous les commentaires et insultes sont les bienvenus

    -

    ]]>
    - http://www.lagrottedubarbu.com/2013/02/18/lagrottedubarbu-generique-2013-barbitude2013/feed/ - 9 -
    -
    -
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/hamakor.xml b/vendor/fguillot/picofeed/tests/fixtures/hamakor.xml deleted file mode 100644 index 29d49f5..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/hamakor.xml +++ /dev/null @@ -1,527 +0,0 @@ - - - - פלאנט תוכנה חופשית בישראל (Planet FOSS-IL) - - - http://planet.hamakor.org.il/atom.xml - 2014-12-22T02:31:42+00:00 - Planet/2.0 +http://www.planetplanet.org - - - סינטרה מודולרית - - http://idkn.wordpress.com/?p=7223 - 2014-12-20T20:00:02+00:00 - <p>ב2012 ניסיתי ליצור פוסטים בנושא של <a href="http://idkn.wordpress.com/2012/11/19/advanced-usage-in-sinatra-first-part/">כיצד ניתן להגיע למצב הדומה לrails עם סינטרה</a>.<br /> -בשל חוסר סבלנות וזמן, זנחתי את הפוסט, אבל לא את הרעיון לבצע אותו.<br /> -למעשה זה היה רעיון טוב מאוד לזנוח אותו בזמנו, היות ואז הייתי עושה דברים לא נכון, וכיום יש לי יותר ידע וניסיון בנושא, וגם איך לעבוד נכון יותר, וכן גם גרסת הרובי מאפשרת לנו לעבוד קל יותר.</p> -<p>באותו הזמן של הרצון לחזור ולכתוב על הנושא, מצאתי את עצמי זקוק בדחיפות למערכת שתסייע לי לדבג API שאני יוצר בפרוייקט שמתבצע באמצעות REST, אז החלטתי לצרף שני צרכים עם דבר אחד.</p> -<p>הרעיון שלי הוא למעשה שרת אשר משמש לקוח בדיקות עבור REST, כך שאפשר להתקין אותו על שרת כלשהו בארגון וכולם יכולים להשתמש בו, במקום תוכנה מקומית על המחשב.</p> -<p>הקוד שלי די ממוקד לרובי 2.1 (אני מקווה כי גם מעלה, 2.2 נראה שיתמוך בקוד שלי), ופחות מזה, יצעק לכם על מספר דברים, אשר בקלות ניתן לפתור, אך ראו הוזהרתם.</p> -<p><a href="https://github.com/ik5/ruby_rest_wui">התחלתי ליצור את הפרוייקט</a>, והוא עובד עם סינטרה, ומחזיק נכון לכתיבת הפוסט שלוש מחלקות שונות בשביל ביצוע routing.<br /> -בנוסף, יצרתי לעצמי מבנה ספריות המתאימות למה שאני רוצה לבצע, לפי לוגיקה, כך שהלוגיקה השייכת לממשק, <a href="https://github.com/ik5/ruby_rest_wui/tree/master/logic">נמצאת כאן</a>, בעוד ש<a href="https://github.com/ik5/ruby_rest_wui/tree/master/config">ההגדרות בכלל נמצאות כאן</a>.</p> -<p><a href="http://rack.github.io/">אנחנו משתמשים בRack</a> בעצם, היות וכמעט וכל הframeworks עבור בניית מערכות web ברובי משתמשים בו, אנו זקוקים לקובץ קבוע בשם <a href="https://github.com/ik5/ruby_rest_wui/blob/master/config.ru">config.ru</a>.</p> -<p>הקובץ הזה, בעצם אחראי על התחלת השרת, וטעינה של המערכת שלנו, כאשר הוא תומך בטעינה של יותר ממערכת אחת בו זמנית, כולל שני framework או יותר, אך נכון לגרסה הנוכחית, אני משתמש בו רק עבור Sinatra.</p> -<p>אני משתמש גם ב <a href="http://bundler.io/">Bundler</a> לניהול תלויות, אשר מאפשר לנו גם לדאוג לצעוק על דברים שלא נטענו, ובעיקר עושה לנו סדר של גרסאות של תלויות, ובכך שדברים לא יתנגשו אחד בשני.</p> -<p>לאחר טעינת התלויות, אני טוען קובץ בודד בשם app.rb שהוא בעצם מה שמנהל את האפליקציה שלי. אך במקום להשתמש ב <a href="http://ruby-doc.org/core-2.1.5/Kernel.html#method-i-require">require</a> &quot;רגיל&quot;, אני משתמש בפונקציה בשם <a href="http://ruby-doc.org/core-2.1.5/Kernel.html#method-i-require_relative">require_relative</a>, אשר מאפשרת לטעון דברים מהמיקום הנוכחי של הקובץ המנסה לטעון אותה.</p> -<p>כל הקסם של ניהול מספר מחלקות, נעוץ אצלי ב <a href="https://github.com/ik5/ruby_rest_wui/blob/master/logic/app.rb">app.rb</a>.<br /> -אני יצרתי אותו שיהיה מאוד פשוט &#8211; טען לי את המחלקות האחרון והכנס אותן לסביבת העבודה של רובי, על ידי שימוש ב <a href="https://github.com/sinatra/sinatra/blob/v1.4.5/lib/sinatra/base.rb#L1406">use</a>.</p> -<p>למערכת שיצרתי ישנם שני מצבים &#8211; מערכת לדיבוג REST, ומערכת &quot;בדיקות&quot; אשר עליה אפשר לבדוק שדברים עובדים, והיא בעיקר על תקן &quot;echo&quot; כלשהו.</p> -<p>את המערכת של יצירת המסכים, ושליחת ה REST, יצרתי בקובץ <a href="https://github.com/ik5/ruby_rest_wui/blob/master/logic/rest.rb">rest.rb</a>, והכל מאוגד שם.<br /> -יש שם משהו שהולך לעבור למקום אחר בקרוב, וזה מספר מתודות לסיוע בפעולות.</p> -<p>הקובץ לביצוע הבדיקות, קיבל את השם <a href="https://github.com/ik5/ruby_rest_wui/blob/master/logic/testing.rb">tests.rb</a>, והוא מי שמנהל את כל הניתובים בנושא.<br /> -הגרסה הבאה, הולכת לגרום לו להיות גנרי יותר, מצד אחד, וגמיש יותר מצד שני, ובכך הכוח של סינטרה יכנס ממש לפעולה, עם ניתובים ממש דינאמיים וחכמים.</p> -<p>Sinatra תומך במשהו אשר קיבל את השם <a href="http://www.sinatrarb.com/intro.html#Helpers">Helpers</a>, וזה מתודות אשר מסייעות לנו לבצע דברים, בצורה שלא נהיה צריכים לחזור עליה כל פעם, וזה זמין גם ל view שלנו, ובגרסה הבאה שאשחרר (נכון לכתיבת הפוסט), המידע יעבור לקובץ בשם helpers.rb ואיתו עובדים קצת שונה ברובי.</p> -<p>כל מחלקה של סינטרה, מחזיקה חלק של <a href="http://www.sinatrarb.com/intro.html#Configuration">configure</a> משל עצמה, שזה טוב ורע באותו הזמן. זה טוב, כי זה מספק גמישות, אבל זה רע, כי לפעמים יש לנו קצת חזרה על עצמנו.</p> -<p>במקרה הזה, הגדרתי כי במצב של ‎:development משתמשים ב <a href="http://www.sinatrarb.com/contrib/reloader.html">Sinatra::Reloader</a>, אשר מגיע עם <a href="http://www.sinatrarb.com/contrib/reloader.html">Sinatra-Contrib</a> &#8211; תת פרוייקט המספק הרבה כלי עזר לדברים שונים.<br /> -הסיבה לשימוש ב Reloader הוא לא לאתחל את השרת בכל שינוי שעושים למחלקה של סינטרה, כאשר Reloader מגלה כי התוכן של הקובץ השתנה, הוא גורם ל rack לטעון אותו שוב, וככה אנחנו לא זקוקים לטעינה מחודשת של השרת עצמו.</p> -<p>המערכת שכתבתי, משתמשת ב template בשם <a href="http://haml.info/">haml</a>, למעשה פעם ראשונה אשר אני משתמש בה מרצון. תוכלו למצוא את ה <a href="https://github.com/ik5/ruby_rest_wui/blob/master/views/layout.haml">layout.haml</a> שהוא המסגרת הרגילה וכן כרגע קובץ בשם <a href="https://github.com/ik5/ruby_rest_wui/blob/master/views/index.haml">index.haml</a> תחת ספריית <a href="https://github.com/ik5/ruby_rest_wui/tree/master/views">view</a>.<br /> -ועבור העיצוב, אני משתמש ב <a href="http://foundation.zurb.com/">Foundation 5</a>, אשר אני אוהב אותה יותר מאשר bootstrap.<br /> -עבור Javascript יש גם את jQuery וגם את <a href="http://idkn.wordpress.com/2014/11/04/knockout-js/">knockout.js</a>, כאשר אני נעזר גם ב <a href="https://lodash.com/">lodash.js</a> למספר דברים פשוטים, והיא מספקת בעצם גרסה שעברה אופטימיזציה ל underscore.</p> -<p>את הקבצים של Foundation, וכל ה Javascript ניתן למצוא תחת <a href="https://github.com/ik5/ruby_rest_wui/tree/master/public">public</a>.</p> -<p>דבר אחרון שנשאר לספר עליו הוא שאני משתמש במשהו אשר נקרא <a href="http://puma.io/">puma</a>.<br /> -מה זה ?<br /> -puma הוא משהו שלוקח את rack וגורם לו להיות שרת לכל דבר ועניין, אשר ניתן לבצע עליו חיבור לשרתי HTTP שונים, כדוגמץ apache או nginx.<br /> -החיבור נעשה על ידי הגדרת proxy בשרתים.</p> -<p>ההגדרות של puma, נמצאות תחת config, וכפי שניתן לראות את <a href="https://github.com/ik5/ruby_rest_wui/blob/master/config/puma.rb">הקובץ הראשי והחשוב</a>, הוא גם יודע לבנות לעצמו מבנה ספריות במידה והן לא קיימות, דבר שהוספתי לקוד עצמו. הוא כרגע מכוון למצב של development, ולכן יש לשנות קצת הגדרות בשביל שזה יעבור למצב production.</p> -<p>אתם מוזמנים לבצע fork, לשחק עם הקוד וגם להחזיק לי תיקונים ותוספות.</p><br />תויק תחת:<a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/%d7%a4%d7%99%d7%aa%d7%95%d7%97/ruby/">Ruby</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/ui/">ui</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/operating-systems/unix/">unix</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98/">אינטרנט</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%99%d7%a4%d7%99%d7%9d-%d7%95%d7%98%d7%a8%d7%99%d7%a7%d7%99%d7%9d/">טיפים וטריקים</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/">טכנולוגיה</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/operating-systems/%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/">לינוקס</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/%d7%a4%d7%99%d7%aa%d7%95%d7%97/">פיתוח</a>, <a href="http://idkn.wordpress.com/category/%d7%a7%d7%95%d7%93-%d7%a4%d7%aa%d7%95%d7%97/">קוד פתוח</a>, <a href="http://idkn.wordpress.com/category/%d7%a8%d7%a9%d7%aa%d7%95%d7%aa/">רשתות</a>, <a href="http://idkn.wordpress.com/category/%d7%a9%d7%a8%d7%aa%d7%99%d7%9d/">שרתים</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/">תוכנה</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/%d7%aa%d7%9b%d7%a0%d7%95%d7%aa/">תכנות</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/">תקשורת</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idkn.wordpress.com/7223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idkn.wordpress.com/7223/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=idkn.wordpress.com&#038;blog=3104636&#038;post=7223&#038;subd=idkn&#038;ref=&#038;feed=1" width="1" height="1" /> - - ik_5 - http://idkn.wordpress.com - - - לראות שונה » קוד פתוח - מבט שונה בעיקר על (פיתוח) תוכנה, עסקים והקוד הפתוח - - http://idkn.wordpress.com/feed/atom/ - 2014-12-22T02:31:34+00:00 - - - - - Kindle Paperwhite &#8220;Unable to Open Item&#8221; - - http://www.guyrutenberg.com/?p=69803 - 2014-12-20T14:40:04+00:00 - <p>Recently, I tried transfering some new ebook to my Kindle Paperwhite (first generation), the books were listed properly. However, when I tried to open them I got<br /> -&#8220;Unable to Open Item&#8221; error, suggesting I re-download the books from Amazon. I tried transferring the files again and again, but it didnt&#8217; help. Some of the books were <code>mobi</code> files while others were &#8220;AZW` (which I got from <a href="http://indiebook.co.il/">אינדיבוק</a>) and all of them opened fine on my computer.</p> -<p>Finally, I followed an advice from a <a href="http://kindledfans.livejournal.com/71655.html?thread=388839#t388839">comment in the KindledFans blog</a>, and converted the files to <code>AZW3</code> (the original comment suggested <code>mobi</code> but <code>AZW3</code> works better with Hebrew). After converting, I moved the files to my Kindle and they opened just fine.</p> - - Guy - http://www.guyrutenberg.com - - - Guy Rutenberg - Keeping track of what I do - - http://www.guyrutenberg.com/feed/atom/ - 2014-12-20T18:48:18+00:00 - - - - - Docker – חלק חמישי - - http://ilsh.info/?p=4571 - 2014-12-19T11:00:31+00:00 - <p><a href="http://ilsh.info/archives/4487">בפרק הקודם</a> הדגמתי הרצת שתי פקודות במיכל (באמצעות הפקודה docker run): האחת איפשרה גישה אינטרקטיבית לעבודה עם המיכל ובשניה הרצנו Daemon שסיפק שירות.</p> -<p>כרגע אתמקד בעבודה עם docker client. עבודה עם docker client מאוד פשוטה (באמצעות דגלים וארגומנטים ניתן לשלוט בהוראות ל- Docker Client):</p> -<div class="codesnip-container"> -<div class="sql codesnip">Usage: &nbsp;<span class="br0">&#91;</span>sudo<span class="br0">&#93;</span> docker <span class="br0">&#91;</span>command<span class="br0">&#93;</span> <span class="br0">&#91;</span>flags<span class="br0">&#93;</span> <span class="br0">&#91;</span>arguments<span class="br0">&#93;</span> <span class="sy0">..</span></div> -</div> -<p><span id="more-4571"></span></p> -<p>הרצת הפקודה docker version תספק לנו אינפורמציה נוספת על גרסת docker בצד השרת ובצד הלקוח (בצד אינפורמציה רבה נוספת).</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker version<br /> -<span class="br0">&#91;</span>sudo<span class="br0">&#93;</span> password <span class="kw1">FOR</span> ilan: <br /> -Client version: 1<span class="sy0">.</span>3<span class="sy0">.</span>2<br /> -Client API version: <span class="nu0">1.15</span><br /> -Go version <span class="br0">&#40;</span>client<span class="br0">&#41;</span>: go1<span class="sy0">.</span>3<span class="sy0">.</span>3<br /> -Git commit <span class="br0">&#40;</span>client<span class="br0">&#41;</span>: 39fa2fa<br /> -OS<span class="sy0">/</span>Arch <span class="br0">&#40;</span>client<span class="br0">&#41;</span>: linux<span class="sy0">/</span>amd64<br /> -Server version: 1<span class="sy0">.</span>3<span class="sy0">.</span>2<br /> -Server API version: <span class="nu0">1.15</span><br /> -Go version <span class="br0">&#40;</span>server<span class="br0">&#41;</span>: go1<span class="sy0">.</span>3<span class="sy0">.</span>3<br /> -Git commit <span class="br0">&#40;</span>server<span class="br0">&#41;</span>: 39fa2fa</div> -</div> -<p><br /> -<br /> -כדי לקבל עזרה על פקודה מסויימת (נניח attach) נוסיף את הדגל help:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker attach <span class="co1">&#8211;help</span></div></div> -<p>Usage: docker attach <span class="br0">&#91;</span>OPTIONS<span class="br0">&#93;</span> CONTAINER</p> -<p>Attach <span class="kw1">TO</span> a running container</p> -<p>&nbsp; <span class="co1">&#8211;no-stdin=false &nbsp; &nbsp;Do not attach STDIN</span><br /> -&nbsp; <span class="co1">&#8211;sig-proxy=true &nbsp; &nbsp;Proxy all received signals to the process (even in non-TTY mode). SIGCHLD, SIGKILL, and SIGSTOP are not proxied.</span></p> - -<p><strong>הערה</strong>: כדי לצפות בכל באפשרויות שהפקודה docker תומכת יש להריץ את הפקודה docker בלבד.<br /> -<br /></p> -<p><strong>הרצת אפליקציית רשת באמצעות docker</strong>:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker run <span class="sy0">-</span>d <span class="sy0">-</span>P training<span class="sy0">/</span>webapp python app<span class="sy0">.</span>py<br /> -Unable <span class="kw1">TO</span> find image <span class="st0">'training/webapp'</span> locally<br /> -Pulling repository training<span class="sy0">/</span>webapp<br /> -31fa814ba25a: Download complete <br /> -511136ea3c5a: Download complete <br /> -f10ebce2c0e1: Download complete <br /> -82cdea7ab5b5: Download complete <br /> -5dbd9cb5a02f: Download complete <br /> -74fe38d11401: Download complete <br /> -64523f641a05: Download complete <br /> -0e2afc9aad6e: Download complete <br /> -e8fc7643ceb1: Download complete <br /> -733b0e3dbcee: Download complete <br /> -a1feb043c441: Download complete <br /> -e12923494f6a: Download complete <br /> -a15f98c46748: Download complete <br /> -<span class="kw1">STATUS</span>: Downloaded newer image <span class="kw1">FOR</span> training<span class="sy0">/</span>webapp:latest<br /> -52d212d850c52cf8553f729ecc0850647d1bb50f274f6ef9316ea19b3d3b7fe5</div> -</div> -<ul> -<li>הדגל d- מוכר: האפליקציה במיכל תורץ ברקע ותספק את השירות</li> -<li>הדגל p- מציין שיש למפות כל פורט נדרש במיכל ולשייך אותו למיכל הנוכחי</li> -<li>מאחר שהמיכל 'training/webapp' לא נמצא במאגר המקומי, הוא הורד מהרשת (Docker Hub). המיכל מכיל סקריפט פייתון פשוט (app.py) שמיישם אפליקצית רשת.</li> -</ul> -<p><br /> -<br /> -נריץ שוב את הפקודה docker ps (הפעם עם הדגל l- בו נבקש לקבל מידע נוסף על זמן הרצת הסקריפט)</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker ps <span class="sy0">-</span>l<br /> -CONTAINER ID &nbsp;IMAGE &nbsp;COMMAND &nbsp;CREATED &nbsp;<span class="kw1">STATUS</span> &nbsp; PORTS NAMES 2d212d850c5 &nbsp;training<span class="sy0">/</span>webapp:latest &nbsp;<span class="st0">&quot;python app.py&quot;</span> &nbsp;<span class="nu0">11</span> minutes ago &nbsp; Up <span class="nu0">11</span> minutes &nbsp;0<span class="sy0">.</span>0<span class="sy0">.</span>0<span class="sy0">.</span>0:<span class="nu0">49153</span><span class="sy0">-&gt;</span><span class="nu0">5000</span><span class="sy0">/</span>tcp &nbsp;clever_lumiere</div> -</div> -<p>הערה: הפורט 49153 בצד הלקוח מופה לפורט 5000 בצד השרת.</p> -<p>נגלוש לכתובת זאת ונקבל את המסך הבא:</p> -<p><a href="http://ilsh.info/wp-content/uploads/2014/12/webapp1.png" rel="lightbox"><img src="http://ilsh.info/wp-content/uploads/2014/12/webapp1-300x115.png" alt="webapp1" width="300" height="115" class="aligncenter size-medium wp-image-4593" /></a></p> -<p><br /> -<br /> -כדי לצפות בלוגים של השרת נריץ את הפקודה הבאה:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker logs <span class="sy0">-</span>f clever_lumiere<br /> -&nbsp;<span class="sy0">*</span> Running <span class="kw1">ON</span> http:<span class="sy0">//</span>0<span class="sy0">.</span>0<span class="sy0">.</span>0<span class="sy0">.</span>0:<span class="nu0">5000</span><span class="sy0">/</span><br /> -172<span class="sy0">.</span>17<span class="sy0">.</span>42<span class="sy0">.</span>1 <span class="sy0">-</span> <span class="sy0">-</span> <span class="br0">&#91;</span>07<span class="sy0">/</span>Dec<span class="sy0">/</span><span class="nu0">2014</span> 03:<span class="nu0">49</span>:<span class="nu0">33</span><span class="br0">&#93;</span> <span class="st0">&quot;GET / HTTP/1.1&quot;</span> <span class="nu0">200</span> <span class="sy0">-</span><br /> -172<span class="sy0">.</span>17<span class="sy0">.</span>42<span class="sy0">.</span>1 <span class="sy0">-</span> <span class="sy0">-</span> <span class="br0">&#91;</span>07<span class="sy0">/</span>Dec<span class="sy0">/</span><span class="nu0">2014</span> 03:<span class="nu0">49</span>:<span class="nu0">34</span><span class="br0">&#93;</span> <span class="st0">&quot;GET /favicon.ico HTTP/1.1&quot;</span> <span class="nu0">404</span> <span class="sy0">-</span><br /> -172<span class="sy0">.</span>17<span class="sy0">.</span>42<span class="sy0">.</span>1 <span class="sy0">-</span> <span class="sy0">-</span> <span class="br0">&#91;</span>07<span class="sy0">/</span>Dec<span class="sy0">/</span><span class="nu0">2014</span> 03:<span class="nu0">50</span>:04<span class="br0">&#93;</span> <span class="st0">&quot;GET / HTTP/1.1&quot;</span> <span class="nu0">200</span> <span class="sy0">-</span><br /> -172<span class="sy0">.</span>17<span class="sy0">.</span>42<span class="sy0">.</span>1 <span class="sy0">-</span> <span class="sy0">-</span> <span class="br0">&#91;</span>07<span class="sy0">/</span>Dec<span class="sy0">/</span><span class="nu0">2014</span> 03:<span class="nu0">50</span>:04<span class="br0">&#93;</span> <span class="st0">&quot;GET /favicon.ico HTTP/1.1&quot;</span> <span class="nu0">404</span> <span class="sy0">-</span><br /> -172<span class="sy0">.</span>17<span class="sy0">.</span>42<span class="sy0">.</span>1 <span class="sy0">-</span> <span class="sy0">-</span> <span class="br0">&#91;</span>07<span class="sy0">/</span>Dec<span class="sy0">/</span><span class="nu0">2014</span> 03:<span class="nu0">50</span>:04<span class="br0">&#93;</span> <span class="st0">&quot;GET /favicon.ico HTTP/1.1&quot;</span> <span class="nu0">404</span> <span class="sy0">-</span></div> -</div> -<p><strong>הערה</strong>: הדגל f- גורם ל- docker להתנהג כמו הפקודה tail -f (כלומר להמשיך להאזין ללוגים ולא לצאת מהמשימה בסיום הרצת הפקודה).</p> -<p><br /> -<br /> -כדי לצפות בתהליכים הרצים בתוך המיכל נריץ את הפקודה top: </p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker top clever_lumiere<br /> -UID &nbsp;PID &nbsp; PPID &nbsp;C &nbsp;STIME &nbsp;TTY &nbsp;TIME &nbsp;CMD<br /> -root &nbsp;<span class="nu0">23777</span> &nbsp;<span class="nu0">1774</span> &nbsp;<span class="nu0">0</span> &nbsp;05:<span class="nu0">33</span> &nbsp;? &nbsp;00:00:00 &nbsp;python app<span class="sy0">.</span>py</div> -</div> -<p>ניתן להבחין שהפקודה python app.py היא הפקודה היחידה שרצה במיכל.</p> -<p><br /> -<br /> -כדי לעצור את עבודת המיכל נריץ את הפקודה הבאה:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker stop clever_lumiere<br /> -clever_lumiere</div> -</div> -<p><br /> -<br /> -אם נרצה להריץ שוב את המיכל יש לנו שתי אפשרויות: לחדש את ריצת המיכל (מאותה הנקודה שרץ בעבר) או לאתחל אותו:</p> -<div class="codesnip-container"> -<div class="sql codesnip">~$ sudo docker start clever_lumiere<br /> -clever_lumiere</div> -</div> -<p><br /> -<br /> -נריץ שוב את הפקודה pocker ps -l וניראה שהמיכל רץ כבר 41 דקות &#8211; כלומר חידשנו את פעולתו.</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker ps <span class="sy0">-</span>l<br /> -CONTAINER ID &nbsp;IMAGE &nbsp;COMMAND &nbsp;CREATED &nbsp;<span class="kw1">STATUS</span> &nbsp;PORTS &nbsp;NAMES<br /> -52d212d850c5 &nbsp;training<span class="sy0">/</span>webapp:latest &nbsp;<span class="st0">&quot;python app.py&quot;</span> &nbsp;<span class="nu0">41</span> minutes ago &nbsp;Up <span class="nu0">50</span> seconds &nbsp;0<span class="sy0">.</span>0<span class="sy0">.</span>0<span class="sy0">.</span>0:<span class="nu0">49154</span><span class="sy0">-&gt;</span><span class="nu0">5000</span><span class="sy0">/</span>tcp &nbsp;clever_lumiere</div> -</div> -<p><br /> -<br /> -לעומת זאת הפקודה restart תגרום להפסקת פעולת המיכל וריצתו מחדש (מאפס):</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker restart clever_lumiere</div> -</div> -<p><br /> -כפי שניתן להיווכח:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker ps <span class="sy0">-</span>l<br /> -CONTAINER ID &nbsp;IMAGE &nbsp;COMMAND &nbsp;CREATED &nbsp;<span class="kw1">STATUS</span> &nbsp;PORTS &nbsp;NAMES<br /> -52d212d850c5 &nbsp;training<span class="sy0">/</span>webapp:latest &nbsp;<span class="st0">&quot;python app.py&quot;</span> &nbsp;<span class="nu0">44</span> minutes ago &nbsp;Up <span class="nu0">2</span> seconds &nbsp;0<span class="sy0">.</span>0<span class="sy0">.</span>0<span class="sy0">.</span>0:<span class="nu0">49155</span><span class="sy0">-&gt;</span><span class="nu0">5000</span><span class="sy0">/</span>tcp &nbsp;clever_lumiere</div> -</div> -<p><br /> -<br /> -כדי להסיר את המיכל יש תחילה לעצור אותו (stop) ורק לאחר מכן נוכל להסיר אותו באמצעות בפקודה rm:</p> -<div class="codesnip-container"> -<div class="sql codesnip">$ sudo docker rm clever_lumiere<br /> -Error response <span class="kw1">FROM</span> daemon: You cannot remove a running container<span class="sy0">.</span> Stop the container before attempting removal <span class="kw1">OR</span> <span class="kw1">USE</span> <span class="sy0">-</span>f<br /> -2014<span class="sy0">/</span>12<span class="sy0">/</span>07 06:21:14 Error: failed <span class="kw1">TO</span> remove one <span class="kw1">OR</span> more containers<br /> -ilan@ilan<span class="sy0">-</span>HP<span class="sy0">-</span>ProBook<span class="sy0">-</span>6450b:~$ sudo docker stop clever_lumiere<br /> -clever_lumiere<br /> -ilan@ilan<span class="sy0">-</span>HP<span class="sy0">-</span>ProBook<span class="sy0">-</span>6450b:~$ sudo docker rm clever_lumiere<br /> -clever_lumiere</div> -</div> -<p><br /> -<br /> -עד לנקודה זאת תמיד השתמשנו במיכלים מוכנים שהורדנו מ- Docker Hub. בפרק הבא נלמד להכין מיכלים בעצמנו</p> -<img src="http://ilsh.info/wp-content/uploads/2007/08/signature.png" alt="My Signature" /><div class="fcbk_share"><div class="fcbk_like"></div></div> - - Ilan Shavit - http://ilsh.info - - - האתר של שביט אילן » לינוקס ותוכנה חופשית - בלוג על לינוקס ותוכנה חופשית - - http://ilsh.info/archives/category/%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/feed - 2014-12-19T11:03:37+00:00 - - - - - Orchestrator 1.2.9 GA released - - http://code.openark.org/blog/?p=7177 - 2014-12-18T16:24:59+00:00 - <p><a href="https://github.com/outbrain/orchestrator">Orchestrator</a> <strong>1.2.9 GA</strong> <a href="https://github.com/outbrain/orchestrator/releases/tag/v1.2.9">has been released</a>. Noteworthy:</p> -<ul> -<li>Added "<strong>ReadOnly</strong>" (true/false) configuration param. You can have orchestrator completely read-only</li> -<li>Added <strong>"AuthenticationMethod": "multi"</strong>: works like BasicAuth (your normal HTTP user+password) only it also accepts the special user called <strong>"readonly"</strong>, which, surprise, can only view and not modify</li> -<li>Centralized/serialized most backend database writes (with hundreds/thousands monitored servers it was possible or probable that high concurrency led to too-many-connections openned on the backend database).</li> -<li>Fixed evil evil bug that would skip some checks if binary logs were not enabled</li> -<li>Better hostname resolve (now also asking MySQL server to resolve hostname; resolving is cached)</li> -<li><strong>Pseudo-GTID</strong> (read <a href="http://code.openark.org/blog/mysql/refactoring-replication-topology-with-pseudo-gtid">here</a>, <a href="http://code.openark.org/blog/mysql/orchestrator-1-2-1-beta-pseudo-gtid-support-reconnect-slaves-even-after-master-failure">here</a>, <a href="http://code.openark.org/blog/mysql/refactoring-replication-topologies-with-pseudo-gtid-a-visual-tour">here</a>) support now considered stable (apart from being tested it has already been put to practice multiple times in production at <strong>Outbrain</strong>, in different planned and unplanned crash scenarios)</li> -</ul> -<p>I continue developing <em>orchestrator</em> as free and open source at my new employer, <a href="http://www.booking.com">Booking.com</a>.</p> -<p>&nbsp;</p> -<p>&nbsp;</p> - - shlomi - http://code.openark.org/blog - - - code.openark.org » MySQL - Blog by Shlomi Noach - - http://code.openark.org/blog/feed/atom - 2014-12-18T16:31:32+00:00 - - - - - Dynamic DNS with CloudFlare - - https://blog.rabin.io/?p=328 - 2014-12-17T23:25:43+00:00 - <div><p>This is a simple hack I found for my self to have a &#8220;Dynamic DNS&#8221; for my home IP.</p> -<p>I&#8217;m using CloudFlare as my name server to manage the zone file for my domain, And one of the nice things about FC is that they have nice <a href="https://www.cloudflare.com/docs/client-api.html" target="_blank">API</a> to manage your account. One of the options this API provides is the capability to <a href="https://www.cloudflare.com/docs/client-api.html#s5.2" target="_blank">update you DNS entries in the Zone</a>.</p> -<p><span id="more-328"></span></p> -<h2>Get your token</h2> -<p>For all the action with the API you&#8217;ll 3 thinks, your privet token (called tkn in the API),  email and the action you like to perform.</p> -<p>You can find your token under your <a href="https://www.cloudflare.com/my-account.html" target="_blank">Account page</a></p> -<h2>DNS Record ID</h2> -<p>Next you&#8217;ll need to find the action you like to perform, in my case is to <a href="https://www.cloudflare.com/docs/client-api.html#s5.2" target="_blank">edit the zone file</a>. which is under the &#8220;DNS Record Management&#8221; -&gt; rec_edit menu, but for using this action you will need the ID number for the recored you like to change, and for that you will need to use &#8220;<a href="https://www.cloudflare.com/docs/client-api.html#s3.3" target="_blank">rec_load_all</a>&#8221; action.</p> -<p>e.g</p><pre class="crayon-plain-tag">curl https://www.cloudflare.com/api_json.html \ - -d 'a=rec_load_all' \ - -d 'tkn=8afbe6dea02407989af4dd4c97bb6e25' \ - -d 'email=sample@example.com' \ - -d 'z=example.com'</pre><p>The output will be in a JSON format, and the part you are looking for will look similar to this,</p><pre class="crayon-plain-tag">... -{ - "rec_id": "18136402", - "rec_tag": "3bcef45cdf5b7638b13cfb89f1b6e716", - "zone_name": "example.com", - "name": "test.example.com", - "display_name": "test", - "type": "A", - "prio": null, - "content": "[server IP]", - "display_content": "[server IP]", - "ttl": "1", - "ttl_ceil": 86400, - "ssl_id": null, - "ssl_status": null, - "ssl_expires_on": null, - "auto_ttl": 1, - "service_mode": "0", - - - "props": { - "proxiable": 1, - "cloud_on": 0, - "cf_open": 1, - "ssl": 0, - "expired_ssl": 0, - "expiring_ssl": 0, - "pending_ssl": 0 - } -...</pre><p></p> -<h2>Edit/Update the DNS record</h2> -<p>Now that you have the ID for the record you like to change, it&#8217;s a matter of a simple curl command,</p><pre class="crayon-plain-tag">curl https://www.cloudflare.com/api_json.html \ - -d 'a=rec_edit' \ - -d 'tkn=8afbe6dea02407989af4dd4c97bb6e25' \ - -d 'id=18136402' \ - -d 'email=sample@example.com' \ - -d 'z=example.com' \ - -d 'type=A' \ - -d 'name=test' \ - -d 'content=1.2.3.4' \ - -d 'service_mode=0' \ - -d 'ttl=1'</pre><p>This command will update the IP to 1.2.3.4 for test.example.com entery.</p> -<h3>Automate the update process</h3> -<p>To automate the process, i have a cron job which runs every 5 minutes, and query my external IP and compare it to the resolved IP form my DNS.</p><pre class="crayon-plain-tag">#!/bin/bash - -CURRENT_IP=$(dig myip.opendns.com @resolver1.opendns.com +short) -RESOLVE_IP=$(dig dyn.example.com +short @jean.ns.cloudflare.com) - -if [[ ${CURRENT_IP} != ${RESOLVE_IP} ]] ; -then - echo "need to update IP from: ${RESOLVE_IP} -&gt; ${CURRENT_IP}" - curl https://www.cloudflare.com/api_json.html -d 'a=rec_edit' \ - -d 'tkn=c7ee1aef8131daf52e103a21a786ecbd99193' \ - -d 'email=X@Y.Z' \ - -d 'id=42' \ - -d 'z=example.com' \ - -d 'type=A' \ - -d 'name=dyn' \ - -d 'content='${CURRENT_IP} \ - -d 'service_mode=0' \ - -d 'ttl=120' \ - - -else - echo "nothing to do" - exit 0; -fi</pre><p>&nbsp;</p> -</div> - - Rabin Yasharzadeh - http://blog.rabin.io - - - Rabin.IO » FOSS - /home/rabin.io/notes - - http://blog.rabin.io/tag/foss/feed - 2014-12-17T23:33:41+00:00 - - - - - Drupal Performance Tip – “I’m too young to die” – know your DB engines - - http://enginx.com/?p=512 - 2014-12-15T07:16:00+00:00 - <div class="seriesmeta">This entry is part 4 of 4 in the series <a href="http://enginx.com/series/drupal-performance-tips/" class="series-60" title="Drupal Performance Tips">Drupal Performance Tips</a></div><p>In the spirit of the computer video game <a href="http://doom.wikia.com/wiki/Doom" target="_blank">Doom </a>and its <a href="http://doom.wikia.com/wiki/Skill_level" target="_blank">skill levels</a>, we&#8217;ll review a few ways you can improve  your <a href="http://drupal.org" target="_blank">Drupal </a>speed performance     and optimize for better results and server response time. These tips that we&#8217;ll cover may be at times specific to Drupal 6 versions, although     you can always learn the best practices from these examples and apply them on your own code base.</p> -<p><img class="alignleft" src="http://adamatomic.com/pics/blog/doom/doom2.jpg" alt="Doom" width="298" height="212" /></p> -<p>Doom skill levels: (easiest first)</p> -<p>1.<strong> I&#8217;m too young to die</strong></p> -<p>2. Hey, not too rough</p> -<p>3. Hurt me plenty</p> -<p>4. Ultra-violence</p> -<p>5. Nightmare!</p> -<p><strong>  This post is rated &#8220;I&#8217;m too young too die&#8221; difficulty level</strong>.</p> -<p>&nbsp;</p> -<p><a href="http://drupal.org" target="_blank">Drupal </a>6 shipped with all tables being <a href="http://drupal.stackexchange.com/questions/20893/drupal-database-innodb-or-myisam" target="_blank">MyISAM</a>, and then Drupal 7 changed all that and shipped with all of its tables using the <a href="http://drupal.stackexchange.com/questions/20893/drupal-database-innodb-or-myisam" target="_blank">InnoDB </a>database engine. Each one with its own <a href="https://www.drupal.org/node/1553474" target="_blank">strengths and weaknesses</a> but it&#8217;s quite clear that InnoDB will probably perform better for your Drupal site (though it has quite a bit of fine tuning configuration to be tweaked on my.cnf).</p> -<p>Some modules, whether on Drupal 6, or those on Drupal 7 that simply upgraded but didn&#8217;t quite review all of their code, might ship with queries like <a href="http://www.percona.com/blog/2006/12/01/count-for-innodb-tables/" target="_blank">SELECT COUNT() which if you have migrated your tables to InnoDB (or simply using Drupal 7) then this will hinder on database performance</a>. That&#8217;s mainly because InnoDB and MyISAM work differently, and where-as this proved as quite a fast responding query being executed on a MyISAM database which uses the main index to store this information, for InnoDB the situation is different and will result in doing a full table scan for the count. Obviously, on an InnoDB configuration running such queries on large tables will result in very poor performance</p> -<p><a href="http://enginx.com/wp-content/uploads/2014/11/drupal_perf-5.png"><img class="aligncenter size-full wp-image-513" src="http://enginx.com/wp-content/uploads/2014/11/drupal_perf-5.png" alt="drupal_perf-5" width="535" height="256" /></a></p> -<p>Note to ponder upon &#8211; what about the Views module which uses similar type of COUNT() queries to create the pagination for its views?</p> - -<!-- Easy AdSense V7.43 --> -<!-- [leadout: 1 urCount: 1 urMax: 0] --> -<div class="ezAdsense adsense adsense-leadout"> -<!-- enginx-blog-wide-post --> -<ins class="adsbygoogle"></ins> -</div> -<!-- Easy AdSense V7.43 --> -<p>The post <a rel="nofollow" href="http://enginx.com/blog/drupal-performance-tip-im-young-die-know-db-engines/">Drupal Performance Tip &#8211; &#8220;I&#8217;m too young to die&#8221; &#8211; know your DB engines</a> appeared first on <a rel="nofollow" href="http://enginx.com">Liran Tal&#039;s Enginx</a>.</p> - - Liran Tal - http://enginx.com - - - Liran Tal's Enginx » opensource - Liran is 31 years old, leader of open source projects and avid community advocate. Entrepreneur at heart, married to his soul-mate Tal. - - http://enginx.com/tag/opensource/feed/ - 2014-12-15T07:17:04+00:00 - - - - - צריבה של ROM עבור Galaxy S1 i9000 מלינוקס - - http://cucomania.mooo.com/?p=352 - 2014-12-15T06:28:39+00:00 - <p>בפוסט קודם הסברתי על אודות מחיצות באנדרויד. &quot;הקהילה&quot; קוראת לאסופה של ה־images של המחיצות הללו בתור ROM. אין הרבה הסברים באינטרנט שמסבירים איך לצרוב מכשירי Galaxy S i9000 בעברית בלינוקס. אז &#8211; מעכשיו יש.</p> -<ol> -<li>תורידו את ה־ROM־ים המקוריים של החברה המתאימה לכם. אין בעייה גדולה לשים רום של חברה אחרת. אם זה לא עובד, אפשר לצרוב את המודם המתאים. באתר של iAndroid יש קישורים להורדה: <a href="http://iandroid.co.il/forum/viewtopic.php?f=42&amp;t=18962">http://iandroid.co.il/forum/viewtopic.php?f=42&amp;t=18962</a></li> -<li>הקבצים שתורידו הם self extracting exe לחלונות. אצלי <a href="https://www.winehq.org/">wine</a> עשה את מלאכתו נאמנה והקבצים שנוצרו וחתימות ה־MD5 הם (קבצי ה־exe הם ממש ישנים, ייתכן ועכשיו יש קבצים עם חתימה שונה, מה שחושב זה קבצי ה־tar שנוצרים מהם): -<pre dir="ltr">82d5a5fffd1fea566aab7fe39522aa2c  I9000.Cellcom.JIJVG.exe -0cb6ef26ce3076c5b3ffde7cb2ad2a1a  I9000.Partner.JHJVG.exe -254ef10b0ddacfeabc44cf547082e856  I9000.Pelephone.JJJVB.exe -eedb05d074db2026b38c8f00ca18f935  Cellcom.JIJVG.tar -33535d9aff3e39d04b0cc504ac389b51  Pelephone.JJJVB.tar -7d593eae36a2d5151e6a84454c739827  Partner.JHJVG.tar</pre> -</li> -<li>עכשיו צריך לפתוח את אחד הקבצים, בתוך ספרייה חדשה (לדוגמה): -<pre dir="ltr"> mkdir open-android-firmware - cd open-android-firmware - tar xf ../Cellcom.JIJVG.tar</pre> -</li> -<li>כדי לצרוב צריך גם קובץ pit שמגדיר את מבנה המחיצות. חיפוש ברשת אחר <a href="http://www.lmgtfy.com/?q=s1_odin_20100512.pit">s1_odin_20100512.pit</a>  תניב קובץ שהתחימה שלו היא 1d927b36d2fa807a22e64fc86b445130</li> -<li>צריך גם קובץ שמגדיר dbdatafs, הוא נקרא גם PDA (אין לי שמץ של מושג מה זה). אותו אפשר להוריד מכאן: <a href="http://forum.xda-developers.com/showthread.php?t=2184403">http://forum.xda-developers.com/showthread.php?t=2184403</a> החתימה של מה שהורדתי היא 868b81b9e28d30c82a00038d29e65d8c</li> -<li>הצריבה תיעשה על ידי תוכנה heimdall. היא זמינה מהמאגרים החופשיים של דביאן. להתקנה: -<pre dir="ltr"> sudo apt install heimdall-flash</pre> -</li> -<li><span><strong>אופציונאלי</strong></span>: אני לא אוהב להשתמש ב־root, ולכן הגדרתי חוק udev שהמכשיר יהיה ניתן לתכנות גם בעזרת המשתמש שלי. צריך רק לדאוג שהמשתמש יהיה תחת הקבוצה plugdev ואז החוק הבא יעבוד (זה גם טוב לעבודה מול adb בתור משתמש רגיל, ולכן מומלץ).השורה אחרונה מתאימה לגלקסי, האחרות לנקסוס וואללה, לא זוכר <img src="http://cucomania.mooo.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> -<pre dir="ltr">elcuco@pinky ~ $ cat  /etc/udev/rules.d/51-android.rules -SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev" -SUBSYSTEM=="usb", ATTR{idVendor}=="681c", MODE="0666", GROUP="plugdev" SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666", GROUP="plugdev"</pre> -</li> -<li>בשלב זה נשים את המכשיר במצב download. תוציאו את המכסה האחורי,ואז תוציאו את הסוללה (פשוט לתת מכה והיא יוצאת). תכניסו מחדש את הסוללה ואז ללחוץ על השילוש הקדוש: מקש הבית, כפתור שמע תחתון וכפתור ההדלקה. <a href="https://www.tinhte.vn/threads/huong-dan-up-room-root-galaxy-win-i8552.2132717/">על הצג יהיה אנדרויד צהוב</a>.<br /> -<span><strong>המלצה:</strong></span> לא לשים את המכסה אחורי. יהיה יותר קל להוציא את הסוללה ולהתחיל מההתחלה, ואני מבטיח שיהיה צורך בזה <img src="http://cucomania.mooo.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></li> -<li>כעת פשוט מפעילים את הפקודה הבאה (אני שמרתי אותה בתסריט בשם flash-all.sh) -<pre dir="ltr">heimdall flash --repartition  \ -  --pit s1_odin_20100512.pit \ - --FACTORYFS factoryfs.rfs  \ -   --CACHE cache.rfs          \ -   --DBDATAFS dbdata.rfs      \ -   --IBL+PBL boot.bin         \ -   --SBL Sbl.bin              \ -   --PARAM param.lfs          \ -   --KERNEL zImage            \ - --MODEM modem.bin</pre> -</li> -<li>זהו. הצריבה לוקחת כמה דקות ואחרי המכשיר עולה כמו חדש.</li> -</ol> -<p>שימו לב לאותיות הגדולות. הטקסט הזה מגדיר את שמות המחיצות כפי שמוגדרות בקובץ pit שבחרתם (תפתחו אותו בעורך טקסט ותבינו). אני מניח שאם נשנה את שמות המחיצות לאותיות קטנות נוכל לשנות את הפקודה שתהיה באותיות קטנות. אם מישהו בודק את זה &#8211; תכתוב את זה בתגובות, זה יהיה נחמד לדעת.</p> -<p><span>המלצות נוספות:</span></p> -<ol> -<li>אל תנסו את זה בחלונות. צריך להשתמש בתוכנה odin שאין לי מושג מה היא עושה מי כתב אותה. זאת הדלפה של מישהו ואני לא סומך על קוד של מישהו אחר במחשב שלי. התוכנות שיש בלינוקס נבדקו והן קוד פתוח, אני סומך עליהן יותר.</li> -<li>תוודאו את החתימות (md5 במיקרה של מה שאני נותן כאן).</li> -<li>כמה שיותר מהר נסו לשים רום אלטרנטיבי. <a href="https://download.cyanogenmod.org/?device=galaxysmtd">cyanogenmod</a> הוא בסדר גמור. אני חושב ש־<a href="http://redmine.replicant.us/projects/replicant/wiki/GalaxySI9000">Replicant</a> יהיה יותר טוב &#8211; אבל לא בדקתי אישית, והוא לא זמין לכל מכשיר.</li> -<li>על מכשיר ישן זה, לא הייתי ממליץ על gapps כלל. אני השתמשתי ב־<a href="https://f-droid.org/">FDroid</a> והשלמתי כמה תוכנות עם <a href="http://m.aptoide.com/installer">Aptoid</a>. האחרון מפוקפק משהו&#8230; אבל זאת פשרה שאני נאלץ לחיות איתה.</li> -<li>כדי להחליף מודם, יש לשים את המכשיר במצב download ולצרוב בעזרת הפקודה הבאה (את המודם צריך לקחת מהרום המתאים): -<pre dir="ltr">heimdall flash --MODEM modem.bin</pre> -</li> -<li>אם דילגת על השלב של udev פשוט לשים sudo לפני כל פקודה.</li> -</ol> -<p><span>שאלות שנותרו לי ללא מענה:</span></p> -<ol> -<li>מה התוכן של dbdata.rfs ומה המטרה של המחיצה הזאת.</li> -<li>מה זה param.lfs.</li> -</ol> -<p>תזכורת: <a title="מחיצות באנדרואיד" href="http://cucomania.mooo.com/he/posts/349/%d7%9e%d7%97%d7%99%d7%a6%d7%95%d7%aa-%d7%91%d7%90%d7%a0%d7%93%d7%a8%d7%95%d7%99%d7%93">מחיצות באנדרויד</a></p> - - Diego Iastrubni - http://cucomania.mooo.com - - - עברית בלינוקס » המקור - משתמש לינוקס ממוצע, בערך - - http://cucomania.mooo.com/he/category/hamakor/feed - 2014-12-15T06:33:44+00:00 - - - - - האקינג לראוטר, או איך להפוך ראוטר לקוד פתוח - - http://idkn.wordpress.com/?p=7265 - 2014-12-14T08:15:49+00:00 - <p><a href="http://idkn.wordpress.com/2009/03/20/%D7%A6%D7%A2%D7%93-%D7%A7%D7%98%D7%9F-%D7%9C%D7%90%D7%95%D7%A4%D7%9F-%D7%9E%D7%95%D7%A7%D7%95-%D7%A6%D7%A2%D7%93-%D7%92%D7%93%D7%95%D7%9C-%D7%9C%D7%A2%D7%99%D7%93%D7%95/">לפני מספר שנים, רכשתי מדורון OpenMoko</a>, ועשיתי עליו מספר פעולות האקינג די נחמדות בשביל לשלוט בטלפון כמו שאני רוצה, או למעשה במודם סלולרי, ושאר הרכיבים, כולל כתיבה של מספר תוכנות ממש קטנות לעצמי, רק כהוכחת יכולת ולא מעבר.</p> -<p>מאז לא היו לי אתגרים באמת מעניינים בנושא ההאקינג של מכשירים, עד שרכשתי את WDR4300 של TP-Link והחלטתי שאני לא אוהב את הרעיון שאין לי שליטה על הראוטר שלי.</p> -<p>גיליתי שאני מוגבל, היות ובמדינת ישראל יש הגבלת תדרים על ידי משרד הביטחון (ולא משרד התקשורת) &#8211; WTF ?!<br /> -אז בגלל זה אני למשל לא הייתי יכול לעדכן את הראוטר לגרסה חדשה יותר של TP-Link, כי אין להם הורדה של גרסה &quot;ישראלית&quot; המגבילה תדרים (מצטער אבל זה הזוי).</p> -<p>אז התקנתי openwrt, ופתאום נזכרתי לטובה במוקו, אשר דרש ממני קצת האקינג בשביל לגרום לו לעבוד.<br /> -מצאתי את עצמי ב7 בערב עד 1 לפנות בוקר מתאים אותו לצרכים שלי.</p> -<p>זה כיף להיכנס למכשיר דרך telnet ולהתחיל להגדיר את הפצת הלינוקס כפי שאתה רוצה. וזה עוד יותר כיף, כשמערכת החבילות זהה למוקו <span class="wp-smiley wp-emoji wp-emoji-smile" title=":)">:)</span> .<br /> -אחרי שאתה מגדיר סיסמה ל root, ה telnet מתבטל, ואתה חייב לעבוד עם ssh, שגם עברה מספר שיפצורים על ידי.</p> -<p>אני קיבלתי את הראוטר עם חומרה v1.7, שזה השיפצור האחרון של tplink (נכון לכתיבת הפוסט הזה) בנושא החומרה, ונראה שהכל עובד מהקופסא, אחרי שאפשרתי מספר דברים <span class="wp-smiley wp-emoji wp-emoji-smile" title=":)">:)</span></p> -<p>זו פעם ראשונה שאני עובד עם אחד מפרוייקטי wrt, ואת האמת, אני נהנה מכל שניה, עם המשחקים האלו, אבל בסופו של דבר, אם הראוטר לא עובד ועושה את העבודה, הוא לא שווה הרבה.</p> -<p>אבל כאן הוא עושה בדיוק מה שאני רוצה, כמו שאני רוצה, בלי שמתערבים לי בו.<br /> -המטרה של הראוטר להחליף את הראוטר שבזק מספקים, היות ואם אגיד שהוא זבל, אתן לזבל שם רע.</p> -<p>הראוטר של בזק מנתק את ה wifi כל כמה זמן לכמה שניות. כלומר את המכשירים המחוברים אליו.<br /> -מדפסת הרשת שלי, משום מה לא עובדת כמו שצריך עם הראוטר הזה, אבל הכי גרוע זה ה <a href="http://en.wikipedia.org/wiki/TR-069">TR-069</a> שיש בראוטר ואני לא יכול לבטל אותו, הוא סוג של back-door  לכל הראוטרים האלו, המאפשרים לבזק לבצע provision מרחוק, אבל מסכנים את הראוטר לחלוטין.</p> -<p>אז אחרי הרבה התלבטויות, הגיע הזמן פשוט לעבוד עם ראוטר טוב ואיכותי במקום, שאני יכול להחליט עליו כל דבר שרק ארצה, וכמובן שזה מה ש open-wrt מאפשר לי.</p> -<p>אני יכול לבצע אפילו התקנת freeswitch עליו, מגרסת הפיתוח (משום מה), שלא לדבר על אסטריסק, או <a href="http://yate.null.ro/pmwiki/">yate</a>.<br /> -התקנה של מרכזיה כדוגמת freeswitch למשל, מאפשרת אם מתבצעת נכון, להעביר את הכוח לסוג של DMZ, שמוגן מתקיפות למינהן, אבל כן מסוגל לבצע שיחות.<br /> -אך אין לי כוונה להתקין מרכזיה כלשהי על הראוטר.<br /> -אם זה לא מספיק, אני יכול גם להתקין את Kamailio מסדרת שלוש וסדרת ארבע, מה שאומר שאני גם יכול לקבל SIP Proxy שאני יכול לתכנת כפי שאני רוצה, אך גם כאן, זה לא יהיה מה שאעשה.</p> -<p>פשוט כיף הכוח שאתה מקבל חזרה לציוד שאתה רוכש לעצמך, ואמנם אינני אוהב שיש ריבוי חוקים, למעט חוקים שנועדו לאזן את החיים, אך לדעתי חוק אשר מחייב כל יצרן חומרה בסגנון ראוטרים, טלפונים וכיוב', לאפשר לבצע מה שרוצים על החומרה עצמה, יעשה רק טוב.</p> -<p>בכל מקרה, אני מאוד נהנה <span class="wp-smiley wp-emoji wp-emoji-smile" title=":)">:)</span></p><br />תויק תחת:<a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/%d7%98%d7%9c%d7%a4%d7%95%d7%a0%d7%99%d7%94/asterisk/">asterisk</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/%d7%98%d7%9c%d7%a4%d7%95%d7%a0%d7%99%d7%94/freeswitch/">freeswitch</a>, <a href="http://idkn.wordpress.com/category/kamailio/">kamailio</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/%d7%98%d7%9c%d7%a4%d7%95%d7%a0%d7%99%d7%94/%d7%a1%d7%9c%d7%95%d7%9c%d7%a8%d7%99/openmoko/">OpenMoko</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/operating-systems/">Operating Systems</a>, <a href="http://idkn.wordpress.com/category/yate/">yate</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%97%d7%95%d7%9e%d7%a8%d7%94/">חומרה</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/">טכנולוגיה</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%a7%d7%a9%d7%95%d7%a8%d7%aa/%d7%98%d7%9c%d7%a4%d7%95%d7%a0%d7%99%d7%94/">טלפוניה</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/operating-systems/%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/">לינוקס</a>, <a href="http://idkn.wordpress.com/category/%d7%a7%d7%95%d7%93-%d7%a4%d7%aa%d7%95%d7%97/">קוד פתוח</a>, <a href="http://idkn.wordpress.com/category/%d7%a8%d7%90%d7%95%d7%98%d7%a8%d7%99%d7%9d/">ראוטרים</a>, <a href="http://idkn.wordpress.com/category/%d7%a8%d7%a9%d7%aa%d7%95%d7%aa/">רשתות</a>, <a href="http://idkn.wordpress.com/category/%d7%98%d7%9b%d7%a0%d7%95%d7%9c%d7%95%d7%92%d7%99%d7%94/%d7%aa%d7%95%d7%9b%d7%a0%d7%94/">תוכנה</a> Tagged: <a href="http://idkn.wordpress.com/tag/freeswitch/">freeswitch</a>, <a href="http://idkn.wordpress.com/tag/hardware-hacking/">hardware hacking</a>, <a href="http://idkn.wordpress.com/tag/kamailio/">kamailio</a>, <a href="http://idkn.wordpress.com/tag/openwrt/">openwrt</a>, <a href="http://idkn.wordpress.com/tag/tr-069/">tr-069</a>, <a href="http://idkn.wordpress.com/tag/wdr4300/">wdr4300</a>, <a href="http://idkn.wordpress.com/tag/wrt/">wrt</a>, <a href="http://idkn.wordpress.com/tag/%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/">לינוקס</a>, <a href="http://idkn.wordpress.com/tag/%d7%a7%d7%95%d7%93-%d7%a4%d7%aa%d7%95%d7%97/">קוד פתוח</a>, <a href="http://idkn.wordpress.com/tag/%d7%a8%d7%a9%d7%aa%d7%95%d7%aa/">רשתות</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idkn.wordpress.com/7265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idkn.wordpress.com/7265/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=idkn.wordpress.com&#038;blog=3104636&#038;post=7265&#038;subd=idkn&#038;ref=&#038;feed=1" width="1" height="1" /> - - ik_5 - http://idkn.wordpress.com - - - לראות שונה » קוד פתוח - מבט שונה בעיקר על (פיתוח) תוכנה, עסקים והקוד הפתוח - - http://idkn.wordpress.com/feed/atom/ - 2014-12-22T02:31:34+00:00 - - - - diff --git a/vendor/fguillot/picofeed/tests/fixtures/radio-france.xml b/vendor/fguillot/picofeed/tests/fixtures/radio-france.xml deleted file mode 100644 index 2f78cec..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/radio-france.xml +++ /dev/null @@ -1,946 +0,0 @@ - - - -Label pop -http://www.francemusique.fr/emission/label-pop -Chaque semaine, une oreille attentive à l'actualité, pour restituer l'éclatante vitalité de la pop moderne, entendue au sens le plus large -fr -Radio France -Tue, 01 Jul 2014 09:36:20 +0200 -Radio France - -http://media.radiofrance-podcast.net/podcast09/RF_OMM_0000006330_ITE.jpg -Label pop -http://www.francemusique.fr/emission/label-pop - -Radio France - -no - - -podcast@radiofrance.com -Radio France - -Label pop -Chaque semaine, une oreille attentive à l'actualité, pour restituer l'éclatante vitalité de la pop moderne, entendue au sens le plus large -1003 - -Label Pop 30.06.2014 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:19 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-30.06.2014-ITEMA_20648497-0.mp3 -Mon, 30 Jun 2014 23:59:00 +0200 -19555Vincent Théval -no -Label,Pop,30.06.2014 -Émission du 30.06.2014 -durée : 01:28:19 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:19 - - -Label Pop 23.06.2014 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:06 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-23.06.2014-ITEMA_20645272-0.mp3 -Mon, 23 Jun 2014 23:59:00 +0200 -19555Vincent Théval -no -Label,Pop,23.06.2014 -Émission du 23.06.2014 -durée : 01:28:06 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:06 - - -Roddy Frame en session -http://www.francemusique.fr/emission/label-pop -durée : 01:27:57 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-16.06.2014-ITEMA_20641965-0.mp3 -Mon, 16 Jun 2014 11:18:00 +0200 -19555Vincent Théval -no -Roddy,Frame,en,session -Roddy Frame en session -durée : 01:27:57 - par : Vincent Théval - réalisé par : Sylvie Migault -01:27:57 - - -Kishi Bashi en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:04 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-09.06.2014-ITEMA_20638856-0.mp3 -Mon, 09 Jun 2014 23:59:00 +0200 -19555Vincent Théval -no -Kishi,Bashi,en,session -Kishi Bashi en session -durée : 01:28:04 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:04 - - -Yann Tiersen en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:01 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-02.06.2014-ITEMA_20635731-0.mp3 -Mon, 02 Jun 2014 23:59:00 +0200 -19555Vincent Théval -no -Yann,Tiersen,en,session -Yann Tiersen en session -durée : 01:28:01 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:01 - - -Josephine Foster et Courtney Barnett en session -http://www.francemusique.fr/emission/label-pop -durée : 01:27:57 - Label pop - par : Vincent Théval - réalisé par : Gilles Blanchard -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-26.05.2014-ITEMA_20632688-0.mp3 -Mon, 26 May 2014 23:59:00 +0200 -19555Vincent Théval -no -Josephine,Foster,et,Courtney,Barnett,en,session -Josephine Foster et Courtney Barnett en session -durée : 01:27:57 - par : Vincent Théval - réalisé par : Gilles Blanchard -01:27:57 - - -Henk Hofstede (The Nits) en interview -http://www.francemusique.fr/emission/label-pop -durée : 01:28:07 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-19.05.2014-ITEMA_20629566-0.mp3 -Mon, 19 May 2014 23:59:00 +0200 -19555Vincent Théval -no -Henk,Hofstede,(The,Nits),en,interview -Henk Hofstede (The Nits) en interview -durée : 01:28:07 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:07 - - -Hospital Ships en session acoustique -http://www.francemusique.fr/emission/label-pop -durée : 01:28:21 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-12.05.2014-ITEMA_20626515-0.mp3 -Mon, 12 May 2014 23:59:00 +0200 -19555Vincent Théval -no -Hospital,Ships,en,session,acoustique -Hospital Ships en session acoustique -durée : 01:28:21 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:21 - - -Etienne Daho en interview -http://www.francemusique.fr/emission/label-pop -durée : 01:28:26 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-05.05.2014-ITEMA_20623484-0.mp3 -Mon, 05 May 2014 23:59:00 +0200 -19555Vincent Théval -no -Etienne,Daho,en,interview -Etienne Daho en interview -durée : 01:28:26 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:26 - - -Pierre-Étienne Minonzio pour "Petit manuel musical du football" (Le Mot et le Reste) -http://www.francemusique.fr/emission/label-pop -durée : 01:28:20 - Label pop - par : Vincent Théval - réalisé par : Gabriel Fadavi -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-28.04.2014-ITEMA_20620459-0.mp3 -Mon, 28 Apr 2014 23:59:00 +0200 -19555Vincent Théval -no -Pierre-Étienne,Minonzio,pour,"Petit,manuel,musical,du,football",(Le,Mot,et,le,Reste) -Pierre-Étienne Minonzio pour "Petit manuel musical du football" (Le Mot et le Reste) -durée : 01:28:20 - par : Vincent Théval - réalisé par : Gabriel Fadavi -01:28:20 - - -Chris Garneau en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:05 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-21.04.2014-ITEMA_20617449-0.mp3 -Mon, 21 Apr 2014 23:59:00 +0200 -19555Vincent Théval -no -Chris,Garneau,en,session -Chris Garneau en session -durée : 01:28:05 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:05 - - -Thierry Dupin et Emile Omar pour la compilation "69 : année mélodique" -http://www.francemusique.fr/emission/label-pop -durée : 01:28:04 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-14.04.2014-ITEMA_20614414-0.mp3 -Mon, 14 Apr 2014 23:59:00 +0200 -19555Vincent Théval -no -Thierry,Dupin,et,Emile,Omar,pour,la,compilation,"69,:,année,mélodique" -Thierry Dupin et Emile Omar pour la compilation "69 : année mélodique" -durée : 01:28:04 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:04 - - -Philippe Dumez, blogueur, auteur, éditeur -http://www.francemusique.fr/emission/label-pop -durée : 01:28:06 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-07.04.2014-ITEMA_20611353-0.mp3 -Mon, 07 Apr 2014 23:59:00 +0200 -19555Vincent Théval -no -Philippe,Dumez,,blogueur,,auteur,,éditeur -Philippe Dumez, blogueur, auteur, éditeur -durée : 01:28:06 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:06 - - -Howe Gelb en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:09 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-31.03.2014-ITEMA_20608312-0.mp3 -Mon, 31 Mar 2014 23:59:00 +0200 -19555Vincent Théval -no -Howe,Gelb,en,session -Howe Gelb en session -durée : 01:28:09 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:09 - - -Maxime Chamoux : (Please) Don't Blame Mexico, work in progress part. 3 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:19 - Label pop - par : Vincent Théval - réalisé par : Patrick Lérisset -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-24.03.2014-ITEMA_20605284-0.mp3 -Mon, 24 Mar 2014 23:59:00 +0100 -19555Vincent Théval -no -Maxime,Chamoux,:,(Please),Don't,Blame,Mexico,,work,in,progress,part.,3 -Maxime Chamoux : (Please) Don't Blame Mexico, work in progress part. 3 -durée : 01:28:19 - par : Vincent Théval - réalisé par : Patrick Lérisset -01:28:19 - - -François and the Atlas Moutains -http://www.francemusique.fr/emission/label-pop -durée : 01:28:22 - Label pop - par : Vincent Théval - François, chant, guitare, clavier Petit Fantome, clavier, choeur Amaury, basse, percussions, choeur Jean, batterie Gerard, clavier, choeur - réalisé par : Patrick Lérisset -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-17.03.2014-ITEMA_20602213-0.mp3 -Mon, 17 Mar 2014 23:59:00 +0100 -19555Vincent Théval -no -François,and,the,Atlas,Moutains -François and the Atlas Moutains -durée : 01:28:22 - par : Vincent Théval - François, chant, guitare, clavier Petit Fantome, clavier, choeur Amaury, basse, percussions, choeur Jean, batterie Gerard, clavier, choeur - réalisé par : Patrick Lérisset -01:28:22 - - -Michka Assayas pour Le Nouveau Dictionnaire du Rock -http://www.francemusique.fr/emission/label-pop -durée : 01:28:19 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-10.03.2014-ITEMA_20599189-0.mp3 -Mon, 10 Mar 2014 23:59:00 +0100 -19555Vincent Théval -no -Michka,Assayas,pour,Le,Nouveau,Dictionnaire,du,Rock -Michka Assayas pour Le Nouveau Dictionnaire du Rock -durée : 01:28:19 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:19 - - -Dominique A pour "Tomber sous le charme" (Le Mot et le Reste) -http://www.francemusique.fr/emission/label-pop -durée : 01:28:11 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-03.03.2014-ITEMA_20596136-0.mp3 -Mon, 03 Mar 2014 23:59:00 +0100 -19555Vincent Théval -no -Dominique,A,pour,"Tomber,sous,le,charme",(Le,Mot,et,le,Reste) -Dominique A pour "Tomber sous le charme" (Le Mot et le Reste) -durée : 01:28:11 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:11 - - -Wild Beasts en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:19 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-24.02.2014-ITEMA_20592949-0.mp3 -Mon, 24 Feb 2014 23:59:00 +0100 -19555Vincent Théval -no -Wild,Beasts,en,session -Wild Beasts en session -durée : 01:28:19 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:19 - - -Jedediah Sklower et Catherine Guesde (Revue Volume!) -http://www.francemusique.fr/emission/label-pop -durée : 01:28:13 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-17.02.2014-ITEMA_20589887-0.mp3 -Mon, 17 Feb 2014 23:59:00 +0100 -19555Vincent Théval -no -Jedediah,Sklower,et,Catherine,Guesde,(Revue,Volume!) -Jedediah Sklower et Catherine Guesde (Revue Volume!) -durée : 01:28:13 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:13 - - -Bill Callahan en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:14 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-10.02.2014-ITEMA_20586797-0.mp3 -Mon, 10 Feb 2014 23:59:00 +0100 -19555Vincent Théval -no -Bill,Callahan,en,session -Bill Callahan en session -durée : 01:28:14 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:14 - - -Hommage à Pete Seeger -http://www.francemusique.fr/emission/label-pop/2013-2014/hommage-pete-seeger-02-03-2014-14-46 -durée : 00:15:20 - Label pop - par : Vincent Théval - - - - -Hommage à Pete Seeger - -Figure essentielle de l’histoire du folk américain, Pete Seeger, disparu le 27 janvier dernier à l’âge de 94 ans, laisse un héritage considérable. Label Pop lui rend hommage. -(En raison de la diffusion de la cérémonie des Victoires de la musique classique, Label Pop débutera exceptionnellement vers 23h30). - - - - - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-03.02.2014-ITEMA_20583717-0.mp3 -Mon, 03 Feb 2014 23:59:00 +0100 -19555Vincent Théval -no -Hommage,à,Pete,Seeger -Hommage à Pete Seeger -durée : 00:15:20 - par : Vincent Théval - - - - -Hommage à Pete Seeger - -Figure essentielle de l’histoire du folk américain, Pete Seeger, disparu le 27 janvier dernier à l’âge de 94 ans, laisse un héritage considérable. Label Pop lui rend hommage. -(En raison de la diffusion de la cérémonie des Victoires de la musique classique, Label Pop débutera exceptionnellement vers 23h30). - - - - - réalisé par : Sylvie Migault -00:15:20 - - -Florent Marchet en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:10 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-27.01.2014-ITEMA_20580596-0.mp3 -Mon, 27 Jan 2014 23:59:00 +0100 -19555Vincent Théval -no -Florent,Marchet,en,session -Florent Marchet en session -durée : 01:28:10 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:10 - - -Damien Jurado en session -http://www.francemusique.fr/emission/label-pop -durée : 01:28:31 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-20.01.2014-ITEMA_20577388-0.mp3 -Mon, 20 Jan 2014 23:59:00 +0100 -19555Vincent Théval -no -Damien,Jurado,en,session -Damien Jurado en session -durée : 01:28:31 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:31 - - -Label Pop 13.01.2014 -http://www.francemusique.fr/emission/label-pop -durée : 01:27:54 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-13.01.2014-ITEMA_20574308-0.mp3 -Mon, 13 Jan 2014 23:59:00 +0100 -19555Vincent Théval -no -Label,Pop,13.01.2014 -Émission du 13.01.2014 -durée : 01:27:54 - par : Vincent Théval - réalisé par : Sylvie Migault -01:27:54 - - -Pacôme Thiellement -http://www.francemusique.fr/emission/label-pop -durée : 01:28:19 - Label pop - par : Vincent Théval - Pacôme Thiellement pour &quot;Pop Yoga&quot; (Éditions Sonatine) - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-06.01.2014-ITEMA_20571200-0.mp3 -Mon, 06 Jan 2014 23:59:00 +0100 -19555Vincent Théval -no -Pacôme,Thiellement -Pacôme Thiellement -durée : 01:28:19 - par : Vincent Théval - Pacôme Thiellement pour &quot;Pop Yoga&quot; (Éditions Sonatine) - réalisé par : Sylvie Migault -01:28:19 - - -Ceci n'est pas un best of (2/2) -http://www.francemusique.fr/emission/label-pop -durée : 01:27:38 - Label pop - par : Vincent Théval - réalisé par : Souad Boukhorssa -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-30.12.2013-ITEMA_20568302-0.mp3 -Mon, 30 Dec 2013 23:59:00 +0100 -19555Vincent Théval -no -Ceci,n'est,pas,un,best,of,(2/2) -Ceci n'est pas un best of (2/2) -durée : 01:27:38 - par : Vincent Théval - réalisé par : Souad Boukhorssa -01:27:38 - - -Ceci n'est pas un best of (1/2) -http://www.francemusique.fr/emission/label-pop -durée : 01:27:55 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-23.12.2013-ITEMA_20565398-0.mp3 -Mon, 23 Dec 2013 23:59:00 +0100 -19555Vincent Théval -no -Ceci,n'est,pas,un,best,of,(1/2) -Ceci n'est pas un best of (1/2) -durée : 01:27:55 - par : Vincent Théval - réalisé par : Sylvie Migault -01:27:55 - - -Vincent Delerm, pour "Les Amants Parallèles" -http://www.francemusique.fr/emission/label-pop -durée : 01:28:08 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-16.12.2013-ITEMA_20562363-0.mp3 -Mon, 16 Dec 2013 23:59:00 +0100 -19555Vincent Théval -no -Vincent,Delerm,,pour,"Les,Amants,Parallèles" -Vincent Delerm, pour "Les Amants Parallèles" -durée : 01:28:08 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:08 - - -Catherine Viale pour le livre "It's not only rock'n'roll" -http://www.francemusique.fr/emission/label-pop -durée : 01:28:13 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-09.12.2013-ITEMA_20559449-0.mp3 -Mon, 09 Dec 2013 23:59:00 +0100 -19555Vincent Théval -no -Catherine,Viale,pour,le,livre,"It's,not,only,rock'n'roll" -Catherine Viale pour le livre "It's not only rock'n'roll" -durée : 01:28:13 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:13 - - -Régine Chassagne (Arcade Fire) -http://www.francemusique.fr/emission/label-pop -durée : 01:28:03 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-02.12.2013-ITEMA_20556447-0.mp3 -Mon, 02 Dec 2013 23:59:00 +0100 -19555Vincent Théval -no -Régine,Chassagne,(Arcade,Fire) -Régine Chassagne (Arcade Fire) -durée : 01:28:03 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:03 - - -Silvain Vanot, pour évoquer Bob Dylan et le coffret "Complete Album Collection" -http://www.francemusique.fr/emission/label-pop -durée : 01:28:17 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-25.11.2013-ITEMA_20553483-0.mp3 -Mon, 25 Nov 2013 23:59:00 +0100 -19555Vincent Théval -no -Silvain,Vanot,,pour,évoquer,Bob,Dylan,et,le,coffret,"Complete,Album,Collection" -Silvain Vanot, pour évoquer Bob Dylan et le coffret "Complete Album Collection" -durée : 01:28:17 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:17 - - -Mathieu Macheret (Cahiers du Cinéma) pour évoquer "Inside Lewyn Davis", des frères Coen. -http://www.francemusique.fr/emission/label-pop -durée : 01:28:13 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-18.11.2013-ITEMA_20550581-0.mp3 -Mon, 18 Nov 2013 23:59:00 +0100 -19555Vincent Théval -no -Mathieu,Macheret,(Cahiers,du,Cinéma),pour,évoquer,"Inside,Lewyn,Davis",,des,frères,Coen. -Mathieu Macheret (Cahiers du Cinéma) pour évoquer "Inside Lewyn Davis", des frères Coen. -durée : 01:28:13 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:13 - - -David Sanson, commissaire associé de l¿exposition Europunk -http://www.francemusique.fr/emission/label-pop -durée : 01:28:38 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-11.11.2013-ITEMA_20547716-0.mp3 -Mon, 11 Nov 2013 23:59:00 +0100 -19555Vincent Théval -no -David,Sanson,,commissaire,associé,de,l¿exposition,Europunk -David Sanson, commissaire associé de l¿exposition Europunk -durée : 01:28:38 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:38 - - -Label Pop : session live avec San Fermin - Invité : J-D. Beauvallet -http://www.francemusique.fr/emission/label-pop/2013-2014/label-pop-session-live-avec-san-fermin-invite-j-d-beauvallet-11-04-2013-00-00 -durée : 01:28:21 - Label pop - par : Vincent Théval - A quelques jours de la sortie européenne de leur incroyable premier album, les américains San Fermin sont en session exceptionnelle pour Label Pop. Jean-Daniel Beauvallet, rédacteur en chef des Inrockuptibles, vient quant à lui évoquer l'autobiographie de Morrissey, récemment parue en Angleterre, ainsi que la 26ème édition du Festival des Inrocks. - réalisé par : Bruno Riou-Maillard -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-04.11.2013-ITEMA_20544844-0.mp3 -Mon, 04 Nov 2013 22:00:00 +0100 -19555Vincent Théval -no -Label,Pop,:,session,live,avec,San,Fermin,-,Invité,:,J-D.,Beauvallet -San Fermin en session -durée : 01:28:21 - par : Vincent Théval - A quelques jours de la sortie européenne de leur incroyable premier album, les américains San Fermin sont en session exceptionnelle pour Label Pop. Jean-Daniel Beauvallet, rédacteur en chef des Inrockuptibles, vient quant à lui évoquer l'autobiographie de Morrissey, récemment parue en Angleterre, ainsi que la 26ème édition du Festival des Inrocks. - réalisé par : Bruno Riou-Maillard -01:28:21 - - -Bertrand Belin -http://www.francemusique.fr/emission/label-pop -durée : 01:28:10 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-28.10.2013-ITEMA_20542016-0.mp3 -Mon, 28 Oct 2013 23:59:00 +0100 -19555Vincent Théval -no -Bertrand,Belin -Bertrand Belin -durée : 01:28:10 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:10 - - -Howard Hugues, chanteur du groupe Coming Soon -http://www.francemusique.fr/emission/label-pop -durée : 01:28:04 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-21.10.2013-ITEMA_20539182-0.mp3 -Mon, 21 Oct 2013 23:59:00 +0200 -19555Vincent Théval -no -Howard,Hugues,,chanteur,du,groupe,Coming,Soon -Howard Hugues, chanteur du groupe Coming Soon -durée : 01:28:04 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:04 - - -Label Pop 14.10.2013 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:04 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-14.10.2013-ITEMA_20536359-0.mp3 -Mon, 14 Oct 2013 23:59:00 +0200 -19555Vincent Théval -no -Label,Pop,14.10.2013 -Émission du 14.10.2013 -durée : 01:28:04 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:04 - - -Session acoustique de "Of Montreal" -http://www.francemusique.fr/emission/label-pop -durée : 01:28:05 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-07.10.2013-ITEMA_20533584-0.mp3 -Mon, 07 Oct 2013 23:59:00 +0200 -19555Vincent Théval -no -Session,acoustique,de,"Of,Montreal" -Session acoustique de "Of Montreal" -durée : 01:28:05 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:05 - - -Label Pop 30.09.2013 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:26 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-30.09.2013-ITEMA_20530703-0.mp3 -Mon, 30 Sep 2013 00:00:00 +0200 -19555Vincent Théval -no -Label,Pop,30.09.2013 -Émission du 30.09.2013 -durée : 01:28:26 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:26 - - -Label Pop 23.09.2013 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:09 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-23.09.2013-ITEMA_20526781-0.mp3 -Mon, 23 Sep 2013 00:00:00 +0200 -19555Vincent Théval -no -Label,Pop,23.09.2013 -Émission du 23.09.2013 -durée : 01:28:09 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:09 - - -Luke Temple, chanteur américain -http://www.francemusique.fr/emission/label-pop -durée : 01:28:11 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-16.09.2013-ITEMA_20523914-0.mp3 -Mon, 16 Sep 2013 00:00:00 +0200 -19555Vincent Théval -no -Luke,Temple,,chanteur,américain -Luke Temple, chanteur américain -durée : 01:28:11 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:11 - - -Label Pop 09.09.2013 -http://www.francemusique.fr/emission/label-pop -durée : 01:27:58 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-09.09.2013-ITEMA_20520636-0.mp3 -Mon, 09 Sep 2013 00:00:00 +0200 -19555Vincent Théval -no -Label,Pop,09.09.2013 -Émission du 09.09.2013 -durée : 01:27:58 - par : Vincent Théval - réalisé par : Sylvie Migault -01:27:58 - - -Label Pop 02.09.2013 -http://www.francemusique.fr/emission/label-pop -durée : 01:28:28 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-02.09.2013-ITEMA_20517162-0.mp3 -Mon, 02 Sep 2013 00:00:00 +0200 -19555Vincent Théval -no -Label,Pop,02.09.2013 -Émission du 02.09.2013 -durée : 01:28:28 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:28 - - -Label Pop 01.07.2013 -http://sites.radiofrance.fr/francemusique/em/label-pop/emission.php?e_id=105000065 -durée : 01:28:07 - Label pop - par : Vincent Théval - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-01.07.2013-ITEMA_20497632-0.mp3 -Mon, 01 Jul 2013 00:00:00 +0200 -19555Vincent Théval -no -Label,Pop,01.07.2013 -Émission du 01.07.2013 -durée : 01:28:07 - par : Vincent Théval - réalisé par : Sylvie Migault -01:28:07 - - -Alexandre Breton, programmateur du City Sounds Festival -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515009331 -durée : 01:28:00 - Label pop - par : Vincent Théval - Invité : Alexandre Breton, programmateur du City Sounds Festival (19 et 20 juillet au 104, à Paris) - -&amp;quot; Le Festival CITY SOUNDS inaugure sa première édition par un véritable événement: accueillir pendant deux jours, les 19 &amp;amp; 20 juillet au Centquatre (Paris, 19ème), le meilleur de la scène rock indépendante de San Francisco, la Cité aux brumes légendaires! Célébration débridée, déluge sonore, riffs sous amphétamines, fuzz &amp;amp; Larsens en pagaille: le rock'n'roll héritier des psychédéliques sixties est à l'honneur de ce festival pionnier et audacieux.&amp;quot; - - Réédition de la semaine : Nick Drake &amp;quot;Bryter Layter&amp;quot; (1970) - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-24.06.2013-ITEMA_20494262-0.mp3 -Mon, 24 Jun 2013 00:00:00 +0200 -19555Vincent Théval -no -Alexandre,Breton,,programmateur,du,City,Sounds,Festival -Émission du 24.06.2013 -durée : 01:28:00 - par : Vincent Théval - Invité : Alexandre Breton, programmateur du City Sounds Festival (19 et 20 juillet au 104, à Paris) - -&amp;quot; Le Festival CITY SOUNDS inaugure sa première édition par un véritable événement: accueillir pendant deux jours, les 19 &amp;amp; 20 juillet au Centquatre (Paris, 19ème), le meilleur de la scène rock indépendante de San Francisco, la Cité aux brumes légendaires! Célébration débridée, déluge sonore, riffs sous amphétamines, fuzz &amp;amp; Larsens en pagaille: le rock'n'roll héritier des psychédéliques sixties est à l'honneur de ce festival pionnier et audacieux.&amp;quot; - - Réédition de la semaine : Nick Drake &amp;quot;Bryter Layter&amp;quot; (1970) - réalisé par : Sylvie Migault -01:28:00 - - -Tunng en session -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515009220 -durée : 01:27:58 - Label pop - par : Vincent Théval - Tunng en session live -- 6 titres acoustiques enregistrés le 2 mai 2013 au studio 105 - -Invité : Nicolas Chapelle (Noise Mag, Les Inrockuptibles) pour évoquer la réédition de la semaine : Scott Walker &amp;quot;Scott – The Collection 1967-1970&amp;quot; - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-17.06.2013-ITEMA_20491729-0.mp3 -Mon, 17 Jun 2013 00:00:00 +0200 -19555Vincent Théval -no -Tunng,en,session -Émission du 17.06.2013 -durée : 01:27:58 - par : Vincent Théval - Tunng en session live -- 6 titres acoustiques enregistrés le 2 mai 2013 au studio 105 - -Invité : Nicolas Chapelle (Noise Mag, Les Inrockuptibles) pour évoquer la réédition de la semaine : Scott Walker &amp;quot;Scott – The Collection 1967-1970&amp;quot; - réalisé par : Sylvie Migault -01:27:58 - - -Keaton Henson en session -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515009117 -durée : 01:28:30 - Label pop - par : Vincent Théval - Keaton Henson en session - -Invité : Maxime Chamoux pour la suite de la série &amp;quot;work in progress&amp;quot; sur l'élaboration du prochain album de (Please) Don't Blame Mexico. - -Réédition de la semaine : Paul McCartney &amp;amp; Wings &amp;quot;Wings Over America&amp;quot; (1976) - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-10.06.2013-ITEMA_20489313-0.mp3 -Mon, 10 Jun 2013 00:00:00 +0200 -19555Vincent Théval -no -Keaton,Henson,en,session -Émission du 10.06.2013 -durée : 01:28:30 - par : Vincent Théval - Keaton Henson en session - -Invité : Maxime Chamoux pour la suite de la série &amp;quot;work in progress&amp;quot; sur l'élaboration du prochain album de (Please) Don't Blame Mexico. - -Réédition de la semaine : Paul McCartney &amp;amp; Wings &amp;quot;Wings Over America&amp;quot; (1976) - réalisé par : Sylvie Migault -01:28:30 - - -Christophe Geudin et Olivier Nuc (revue MUZIQ) -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515008969 -durée : 01:28:04 - Label pop - par : Vincent Théval - Les invités de la semaine - - Christophe Geudin (rédacteur en chef de Muziq) et Olivier Nuc (responsable de la rubrique &amp;quot;Musiques actuelles&amp;quot; au Figaro) viennent présenter le premier numéro du bookzine Muziq. En couverture : Neil Young, en tournée en France en juin et en juillet. - - -Réédition de la semaine : Ane Brun &amp;quot;Songs, 2003-2013&amp;quot; - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-03.06.2013-ITEMA_20486929-0.mp3 -Mon, 03 Jun 2013 00:00:00 +0200 -19555Vincent Théval -no -Christophe,Geudin,et,Olivier,Nuc,(revue,MUZIQ) -Label Pop 03/06/13 -durée : 01:28:04 - par : Vincent Théval - Les invités de la semaine - - Christophe Geudin (rédacteur en chef de Muziq) et Olivier Nuc (responsable de la rubrique &amp;quot;Musiques actuelles&amp;quot; au Figaro) viennent présenter le premier numéro du bookzine Muziq. En couverture : Neil Young, en tournée en France en juin et en juillet. - - -Réédition de la semaine : Ane Brun &amp;quot;Songs, 2003-2013&amp;quot; - réalisé par : Sylvie Migault -01:28:04 - - -House Of Wolves en session -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515008862 -durée : 01:28:18 - Label pop - par : Vincent Théval - Spéciale Los Angeles - -- Entretien avec Eleonore Klar, rédactrice en chef du magazine I Heart - -- Réédition de la semaine : The Byrds &amp;quot;There Is A Season&amp;quot; - -- Session acoustique de House Of Wolves - -&amp;quot;Trois ans après leur enregistrement à Portland (Oregon), les chansons du Californien Rey Villalobos sortent aujourd'hui du cercle des initiés, à la faveur de l'édition européenne du premier album de House Of Wolves. Saisissant coup d'essai, Fold In The Wind décline onze mélodies poignantes et délicates, portées par une voix unique, réminiscence androgyne d'Elliott Smith. L'une des révélations de l'année.&amp;quot; - -Vincent Théval - - - réalisé par : Sylvain Richard -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-27.05.2013-ITEMA_20484547-0.mp3 -Mon, 27 May 2013 00:00:00 +0200 -19555Vincent Théval -no -House,Of,Wolves,en,session -House of Wolves -durée : 01:28:18 - par : Vincent Théval - Spéciale Los Angeles - -- Entretien avec Eleonore Klar, rédactrice en chef du magazine I Heart - -- Réédition de la semaine : The Byrds &amp;quot;There Is A Season&amp;quot; - -- Session acoustique de House Of Wolves - -&amp;quot;Trois ans après leur enregistrement à Portland (Oregon), les chansons du Californien Rey Villalobos sortent aujourd'hui du cercle des initiés, à la faveur de l'édition européenne du premier album de House Of Wolves. Saisissant coup d'essai, Fold In The Wind décline onze mélodies poignantes et délicates, portées par une voix unique, réminiscence androgyne d'Elliott Smith. L'une des révélations de l'année.&amp;quot; - -Vincent Théval - - - réalisé par : Sylvain Richard -01:28:18 - - -Le duo Rhume en interview -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515008638 -durée : 01:28:11 - Label pop - par : Vincent Théval - Le duo RHUME (Maxime Saint-Jean et Laurent Dussarte) mélange hip-hop et arrangements pop. Sur leur premier album, ils déclinent des textes incisifs et drôles sur des rythmiques heurtées, des guitares, des machines et des claviers. Vincent Théval les a rencontrés lors de leur récent passage parisien. - -Et aussi : en exclusivité pour Label Pop ce soir, 2 titres de Pain-Noir, le nouveau projet de François-Régis Croisier (St. Augustine) - -Réédition de la semaine : 'Last Splash' des Breeders - réalisé par : Sylvie Migault -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-20.05.2013-ITEMA_20482177-0.mp3 -Mon, 20 May 2013 00:00:00 +0200 -19555Vincent Théval -no -Le,duo,Rhume,en,interview -Émission du 20.05.2013 -durée : 01:28:11 - par : Vincent Théval - Le duo RHUME (Maxime Saint-Jean et Laurent Dussarte) mélange hip-hop et arrangements pop. Sur leur premier album, ils déclinent des textes incisifs et drôles sur des rythmiques heurtées, des guitares, des machines et des claviers. Vincent Théval les a rencontrés lors de leur récent passage parisien. - -Et aussi : en exclusivité pour Label Pop ce soir, 2 titres de Pain-Noir, le nouveau projet de François-Régis Croisier (St. Augustine) - -Réédition de la semaine : 'Last Splash' des Breeders - réalisé par : Sylvie Migault -01:28:11 - - -Stéphane Deschamps, journaliste aux Inrockuptibles -http://sites.radiofrance.fr/francemusique/em/label-pop/index.php?e_id=105000065&d_id=515008530 -durée : 01:28:20 - Label pop - par : Vincent Théval - Journaliste aux Inrockptibles, Stéphane Deschamps vient évoquer le label argentin ZZK Records, dans le cadre de la journée Leonardo Garcia Alarcon sur France Musique. - réalisé par : Agnès Cathou -podcast@radiofrance.com -Music - -http://media.radiofrance-podcast.net/podcast09/12668-13.05.2013-ITEMA_20479787-0.mp3 -Mon, 13 May 2013 00:00:00 +0200 -19555Vincent Théval -no -Stéphane,Deschamps,,journaliste,aux,Inrockuptibles -Label Pop -durée : 01:28:20 - par : Vincent Théval - Journaliste aux Inrockptibles, Stéphane Deschamps vient évoquer le label argentin ZZK Records, dans le cadre de la journée Leonardo Garcia Alarcon sur France Musique. - réalisé par : Agnès Cathou -01:28:20 - - - diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss20.xml b/vendor/fguillot/picofeed/tests/fixtures/rss20.xml deleted file mode 100644 index 831260c..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/rss20.xml +++ /dev/null @@ -1,300 +0,0 @@ - - - - - WordPress News - - http://wordpress.org/news - WordPress News - Thu, 24 Jan 2013 22:23:03 +0000 - en-US - hourly - 1 - http://wordpress.org/?v=3.6-alpha-23386 - - WordPress 3.5.1 Maintenance and Security Release - http://wordpress.org/news/2013/01/wordpress-3-5-1/ - http://wordpress.org/news/2013/01/wordpress-3-5-1/#comments - Thu, 24 Jan 2013 22:23:03 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2531 - - WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include:

    -
      -
    • Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.
    • -
    • Media: Fix a collection of minor workflow and compatibility issues in the new media manager.
    • -
    • Networks: Suggest proper rewrite rules when creating a new network.
    • -
    • Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.
    • -
    • Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.
    • -
    • Suppress some warnings that could occur when a plugin misused the database or user APIs.
    • -
    -

    Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error “Destination directory for file streaming does not exist or is not writable,” you will need to follow the steps outlined on the Codex.

    -

    WordPress 3.5.1 also addresses the following security issues:

    -
      -
    • A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We’d like to thank security researchers Gennady Kovshenin and Ryan Dewhurst for reviewing our work.
    • -
    • Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by Jon Cave of the WordPress security team.
    • -
    • A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.
    • -
    -

    Download 3.5.1 or visit Dashboard → Updates in your site admin to update now.

    -]]>
    - http://wordpress.org/news/2013/01/wordpress-3-5-1/feed/ - 0 -
    - - 2012: A Look Back - http://wordpress.org/news/2013/01/2012-a-look-back/ - http://wordpress.org/news/2013/01/2012-a-look-back/#comments - Tue, 01 Jan 2013 02:22:20 +0000 - Jen Mylo - - - http://wordpress.org/news/?p=2525 - - Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.

    -

    Software Releases

    -

    We had two major releases of the WordPress web application with versions 3.4 and 3.5, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited “media release” featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms — iOS, Android, Blackberry, Windows Phone, Nokia, and WebOS — and saw several updates there as well.

    -

    Plugin Directory

    -

    A number of improvements were made to the Plugin Directory in 2012. More cosmetic  updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.

    -

    The “Make” Network and Team Reps

    -

    2012 was the year that saw the creation of Make.wordpress.org, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on core, theme review, forum support, documentation, and more. In 2013 we’ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the Updates blog so that the other reps can keep up with what’s going on in other teams.

    -

    WordPress Community Summit

    -

    At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural summit to discuss where we all stand, and to figure out where we go next with WordPress. A “conference of conversations,” this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.

    -

    Meetup.com

    -

    The WordPress Foundation now has a central account with Meetup.com. We’ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won’t have to pay organizer dues and can get more support from the WordPress project.

    -

    Internet Blackout Day

    -

    We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the largest online protest in history.

    -

    WordCamps

    -

    And finally, it wouldn’t be a recap without counting up the WordCamps! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn’t make it to a WordCamp this year, maybe it can be one of your new year resolutions: check the schedule to find one near you!

    -]]>
    - http://wordpress.org/news/2013/01/2012-a-look-back/feed/ - 0 -
    - - WordPress 3.5 “Elvin” - http://wordpress.org/news/2012/12/elvin/ - http://wordpress.org/news/2012/12/elvin/#comments - Tue, 11 Dec 2012 16:54:23 +0000 - Matt Mullenweg - - - http://wordpress.org/news/?p=2517 - - It’s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. We’re calling this one “Elvin” in honor of drummer Elvin Jones, who played with John Coltrane in addition to many others.

    -

    If you’ve been around WordPress a while, the most dramatic new change you’ll notice is a completely re-imagined flow for uploading photos and creating galleries. Media has long been a friction point and we’ve listened hard and given a lot of thought into crafting this new system. 3.5 includes a new default theme, Twenty Twelve, which has a very clean mobile-first responsive design and works fantastic as a base for a CMS site. Finally we’ve spent a lot of time refreshing the styles of the dashboard, updating everything to be Retina-ready with beautiful high resolution graphics, a new color picker, and streamlining a couple of fewer-used sections of the admin.

    -

    Here’s a quick video overview of everything you can share with your friends:

    -
    -

    For Developers

    -

    You can now put your (or anyone’s) WordPress.org username on the plugins page and see your favorite tagged ones, to make it easy to install them again when setting up a new site. There’s a new Tumblr importer. New installs no longer show the links manager. Finally for multisite developers switch_to_blog() is way faster and you can now install MS in a sub-directory. The Underscore and Backbone JavaScript libraries are now available. The Codex has a pretty good summary of the developer features above and beyond this, and you can always grab a warm beverage and explore Trac directly.

    -

    Percussion Section

    -

    Behind every great release is great contributors. 3.5 had more people involved than any release before it:

    -

    Aaron D. Campbell, aaronholbrook, Aaron Jorbin, Adam Harley, akbortoli, alecrust, Alex Concha, Alex King, Alex Mills (Viper007Bond), alexvorn2, ampt, Amy Hendrix (sabreuse), andrea.r, Andrew Nacin, Andrew Ozz, Andrew Ryno, Andrew Spittle, Andy Skelton, apokalyptik, Bainternet, Barry Kooij, bazza, bbrooks, Ben Casey, Ben Huson, Ben Kulbertis, bergius, Bernhard Riedl, betzster, Billy (bananastalktome), bolo1988, bradparbs, bradthomas127, Brady Vercher, Brandon Dove, Brian Layman, Brian Richards, Bronson Quick, Bryan Petty, cannona, Caroline Moore, Caspie, cdog, Charles Frees-Melvin, chellycat, Chelsea Otakan, Chouby, Chris Olbekson, Christopher Finke, Chris Wallace, Cor van Noorloos, Cristi Burcă, Dan, Dan Rivera, Daryl Koopersmith, Dave Martin, deltafactory, Dion Hulse, DjZoNe, dllh, Dominik Schilling, doublesharp, Drew Jaynes (DrewAPicture), Drew Strojny, Eddie Moya, elyobo, Emil Uzelac, Empireoflight, Eric Andrew Lewis, Erick Hitter, Eric Mann, ericwahlforss, Evan Solomon, fadingdust, F J Kaiser, foxinni, Gary Cao, Gary Jones, Gary Pendergast, GeertDD, George Mamadashvili, George Stephanis, GhostToast, gnarf, goldenapples, Gustavo Bordoni, hakre, hanni, hardy101, hebbet, Helen Hou-Sandi, Hugo Baeta, iamfriendly, Ian Stewart, ikailo, Ipstenu (Mika Epstein), itworx, j-idris, Jake Goldman, jakub.tyrcha, James Collins, jammitch, Jane Wells, Japh, JarretC, Jason Lemahieu (MadtownLems), javert03, jbrinley, jcakec, Jeff Bowen, Jeff Sebring, Jeremy Felt, Jeremy Herve, Jerry Bates (JerrySarcastic), Jesper Johansen (Jayjdk), jndetlefsen, Joe Hoyle, joelhardi, Joey Kudish, John Blackbourn (johnbillion), John James Jacoby, John P. Bloch, Jonas Bolinder, Jonathan D. Johnson, Jon Cave, joostdekeijzer, Jorge Bernal, Joseph Scott, Juan, Justin Sainton, Justin Sternberg, Justin Tadlock, Kailey Lampert (trepmal), Kelly Dwan, Keruspe, kitchin, Knut Sparhell, Konstantin Kovshenin, Konstantin Obenland, Kopepasah, Kristopher Lagraff, Kurt Payne, Kyrylo, Lance Willett, Larysa Mykhas, leogermani, lesteph, linuxologos, Luc De Brouwer, Luke Gedeon, Lutz Schroer, mailnew2ster, Manuel Schmalstieg, Maor Chasen, Marco, MarcusPope, Mark Jaquith, Marko Heijnen, MartyThornley, mattdanner, Matthew Richmond, Matt Martz, Matt Thomas, Matt Wiebe, mattyrob, Max Cutler, Mel Choyce, Mert Yazicioglu, Michael Adams (mdawaffe), Michael Fields, Mike Bijon, Mike Glendinning, Mike Hansen, Mike Little, Mike Schinkel, Mike Schroder, Mike Toppa, Milan Dinic, mitcho (Michael Yoshitaka Erlewine), Mohammad Jangda, mohanjith, mpvanwinkle77, Mr Papa, murky, Naoko Takano, Nashwan Doaqan, Niall Kennedy, Nikolay Bachiyski, ntm, nvartolomei, pavelevap, pdclark, Pete Mall, Peter Westwood, Pete Schuster, Philip Arthur Moore, Phill Brown, picklepete, Picklewagon, Prasath Nadarajah, r-a-y, Rami Yushuvaev, Ricardo Moraleida, Robert Chapin (miqrogroove), Robert Wetzlmayr, Ron Rennick, rstern, Ryan Boren, Ryan Imel, Ryan Koehler, Ryan Markel, Ryan McCue, Safirul Alredha, Samir Shah, Sam Margulies, Samuel Wood (Otto), sara cannon, Satish Gandham, scott.gonzalez, Scott Kingsley Clark, Scott Reilly, Scott Taylor, ScreenfeedFr, sergey.s.betke, Sergey Biryukov, Simon Prosser, Simon Wheatley, sirzooro, ssamture, sterlo, sumindmitriy, sushkov, swekitsune, Takashi Irie, Taylor Dewey, Taylor Lovett, Terry Sutton, Thomas Griffin, Thorsten Ott, timbeks, timfs, Tim Moore, TobiasBg, TomasM, Tom Auger, tommcfarlin, Tom Willmot, toscho, Travis Smith, Vasken Hauri, Vinicius Massuchetto, Vitor Carvalho, Waclaw, WaldoJaquith, Wojtek Szkutnik, Xavier Borderie, Yoav Farhi, Yogi T, Zack Tollman, and ZaMoose.

    -]]>
    - http://wordpress.org/news/2012/12/elvin/feed/ - 0 -
    - - WordPress 3.5 Release Candidate 3 - http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/ - http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/#comments - Tue, 04 Dec 2012 08:37:39 +0000 - Andrew Nacin - - - - http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/ - - The third release candidate for WordPress 3.5 is now available. We’ve made a number of changes over the last week since RC2 that we can’t wait to get into your hands. Hope you’re ready to do some testing!

    -
      -
    • Final UI improvements for the new media manager, based on lots of great feedback.
    • -
    • Show more information about uploading errors when they occur.
    • -
    • When inserting an image into a post, don’t forget the alternative text.
    • -
    • Fixes for the new admin button styles.
    • -
    • Improvements for mobile devices, Internet Explorer, and right-to-left languages.
    • -
    • Fix cookies for subdomain installs when multisite is installed in a subdirectory.
    • -
    • Fix ms-files.php rewriting for very old multisite installs.
    • -
    -

    At this point, we only have a few minor issues left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the Alpha/Beta area in the support forums.

    -

    If you’d like to know what to test, visit the About page ( → About in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip).

    -]]>
    - http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/feed/ - 0 -
    - - WordPress 3.5 Release Candidate 2 - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/ - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/#comments - Thu, 29 Nov 2012 19:55:12 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2494 - - The second release candidate for WordPress 3.5 is now available for download and testing.

    -

    We’re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you’d like to know what to test, visit the About page ( → About in the toolbar) and check out the list of features! As usual, this is still development software and we suggest you do not install this on a live site unless you are adventurous.

    -

    Think you’ve found a bug? Please post to the Alpha/Beta area in the support forums.

    -

    Developers, please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our list of known issues here.

    -

    To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip).

    -


    -
    We are getting close
    -
    Should have asked for haiku help
    -
    Please test RC2

    -]]>
    - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/feed/ - 0 -
    - - WordPress 3.5 Release Candidate - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/ - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/#comments - Thu, 22 Nov 2012 13:35:09 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2479 - - The first release candidate for WordPress 3.5 is now available.

    -

    We hope to ship WordPress 3.5 in two weeks. But to do that, we need your help! If you haven’t tested 3.5 yet, there’s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you’re adventurous.)

    -

    Think you’ve found a bug? Please post to the Alpha/Beta area in the support forums. If any known issues come up, you’ll be able to find them here. Developers, please test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release.

    -

    To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip).

    -

    If you’d like to know what to break test, visit the About page ( → About in the toolbar) and check out the list of features! Trust me, you want to try out media.

    -

    Release candidate
    -Three point five in two weeks time
    -Please test all the things

    -]]>
    - http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/feed/ - 0 -
    - - WordPress 3.5 Beta 3 - http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/ - http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/#comments - Tue, 13 Nov 2012 04:26:23 +0000 - Andrew Nacin - - - - - http://wordpress.org/news/?p=2467 - - The third beta release of WordPress 3.5 is now available for download and testing.

    -

    Hey, developers! We expect to WordPress 3.5 to be ready in just a few short weeks. Please, please test your plugins and themes against beta 3. Media management has been rewritten, and we’ve taken great pains to ensure most plugins will work the same as before, but we’re not perfect. We would like to hear about any incompatibilities we’ve caused so we can work with you to address them before release, rather than after. I think you’ll agree it’s much better that way. :-)

    -

    To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more on 3.5, check out the extensive Beta 1 blog post, which covers what’s new in version 3.5 and how you can help. We made more than 300 changes since beta 2At this point, the Add Media dialog is complete, and we’re now just working on fixing up inserting images into the editor. We’ve also updated to jQuery UI 1.9.1, SimplePie 1.3.1, and TinyMCE 3.5.7.

    -

    The usual warnings apply: We can see the light at the end of the tunnel, but this is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version.

    -

    As always, if you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed so far.

    -

    Beta three is out
    -Soon, a release candidate
    -Three point five is near

    -]]>
    - http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/feed/ - 0 -
    - - WordPress 3.5 Beta 2 - http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/ - http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/#comments - Sat, 13 Oct 2012 00:02:08 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2458 - - Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing.

    -

    This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

    -

    For more, check out the extensive Beta 1 blog post, which covers what’s new in version 3.5 and how you can help. What’s new since beta 1? I’m glad you asked:

    -
      -
    • New workflow for working with image galleries, including drag-and-drop reordering and quick caption editing.
    • -
    • New image editing API. (#6821)
    • -
    • New user interface for setting static front pages for the Reading Settings screen. (#16379)
    • -
    -

    As always, if you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed so far. Happy testing!

    -]]>
    - http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/feed/ - 0 -
    - - WordPress 3.5 Beta 1 (and a bonus!) - http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/ - http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/#comments - Thu, 27 Sep 2012 22:37:49 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2443 - - I’m excited to announce the availability of WordPress 3.5 Beta 1.

    -

    This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

    -

    In just three short months, we’ve already made a few hundred changes to improve your WordPress experience. The biggest thing we’ve been working on is overhauling the media experience from the ground up. We’ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It’s still rough around the edges and some pieces are missing — which means now is the perfect time to test it out, report issues, and help shape our headline feature.

    -

    As always, if you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed so far.

    -

    Here’s some more of what’s new:

    -
      -
    • Appearance: A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.
    • -
    • Accessibility: Keyboard navigation and screen reader support have both been improved.
    • -
    • Plugins: You can browse and install plugins you’ve marked as favorites on WordPress.org, directly from your dashboard.
    • -
    • Mobile: It’ll be easier to link up your WordPress install with our mobile apps, as XML-RPC is now enabled by default.
    • -
    • Links: We’ve hidden the Link Manager for new installs. (Don’t worry, there’s a plugin for that.)
    • -
    -

    Developers: We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don’t break anything, we need your help. Please, please test your plugins and themes against 3.5. If something isn’t quite right, please let us know. (Chances are, it wasn’t intentional.) And despite all of the changes to media, we’re still aiming to be backwards compatible with plugins that make changes to the existing media library. It’s a tall task, and it means we need your help.

    -

    Here’s some more things we think developers will enjoy (and should test their plugins and themes against):

    -
      -
    • External libraries updated: TinyMCE  3.5.6 3.5.7. SimplePie 1.3 1.3.1. jQuery 1.8.2 1.8.3. jQuery UI 1.9 (and it’s not even released yet) 1.9.2. We’ve also added Backbone 0.9.2 and Underscore 1.3.3 1.4.2, and you can use protocol-relative links when enqueueing scripts and styles. (#16560)
    • -
    • WP Query: You can now ask to receive posts in the order specified by post__in. (#13729)
    • -
    • XML-RPC: New user management, profile editing, and post revision methods. We’ve also removed AtomPub. (#18428, #21397, #21866)
    • -
    • Multisite: switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (#21434, #19796, #19235)
    • -
    • TinyMCE: We’ve added an experimental API for “views” which you can use to offer previews and interaction of elements from the visual editor. (#21812)
    • -
    • Posts API: Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now “turn on” native custom columns for taxonomies on edit post screens. (#11399, #21309#21240)
    • -
    • Comments API: Search for comments of a particular status, or with a meta query (same as with WP_Query). (#21101, #21003)
    • -
    • oEmbed: We’ve added support for a few oEmbed providers, and we now handle SSL links. (#15734, #21635, #16996, #20102)
    • -
    -

    We’re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 200 contributors to version 3.5 — come join us!

    -

    And as promised, a bonus:

    -

    We’re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, Twenty Twelve, is now available for download from the WordPress themes directory. It’s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!

    -]]>
    - http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/feed/ - 0 -
    - - WordPress 3.4.2 Maintenance and Security Release - http://wordpress.org/news/2012/09/wordpress-3-4-2/ - http://wordpress.org/news/2012/09/wordpress-3-4-2/#comments - Thu, 06 Sep 2012 20:07:21 +0000 - Andrew Nacin - - - - http://wordpress.org/news/?p=2426 - - WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions.

    -

    After nearly 15 million downloads since 3.4 was released not three months ago, we’ve identified and fixed a number of nagging bugs, including:

    -
      -
    • Fix some issues with older browsers in the administration area.
    • -
    • Fix an issue where a theme may not preview correctly, or its screenshot may not be displayed.
    • -
    • Improve plugin compatibility with the visual editor.
    • -
    • Address pagination problems with some category permalink structures.
    • -
    • Avoid errors with both oEmbed providers and trackbacks.
    • -
    • Prevent improperly sized header images from being uploaded.
    • -
    -

    Version 3.4.2 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential privilege escalation and a bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.

    -

    Download 3.4.2 now or visit Dashboard → Updates in your site admin to update now.

    -

    Fixes for some bugs
    -Back to work on 3.5
    -It’s time to update

    -]]>
    - http://wordpress.org/news/2012/09/wordpress-3-4-2/feed/ - 0 -
    -
    -
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10.xml new file mode 100644 index 0000000..b81a3ec --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10.xml @@ -0,0 +1,69 @@ + + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://en.wikipedia.org/wiki/Category:Russian-language_literature + 2015-06-05T00:05:00+03:00 + ru + + + Википедия — свободная энциклопедия + https://ru.wikipedia.org + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + + + 2015-06-05T00:02:00+03:00 + Лев Николаевич Толсто́й + bg + + Война и +мир + + + https://en.wikipedia.org/wiki/War_and_Peace + + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + + https://en.wikipedia.org/wiki/Crime_and_Punishment + + +История создания + +

    +Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

    ]]>
    +
    +
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_element_preference.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_element_preference.xml new file mode 100644 index 0000000..a5abc56 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_element_preference.xml @@ -0,0 +1,51 @@ + + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://en.wikipedia.org/wiki/Category:Russian-language_literature + + + https://www.github.com/picofeed/link/pre + + https://en.wikipedia.org/wiki/War_and_Peace + https://www.github.com/picofeed/link/post + + + description pre + +История создания + +

    +Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

    ]]>
    + description post +
    +
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_channel.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_channel.xml new file mode 100644 index 0000000..e67ca54 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_channel.xml @@ -0,0 +1,13 @@ + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_feed.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_feed.xml new file mode 100644 index 0000000..5527d38 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_feed.xml @@ -0,0 +1,10 @@ + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_item.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_item.xml new file mode 100644 index 0000000..d5c7573 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_empty_item.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_extra.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_extra.xml new file mode 100644 index 0000000..ab0cd0b --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_extra.xml @@ -0,0 +1,25 @@ + + + + + /wiki/Category:Russian-language_literature + + + + /wiki/War_and_Peace + + + + + /wiki/Crime_and_Punishment + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_feed_values.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_feed_values.xml new file mode 100644 index 0000000..0cb2b67 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_feed_values.xml @@ -0,0 +1,18 @@ + + + + + + + + https://en.wikipedia.org/wiki/Category:Russian-language_literature + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_item_values.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_item_values.xml new file mode 100644 index 0000000..bc71bb1 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_fallback_on_invalid_item_values.xml @@ -0,0 +1,39 @@ + + + + + https://en.wikipedia.org/wiki/Category:Russian-language_literature + + + b67e7afb-80be-4b23-8c42-67b970e2baa7 + + https://en.wikipedia.org/wiki/War_and_Peace + + + + + + Осенью 1865 года, потеряв все свои +деньги в казино, не в состоянии оплатить долги кредиторам, +и стараясь помочь семье своего брата Михаила, который умер в +июле 1864 года, Достоевский планирует создание романа с +центральным образом семьи Мармеладовых под названием «Пьяненькая». + + + + https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel) + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_no_default_namespace.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_no_default_namespace.xml new file mode 100644 index 0000000..0ad719d --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_no_default_namespace.xml @@ -0,0 +1,69 @@ + + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://en.wikipedia.org/wiki/Category:Russian-language_literature + 2015-06-05T00:05:00+03:00 + ru + + + Википедия — свободная энциклопедия + https://ru.wikipedia.org + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + + + 2015-06-05T00:02:00+03:00 + Лев Николаевич Толсто́й + + Война и +мир + + + https://en.wikipedia.org/wiki/War_and_Peace + + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + +История создания + +

    +Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

    ]]>
    +
    + + + https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel) + + +
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_10_prefixed.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_10_prefixed.xml new file mode 100644 index 0000000..0cb527f --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_10_prefixed.xml @@ -0,0 +1,42 @@ + + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + https://en.wikipedia.org/wiki/Category:Russian-language_literature + 2015-06-05T00:05:00+03:00 + ru + + + Википедия — свободная энциклопедия + https://ru.wikipedia.org + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + + + + Война и +мир + + + https://en.wikipedia.org/wiki/War_and_Peace + + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20.xml new file mode 100644 index 0000000..2e84105 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20.xml @@ -0,0 +1,81 @@ + + + + + + литература на русском языке, +либо написанная русскими авторами + + Зародилась во второй половине X века, однако до XIX века, +когда начался её «золотой век», была практически неизвестна +в мире. + + https://ru.wikipedia.org/static/images/project-logos/ruwiki.png + Википедия — свободная энциклопедия + https://ru.wikipedia.org + + https://en.wikipedia.org/wiki/Category:Russian-language_literature + Fri, 05 Jun 2015 00:05:00 +0300 + ru + Вики педии - свободной энциклопедии + + + https://en.wikipedia.org/wiki/War_and_Peace + + bg + + Война и +мир + + Fri, 05 Jun 2015 00:02:00 +0300 + Лев Николаевич Толсто́й + В наброске предисловия к «Войне и миру» Толстой +писал, что в 1856 г. начал писать повесть, «герой +которой должен был быть декабрист, возвращающийся +с семейством в Россию. + + + + https://guid.wikipedia.org/wiki/Crime_and_Punishment + + +История создания + +

    +Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

    ]]>
    + + https://upload.wikimedia.org/wikipedia/commons/7/7b/Crime_and_Punishment-1.png +
    + + + https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel) + + + + https://guid.wikipedia.org/wiki/A_Hero_of_Our_Time + +
    +
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_dc.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_dc.xml new file mode 100644 index 0000000..0704def --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_dc.xml @@ -0,0 +1,18 @@ + + + + + Вики педии - свободной энциклопедии + + Лев Николаевич Толсто́й + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_element_preference.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_element_preference.xml new file mode 100644 index 0000000..c83c843 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_element_preference.xml @@ -0,0 +1,69 @@ + + + + + author post + Вики педии - свободной энциклопедии + author pre + Fri, 05 Jun 2015 00:05:00 +0300 + Fri, 05 Jun 2015 01:05:00 +0300 + + https://www.github.com/picofeed/guid/pre + + https://www.github.com/picofeed/link/pre + + https://en.wikipedia.org/wiki/War_and_Peace + + https://www.github.com/picofeed/link/post + + https://www.github.com/picofeed/guid/post + author post + Лев Николаевич Толсто́й + author pre + + + https://www.github.com/picofeed/guid/pre + + + https://en.wikipedia.org/wiki/Crime_and_Punishment + + + https://www.github.com/picofeed/guid/post + description pre + +История создания + +

    +Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +

    ]]>
    + description post +
    + + https://www.github.com/picofeed/guid/pre + + https://www.github.com/picofeed/guid/post + +
    +
    diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_channel.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_channel.xml new file mode 100644 index 0000000..67d6563 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_channel.xml @@ -0,0 +1,12 @@ + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_feed.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_feed.xml new file mode 100644 index 0000000..967f01b --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_feed.xml @@ -0,0 +1,9 @@ + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_item.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_item.xml new file mode 100644 index 0000000..a1a384b --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_empty_item.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_extra.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_extra.xml new file mode 100644 index 0000000..5aff951 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_extra.xml @@ -0,0 +1,30 @@ + + + + + Fri, 05 Jun 2015 00:05:00 +0300 + /wiki/Category:Russian-language_literature + + + /wiki/War_and_Peace + + + + + + + + /wiki/Doctor_Zhivago_(novel) + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_feed_values.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_feed_values.xml new file mode 100644 index 0000000..c141141 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_feed_values.xml @@ -0,0 +1,17 @@ + + + + + + + + https://en.wikipedia.org/wiki/Category:Russian-language_literature + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_item_values.xml b/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_item_values.xml new file mode 100644 index 0000000..d63191d --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/rss_20_fallback_on_invalid_item_values.xml @@ -0,0 +1,34 @@ + + + + + + b67e7afb-80be-4b23-8c42-67b970e2baa7 + + + + + Осенью 1865 года, потеряв все свои +деньги в казино, не в состоянии оплатить долги кредиторам, +и стараясь помочь семье своего брата Михаила, который умер в +июле 1864 года, Достоевский планирует создание романа с +центральным образом семьи Мармеладовых под названием «Пьяненькая». + + + + https://en.wikipedia.org/wiki/Doctor_Zhivago_(novel) + + + + + + + diff --git a/vendor/fguillot/picofeed/tests/fixtures/womensweardaily.xml b/vendor/fguillot/picofeed/tests/fixtures/womensweardaily.xml deleted file mode 100644 index 70208c2..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/womensweardaily.xml +++ /dev/null @@ -1,63 +0,0 @@ - -The WWD Official Tumblr Page! - -Women’s Wear Daily (WWD) is the daily media of record for senior executives in the global women’s and men’s fashion, retail and beauty communities and the consumer media that cover the market. - -WWD On: - -Facebook -www.facebook.com/womensweardaily - -Twitter -www.twitter.com/womensweardaily -www.twitter.com/wwdmarketplace - -YouTube -www.youtube.com/wwdhttp://womensweardaily.tumblr.com/Tumblr (3.0; @womensweardaily)http://womensweardaily.tumblr.com/Sue Wong RTW Spring 2015 -The designer’s spring collection...<img src="http://31.media.tumblr.com/cd505251ce02d3de1c603f560e7d9b69/tumblr_ndywlqVRKT1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/runway/spring-ready-to-wear-2015/review/sue-wong>?src=tumblr">Sue Wong RTW Spring 2015</a></h1> -<p>The designer’s spring collection bore the influence of her infatuation with Art Deco and old Hollywood. <strong><a href="http://www.wwd.com/runway/spring-ready-to-wear-2015/review/sue-wong>?src=tumblr">For More</a><br/><a href="http://www.wwd.com/fashion-news/fashion-features/thats-totally-fine-by-rose-la-grua-rtw-spring-2015-7980675" data-ls-seen="1"><br/></a></strong></p>http://womensweardaily.tumblr.com/post/100993521734http://womensweardaily.tumblr.com/post/100993521734Sun, 26 Oct 2014 10:00:16 -0400Sue WongRTW Spring 2015FashionLAFWTAW: Shanghai Fashion Week -Photo by Dave Tacon<img src="http://38.media.tumblr.com/68973faac180b432aba4f2686c3dc4ff/tumblr_ndyffbM8HW1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-shanghai-fashion-week-7999283/slideshow?src=tumblr">TAW: Shanghai Fashion Week</a></h1> -<h4 id="slide-credit"><em>Photo by Dave Tacon</em></h4>http://womensweardaily.tumblr.com/post/100990373888http://womensweardaily.tumblr.com/post/100990373888Sun, 26 Oct 2014 09:00:13 -0400Shanghai Fashion WeekFashionStreet StyleThey Are WearingFrances Caine RTW Spring 2015 -Husband-and-wife hipster duo...<img src="http://31.media.tumblr.com/028449c66357f16100397819e9255c87/tumblr_ndyn1kEO5Q1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/frances-caine-rtw-spring-2015-7999202?src=tumblr">Frances Caine RTW Spring 2015</a></h1> -<p>Husband-and-wife hipster duo Travis Caine and Katherine Kin are not just design partners, they also have a band called Von Haze.  <a href="http://www.wwd.com/fashion-news/fashion-features/frances-caine-rtw-spring-2015-7999202?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100980752157http://womensweardaily.tumblr.com/post/100980752157Sun, 26 Oct 2014 05:00:09 -0400Frances CaineRTW Spring 2015FashionLAFWThey Are Wearing: Frieze London -Photo by Marcus Dawes<img src="http://33.media.tumblr.com/15580b6192ae0158914c25b9d7d796fd/tumblr_ndwvz5Nea41qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-frieze-london-7994824/slideshow?src=tumblr">They Are Wearing: Frieze London</a></h1> -<h4 id="slide-credit">Photo by Marcus Dawes</h4>http://womensweardaily.tumblr.com/post/100975969488http://womensweardaily.tumblr.com/post/100975969488Sun, 26 Oct 2014 03:00:08 -0400They Are WearingFrieze LondonFashionStreet StyleMargot Robbie at FGI’s Night of Stars<img src="http://33.media.tumblr.com/b7bf4c8890e61772235c7f9ab226f931/tumblr_ndyg9bBFTL1qa7p1yo1_500.jpg"/><br/><br/><h3 id="slide-caption"><a href="http://www.wwd.com/eye/parties/fashion-group-international-night-of-stars-honors-dvf-peter-copping-8000144/slideshow?src=tumblr">Margot Robbie at FGI’s Night of Stars</a></h3>http://womensweardaily.tumblr.com/post/100973079335http://womensweardaily.tumblr.com/post/100973079335Sun, 26 Oct 2014 02:00:08 -0400Margot RobbieFGI's Night of StarsFashioncelebsCM2K by Cheryl Koo RTW Spring 2015 -In yet another...<img src="http://33.media.tumblr.com/23fc081fdb1d29020833e6f5a8795d15/tumblr_ndymlzJbE21qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short"><a href="http://www.wwd.com/fashion-news/fashion-features/cm2k-by-cheryl-koo-rtw-spring-2015-7999205?src=tumblr">CM2K by Cheryl Koo RTW Spring 2015</a></h1> -<p>In yet another performance-art presentation, a perennial trend on the L.A. Fashion Week circuit, Cheryl Koo used professional dancers as models. <a href="http://www.wwd.com/fashion-news/fashion-features/cm2k-by-cheryl-koo-rtw-spring-2015-7999205?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100969643522http://womensweardaily.tumblr.com/post/100969643522Sun, 26 Oct 2014 01:00:08 -0400CM2K by Cheryl KooRTW Spring 2015FashionLAFWKinsman RTW Spring 2015 -Joanna Kinsman got wild with her...<img src="http://33.media.tumblr.com/fe3cb231f47409252dbc68b738909d5d/tumblr_ndynaoRjDm1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/kinsman-rtw-spring-2015-7994087?src=tumblr">Kinsman RTW Spring 2015</a></h1> -<p>Joanna Kinsman got wild with her Brazilian-cut bikinis done in fur, shearling, a dark-pink animal print and embossed leather.  <a href="http://www.wwd.com/fashion-news/fashion-features/kinsman-rtw-spring-2015-7994087?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100957532620http://womensweardaily.tumblr.com/post/100957532620Sat, 25 Oct 2014 22:00:06 -0400KinsmanRTW Spring 2015FashionLAFWThey Are Wearing: Frieze London -Photo by Marcus Dawes<img src="http://33.media.tumblr.com/f3117347a369634ad5cc9055c727e4d1/tumblr_nduzowYGxf1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-frieze-london-7994824/slideshow?src=tumblr">They Are Wearing: Frieze London</a></h1> -<h4 id="slide-credit">Photo by Marcus Dawes</h4>http://womensweardaily.tumblr.com/post/100953624966http://womensweardaily.tumblr.com/post/100953624966Sat, 25 Oct 2014 21:00:09 -0400They Are WearingFrieze LondonFashionStreet StyleSpring 2015 Trend: Do the Shag -Photo by Isa Wipfli -Designers...<img src="http://33.media.tumblr.com/d79b278d0555f8fc64b9b5261166638c/tumblr_ndwk9s0iwk1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/trends/spring-2015-trend-do-the-shag-7996294/slideshow?src=tumblr">Spring 2015 Trend: Do the Shag</a></h1> -<h4 id="slide-credit"><em>Photo by Isa Wipfli</em></h4> -<p><span class="mandelbrot_refrag"><span class="mandelbrot_refrag">Designers</span></span> toughened up the Sixties groove for spring with hardware details on dresses, graphic textures and a decidedly rock-star attitude. Here, Faith Connexion’s leather jacket and AllSaints’ cotton jeans.</p>http://womensweardaily.tumblr.com/post/100949761246http://womensweardaily.tumblr.com/post/100949761246Sat, 25 Oct 2014 20:00:08 -0400Spring 2015TrendSixtiesFaith ConnexionAllSaintsFashionAeneas Erlking RTW Spring 2015 -Designer Aeneas Zhou Erlking...<img src="http://33.media.tumblr.com/020ff3752be38bdfa63735f9c0047eae/tumblr_ndylioeQfp1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/aeneas-erlking-rtw-spring-2015-7999207?src=tumblr">Aeneas Erlking RTW Spring 2015</a></h1> -<p>Designer Aeneas Zhou Erlking showed 11 looks for resort 2015 in a collection called “Pretty In Punk.” <a href="http://www.wwd.com/fashion-news/fashion-features/aeneas-erlking-rtw-spring-2015-7999207?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100941659863http://womensweardaily.tumblr.com/post/100941659863Sat, 25 Oct 2014 18:00:06 -0400Aeneas ErlkingRTW Spring 2015FashionLAFWTAW: Shanghai Fashion Week -Photo by Dave Tacon<img src="http://38.media.tumblr.com/5d5f621a28afd229173c0edc666c8007/tumblr_ndyfiaTdGJ1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-shanghai-fashion-week-7999283/slideshow?src=tumblr">TAW: Shanghai Fashion Week</a></h1> -<h4 id="slide-credit"><em>Photo by Dave Tacon</em></h4>http://womensweardaily.tumblr.com/post/100937329296http://womensweardaily.tumblr.com/post/100937329296Sat, 25 Oct 2014 17:00:08 -0400Shanghai Fashion WeekFashionThey Are WearingStreet StyleSkintone RTW Spring 2015 -Using only raw hand-woven cotton in...<img src="http://31.media.tumblr.com/273113c485118fbfc7ef9ae8b7ec3c9b/tumblr_ndyplgAkeS1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/skintone-rtw-spring-2015-7991646?src=tumblr">Skintone RTW Spring 2015</a></h1> -<p>Using only raw hand-woven cotton in ivory, this line of casual tank tops, sundresses and drawstring-waist skirts appeared comfortable but bland.  <a href="http://www.wwd.com/fashion-news/fashion-features/skintone-rtw-spring-2015-7991646?src=tumblr"><strong>For More<br/></strong></a></p>http://womensweardaily.tumblr.com/post/100932937084http://womensweardaily.tumblr.com/post/100932937084Sat, 25 Oct 2014 16:00:39 -0400SkintoneRTW Spring 2015FashionLAFWThey Are Wearing: Frieze London -Photo by Marcus Dawes<img src="http://38.media.tumblr.com/39cdfb9cff640d24c9b76802346b8fe9/tumblr_ndww24360a1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-frieze-london-7994824/slideshow?src=tumblr">They Are Wearing: Frieze London</a></h1> -<h4 id="slide-credit">Photo by Marcus Dawes</h4>http://womensweardaily.tumblr.com/post/100928590055http://womensweardaily.tumblr.com/post/100928590055Sat, 25 Oct 2014 15:00:30 -0400They Are WearingFrieze LondonFashionStreet StyleA look from the Zara Terez -Collection: Candy Crush. -Courtesy...<img src="http://33.media.tumblr.com/3c48ac34c36431a0ce7735cf86141344/tumblr_ndr6g0i2vc1qa7p1yo1_500.jpg"/><br/><br/><h1 id="slide-caption"><a href="http://www.wwd.com/fashion-news/fashion-scoops/candy-crush-teams-up-with-zara-terez-7991211?src=tumblr">A look from the Zara Terez </a></h1> -<h1><a href="http://www.wwd.com/fashion-news/fashion-scoops/candy-crush-teams-up-with-zara-terez-7991211?src=tumblr">Collection: Candy Crush.</a></h1> -<h4 id="slide-credit"><em>Courtesy Photo</em></h4>http://womensweardaily.tumblr.com/post/100924265060http://womensweardaily.tumblr.com/post/100924265060Sat, 25 Oct 2014 14:00:30 -0400Zara Terez Collection: Candy CrushZara TerezCandy CrushFashionAltaf Maaneshia RTW Spring 2015 -The designer returned to his...<img src="http://31.media.tumblr.com/3fe391d7e0c06dc9ab376bf07e660a8b/tumblr_ndylygFlHw1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/altaf-maaneshia-rtw-spring-2015-7994092?src=tumblr">Altaf Maaneshia RTW Spring 2015</a></h1> -<p>The designer returned to his favorite Forties-inspired dresses marked by extreme shoulders and nipped waists. <a href="http://www.wwd.com/fashion-news/fashion-features/altaf-maaneshia-rtw-spring-2015-7994092?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100919982150http://womensweardaily.tumblr.com/post/100919982150Sat, 25 Oct 2014 13:00:29 -0400Altaf MaaneshiaRTW Spring 2015FashionLAFWYirantian Guo RTW Spring 2015 -Courtesy Photo -The...<img src="http://33.media.tumblr.com/099f60f25d240211b9a6feeffc93aa5b/tumblr_ndyjh287br1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/yirantian-guo-rtw-spring-2015-7999476?src=tumblr">Yirantian Guo RTW Spring 2015</a></h1> -<h4 id="slide-credit"><em>Courtesy Photo</em></h4> -<p>The designer’s deconstructed, modernist style has been on the radar of China fashion watchers since she launched her own collection back in 2012. <a href="http://www.wwd.com/fashion-news/fashion-features/yirantian-guo-rtw-spring-2015-7999476?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100915824047http://womensweardaily.tumblr.com/post/100915824047Sat, 25 Oct 2014 12:00:31 -0400Yirantian GuoRTW Spring 2015FashionShanghai Fashion WeekRosie Huntington-Whiteley’s on a Roll -Photo by Donato...<img src="http://33.media.tumblr.com/cb124dc307258a0ba44a4a1cdb59b0b1/tumblr_ndyi6tQuZS1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-scoops/rosie-on-a-roll-8000063/slideshow?src=tumblr">Rosie Huntington-Whiteley’s on a Roll</a></h1> -<h4 id="slide-credit"><em>Photo by Donato Sardella/Getty Images/Courtesy Photo</em></h4> -<p>Huntington-Whiteley hosted a dinner at the Sunset Tower Hotel with e-commerce site Forward by Elyse Walker. <strong>Liberty Ross</strong>, <strong>Abbey Lee</strong> <strong>Kershaw</strong> and <strong>Cher Coulter</strong> were among the guests who came to celebrate designer <strong>Anthony Vaccarello</strong>, whose label retails on the site. <a href="http://www.wwd.com/fashion-news/fashion-scoops/rosie-on-a-roll-8000063/slideshow?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100911850898http://womensweardaily.tumblr.com/post/100911850898Sat, 25 Oct 2014 11:00:28 -0400Rosie Huntington-WhiteleyAnthony VaccarelloAbbey Lee KershawFashioncelebsForward by Elyse WalkerSunset Tower HotelDar Sara RTW Spring 2015 -Ballerinas by way of Bollywood informed...<img src="http://38.media.tumblr.com/6b314d36441c4a7c74722d63e4ee6852/tumblr_ndymudmmfW1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/fashion-features/dar-sara-rtw-spring-2015-7991801?src=tumblr">Dar Sara RTW Spring 2015</a></h1> -<p>Ballerinas by way of Bollywood informed Dar Sara Fashion’s inventive spring lineup. <a href="http://www.wwd.com/fashion-news/fashion-features/dar-sara-rtw-spring-2015-7991801?src=tumblr"><strong>For More</strong></a></p>http://womensweardaily.tumblr.com/post/100908254264http://womensweardaily.tumblr.com/post/100908254264Sat, 25 Oct 2014 10:00:27 -0400Dar SaraRTW Spring 2015FashionLAFWTAW: Shanghai Fashion Week -Photo by Dave Tacon<img src="http://38.media.tumblr.com/e81cf4f010a35b94cd0dea8f67f45ff0/tumblr_ndyfddFKBJ1qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/they-are-wearing/they-are-wearing-shanghai-fashion-week-7999283/slideshow?src=tumblr">TAW: Shanghai Fashion Week</a></h1> -<h4 id="slide-credit"><em>Photo by Dave Tacon</em></h4>http://womensweardaily.tumblr.com/post/100905126460http://womensweardaily.tumblr.com/post/100905126460Sat, 25 Oct 2014 09:00:23 -0400Shanghai Fashion WeekFashionStreet StyleThey Are WearingSpring 2015 Denim Trend: A Denim - Love Story -Calvin...<img src="http://38.media.tumblr.com/278ab96e4584d645e9c0402ee7d3fc4e/tumblr_ndwnd6Lb221qa7p1yo1_500.jpg"/><br/><br/><h1 class="window-wide title-short" id="slideshow-title"><a href="http://www.wwd.com/fashion-news/trends/spring-2015-denim-trend-a-denim-love-story-7993360/slideshow?src=tumblr">Spring 2015 Denim Trend: A Denim</a></h1> -<h1 class="window-wide title-short"><a href="http://www.wwd.com/fashion-news/trends/spring-2015-denim-trend-a-denim-love-story-7993360/slideshow?src=tumblr"> Love Story</a></h1> -<p>Calvin Rucker’s polyester crinkled peasant top; MiH’s cotton denim skirt. Prima Donna leather fringe bag.</p>http://womensweardaily.tumblr.com/post/100902488286http://womensweardaily.tumblr.com/post/100902488286Sat, 25 Oct 2014 08:00:46 -0400Spring 2015DenimTrendCalvin RuckerMiHPrima DonnaFashionseventies diff --git a/vendor/fguillot/picofeed/tests/fixtures/youtube.xml b/vendor/fguillot/picofeed/tests/fixtures/youtube.xml deleted file mode 100644 index c78347c..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/youtube.xml +++ /dev/null @@ -1,979 +0,0 @@ -http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE02014-05-24T09:13:20.000ZLiquid DnB Playlisthttp://www.gstatic.com/youtube/img/logo.pngvGWKzhttp://gdata.youtube.com/feeds/api/users/vGWKzYouTube data API139125Liquid DnB PlaylistPLD50E7DEEB70F4CE0http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAirQeZjp907Md1oNURqyxGK2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBreakshift - Before You Notice HerNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! - -Sharelink: -http://tinyurl.com/5tb32h8 - -Check them out: -http://soundcloud.com/breakshiftdnb - -Recordlabel: -http://www.96khz-productions.com/liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! - -Sharelink: -http://tinyurl.com/5tb32h8 - -Check them out: -http://soundcloud.com/breakshiftdnb - -Recordlabel: -http://www.96khz-productions.com/Breakshift - Before You Notice HerNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! - -Sharelink: -http://tinyurl.com/5tb32h8 - -Check them out: -http://soundcloud.com/breakshiftdnb - -Recordlabel: -http://www.96khz-productions.com/1http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgU28JMj24hRvbmlk6bSRiT2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZAlexus - Mama Told MeSummer is here. Whether it would be outside or in your mind. It is here. -Original Artwork: http://tinyurl.com/cbpc8e8 -Share on Facebook: http://tinyurl.com/6nn82m6 - -Alexus: -http://soundcloud.com/alexusdnb -http://www.facebook.com/alexusmusic -http://www.myspace.com/alexusdnb - -Join Liquicity Records Soundcloud & Beatport! -http://soundcloud.com/liquicityrecords -http://beatport.com/label/liquicity-records/25942 - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentSummer is here. Whether it would be outside or in your mind. It is here. -Original Artwork: http://tinyurl.com/cbpc8e8 -Share on Facebook: http://tinyurl.com/6nn82m6 - -Alexus: -http://soundcloud.com/alexusdnb -http://www.facebook.com/alexusmusic -http://www.myspace.com/alexusdnb - -Join Liquicity Records Soundcloud & Beatport! -http://soundcloud.com/liquicityrecords -http://beatport.com/label/liquicity-records/25942 - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬Alexus - Mama Told MeSummer is here. Whether it would be outside or in your mind. It is here. -Original Artwork: http://tinyurl.com/cbpc8e8 -Share on Facebook: http://tinyurl.com/6nn82m6 - -Alexus: -http://soundcloud.com/alexusdnb -http://www.facebook.com/alexusmusic -http://www.myspace.com/alexusdnb - -Join Liquicity Records Soundcloud & Beatport! -http://soundcloud.com/liquicityrecords -http://beatport.com/label/liquicity-records/25942 - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬2http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj_s-ckQCISdIl6vbAGiRUp2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZSmooth - Shifting Sands feat. Shaz Sparks (part 2)Mindblowingly beautiful. - -OUT ON VIPER RECORDINGS - -Share on facebook! -http://tinyurl.com/8xks9pq - -BUY HERE: -Viper: http://bit.ly/A5ClWr -Beatport: http://bit.ly/xjwFW4 -Junodownload: http://bit.ly/zHj00e -Trackitdown: http://bit.ly/zXyNY8 -iTunes: http://bit.ly/xjs6OM - -SMOOTH LINKS -http://www.facebook.com/lukasmooth -http://www.soundcloud.com/lukasmooth -http://www.myspace.com/lukaakasmooth - -VIPER RECORDINGS -http://www.viperrecordings.co.uk -https://www.facebook.com/viperrecordings -http://www.soundcloud.com/viperrecordings -http://www.twitter.com/ViperRecordings -http://www.youtube.com/ViperChannelliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentMindblowingly beautiful. - -OUT ON VIPER RECORDINGS - -Share on facebook! -http://tinyurl.com/8xks9pq - -BUY HERE: -Viper: http://bit.ly/A5ClWr -Beatport: http://bit.ly/xjwFW4 -Junodownload: http://bit.ly/zHj00e -Trackitdown: http://bit.ly/zXyNY8 -iTunes: http://bit.ly/xjs6OM - -SMOOTH LINKS -http://www.facebook.com/lukasmooth -http://www.soundcloud.com/lukasmooth -http://www.myspace.com/lukaakasmooth - -VIPER RECORDINGS -http://www.viperrecordings.co.uk -https://www.facebook.com/viperrecordings -http://www.soundcloud.com/viperrecordings -http://www.twitter.com/ViperRecordings -http://www.youtube.com/ViperChannelSmooth - Shifting Sands feat. Shaz Sparks (part 2)Mindblowingly beautiful. - -OUT ON VIPER RECORDINGS - -Share on facebook! -http://tinyurl.com/8xks9pq - -BUY HERE: -Viper: http://bit.ly/A5ClWr -Beatport: http://bit.ly/xjwFW4 -Junodownload: http://bit.ly/zHj00e -Trackitdown: http://bit.ly/zXyNY8 -iTunes: http://bit.ly/xjs6OM - -SMOOTH LINKS -http://www.facebook.com/lukasmooth -http://www.soundcloud.com/lukasmooth -http://www.myspace.com/lukaakasmooth - -VIPER RECORDINGS -http://www.viperrecordings.co.uk -https://www.facebook.com/viperrecordings -http://www.soundcloud.com/viperrecordings -http://www.twitter.com/ViperRecordings -http://www.youtube.com/ViperChannel3http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg_dlhcDkykYVJ0CTbxv-Xe2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicityMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicity4http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjUd1meezgJQPfqoWgi-Lk22012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicityMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! - -Buy the full EP here: http://tinyurl.com/cynvpl5 - -Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. - -Maduk links: -http://soundcloud.com/madukdnb -http://facebook.com/madukdnb - -Join Liquicity Records Soundcloud & Beatport!
 -http://soundcloud.com/liquicityrecords -
http://beatport.com/label/liquicity-records/25942 - -

[Liquicity Merchandise:]
 -EU: http://liquicity.spreadshirt.nl/ -
USA http://liquicity.spreadshirt.com

 - -Liquicity Facebook: -
http://www.facebook.com/OfficialLiquicity5http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAijsc34j-QThSw4mflhBtC52012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZLoz Contreras - Sarajevo (Hosta Remix)[↓ SHARE on facebook! ↓] -http://tinyurl.com/3lyff9l - -Out on mrsuicidesheep's new label called "Seeking Blue"! - -Almost as good as the original. Wonderful piece of music! - -[LOZ CONTRERAS] -http://www.facebook.com/lozcontrerasuk -http://soundcloud.com/lozcontreras - -[HOSTA] -http://soundcloud.com/hosta -http://facebook.com/hostaUK - -[Seeking Blue links] -http://soundcloud.com/seeking-blue -http://www.facebook.com/SeekingBlueliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusic[↓ SHARE on facebook! ↓] -http://tinyurl.com/3lyff9l - -Out on mrsuicidesheep's new label called "Seeking Blue"! - -Almost as good as the original. Wonderful piece of music! - -[LOZ CONTRERAS] -http://www.facebook.com/lozcontrerasuk -http://soundcloud.com/lozcontreras - -[HOSTA] -http://soundcloud.com/hosta -http://facebook.com/hostaUK - -[Seeking Blue links] -http://soundcloud.com/seeking-blue -http://www.facebook.com/SeekingBlueLoz Contreras - Sarajevo (Hosta Remix)[↓ SHARE on facebook! ↓] -http://tinyurl.com/3lyff9l - -Out on mrsuicidesheep's new label called "Seeking Blue"! - -Almost as good as the original. Wonderful piece of music! - -[LOZ CONTRERAS] -http://www.facebook.com/lozcontrerasuk -http://soundcloud.com/lozcontreras - -[HOSTA] -http://soundcloud.com/hosta -http://facebook.com/hostaUK - -[Seeking Blue links] -http://soundcloud.com/seeking-blue -http://www.facebook.com/SeekingBlue6http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAi9VdJuAmY1nqzSDzTz8wP02012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZImogen Heap - Headlock (High Contrast Remix)A High Contrast remix of the song headlock, produced by Imogen Heap. - -Brought you by Liquicity.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicA High Contrast remix of the song headlock, produced by Imogen Heap. - -Brought you by Liquicity.Imogen Heap - Headlock (High Contrast Remix)A High Contrast remix of the song headlock, produced by Imogen Heap. - -Brought you by Liquicity.7http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgmnru8BE0EEnUngjSggztO2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZSnakehips - The Years (Loz Contreras Remix)Purified love. - -Share it on your facebook wall: -http://tinyurl.com/77lq22b - -Loz Contreras: -http://Facebook.com/lozcontrerasuk -http://Soundcloud.com/lozcontreras - -Snakehips: -http://soundcloud.com/snakehips-1liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentPurified love. - -Share it on your facebook wall: -http://tinyurl.com/77lq22b - -Loz Contreras: -http://Facebook.com/lozcontrerasuk -http://Soundcloud.com/lozcontreras - -Snakehips: -http://soundcloud.com/snakehips-1Snakehips - The Years (Loz Contreras Remix)Purified love. - -Share it on your facebook wall: -http://tinyurl.com/77lq22b - -Loz Contreras: -http://Facebook.com/lozcontrerasuk -http://Soundcloud.com/lozcontreras - -Snakehips: -http://soundcloud.com/snakehips-18http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAhQS7wUsKf5kFe1ckRNcG_52012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZStan SB - Tears in rainGrabs you and throws you up in the air at the speed of light.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicGrabs you and throws you up in the air at the speed of light.Stan SB - Tears in rainGrabs you and throws you up in the air at the speed of light.9http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAi02PAGANFuRZDTSAr3PVtr2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZWillem de Roo - Morning WalkStunningly beautiful liquid music, by a dutch artist. - -Artist information: -http://www.youtube.com/XciterMusic -http://www.myspace.com/willemderoo -willem.de.roo@home.nl (email/msn) - -Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. - -Make sure you subscribe. It's a project that will take music to a new level.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicStunningly beautiful liquid music, by a dutch artist. - -Artist information: -http://www.youtube.com/XciterMusic -http://www.myspace.com/willemderoo -willem.de.roo@home.nl (email/msn) - -Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. - -Make sure you subscribe. It's a project that will take music to a new level.Willem de Roo - Morning WalkStunningly beautiful liquid music, by a dutch artist. - -Artist information: -http://www.youtube.com/XciterMusic -http://www.myspace.com/willemderoo -willem.de.roo@home.nl (email/msn) - -Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. - -Make sure you subscribe. It's a project that will take music to a new level.10http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAhfrzPsfzHG6bOdCbMWHmp12012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBass Tikal & Mex-E - The MusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.Bass Tikal & Mex-E - The MusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.11http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAiaJ4VYu4zNvyviDJaK83cH2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBcee - Count the stars (Joe Syntax Remix)Magical! - Shared on Facebook in 1 second: -http://tinyurl.com/7r4tnp9 - -Forthcoming end of March! I'll keep you up to date. - -Joe syntax -http://www.facebook.com/joesyntax?ref=ts -http://www.medschoolmusic.com/artists/joesyntax/ - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentMagical! - Shared on Facebook in 1 second: -http://tinyurl.com/7r4tnp9 - -Forthcoming end of March! I'll keep you up to date. - -Joe syntax -http://www.facebook.com/joesyntax?ref=ts -http://www.medschoolmusic.com/artists/joesyntax/ - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicityBcee - Count the stars (Joe Syntax Remix)Magical! - Shared on Facebook in 1 second: -http://tinyurl.com/7r4tnp9 - -Forthcoming end of March! I'll keep you up to date. - -Joe syntax -http://www.facebook.com/joesyntax?ref=ts -http://www.medschoolmusic.com/artists/joesyntax/ - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity12http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjA-xSrMMdD3Q8Q-sC4FctI2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMEMRO - HOMECOMING (OUT NOW)Talented young dnb producer Will a.k.a. Memro has his first release out on Liquicity records! This is the second release on Liquicity records with more to come! - -Buy now! (Available in more stores this week!) - -NU URBAN SHOP: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/advanced_search_result.php?search_in_description=0&keywords=LIQ002 - -DIGITAL-TUNES.NET -http://digital-tunes.net/releases/homecoming___trick_of_the_tail - -JUNO -http://juno.co.uk/artists/Memro/download/ -http://junodownload.com/artists/Memro/releases/ - -BEATPORT -https://www.beatport.com/en-US/html...EntityId=142446 - -TRACKITDOWN -http://www.trackitdown.net/search/keyword?q=memro - -ITUNES -http://itunes.apple.com/gb/album/homecoming/id373056576?i=373056583 - -MEMRO'S YOUTUBE: -http://youtube.com/user/MemroMusicliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicTalented young dnb producer Will a.k.a. Memro has his first release out on Liquicity records! This is the second release on Liquicity records with more to come! - -Buy now! (Available in more stores this week!) - -NU URBAN SHOP: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/advanced_search_result.php?search_in_description=0&keywords=LIQ002 - -DIGITAL-TUNES.NET -http://digital-tunes.net/releases/homecoming___trick_of_the_tail - -JUNO -http://juno.co.uk/artists/Memro/download/ -http://junodownload.com/artists/Memro/releases/ - -BEATPORT -https://www.beatport.com/en-US/html...EntityId=142446 - -TRACKITDOWN -http://www.trackitdown.net/search/keyword?q=memro - -ITUNES -http://itunes.apple.com/gb/album/homecoming/id373056576?i=373056583 - -MEMRO'S YOUTUBE: -http://youtube.com/user/MemroMusicMEMRO - HOMECOMING (OUT NOW)Talented young dnb producer Will a.k.a. Memro has his first release out on Liquicity records! This is the second release on Liquicity records with more to come! - -Buy now! (Available in more stores this week!) - -NU URBAN SHOP: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/advanced_search_result.php?search_in_description=0&keywords=LIQ002 - -DIGITAL-TUNES.NET -http://digital-tunes.net/releases/homecoming___trick_of_the_tail - -JUNO -http://juno.co.uk/artists/Memro/download/ -http://junodownload.com/artists/Memro/releases/ - -BEATPORT -https://www.beatport.com/en-US/html...EntityId=142446 - -TRACKITDOWN -http://www.trackitdown.net/search/keyword?q=memro - -ITUNES -http://itunes.apple.com/gb/album/homecoming/id373056576?i=373056583 - -MEMRO'S YOUTUBE: -http://youtube.com/user/MemroMusic13http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj4HsTOsPrVpQMs2bpCXrUH2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZHybrid Minds - I'm ThroughAvailable to buy now: http://tinyurl.com/88bfrzr - -Share this video on Facebook: http://tinyurl.com/7p5hsjd - -Become a fan of Hybrid Minds: http://www.facebook.com/hybridmindsdnb -Follow Hybrid Minds on Twitter: http://www.twitter.com/hybridmindsdnb - -http://www.facebook.com/audiopornrecords -http://www.audiopornrecords.com - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentAvailable to buy now: http://tinyurl.com/88bfrzr - -Share this video on Facebook: http://tinyurl.com/7p5hsjd - -Become a fan of Hybrid Minds: http://www.facebook.com/hybridmindsdnb -Follow Hybrid Minds on Twitter: http://www.twitter.com/hybridmindsdnb - -http://www.facebook.com/audiopornrecords -http://www.audiopornrecords.com - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬Hybrid Minds - I'm ThroughAvailable to buy now: http://tinyurl.com/88bfrzr - -Share this video on Facebook: http://tinyurl.com/7p5hsjd - -Become a fan of Hybrid Minds: http://www.facebook.com/hybridmindsdnb -Follow Hybrid Minds on Twitter: http://www.twitter.com/hybridmindsdnb - -http://www.facebook.com/audiopornrecords -http://www.audiopornrecords.com - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬ - -Liquicity Facebook: -‪http://www.facebook.com/OfficialLiquicity‬14http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAiT6pM7X683jS4LFxUKTiQn2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMaduk - LevitateOUT NOW ON LIQUICITY RECORDS. - -The wait is over! Maduks debut single called "Avalon EP" is now available in all good online music stores! - -MADUK Facebook: -http://www.facebook.com/madukdnb - -MADUK Soundcloud: -http://soundcloud.com/madukdnb - -Vocals from: -http://soundcloud.com/charlotte_rawling - -Nu Urban store: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/product_info.php?products_id=22929&cPath=22_1625 - -Digital-tunes store: -http://digital-tunes.net/releases/avalon___levitate - -Itunes store: -http://itunes.apple.com/us/album/avalon-levitate-single/id472328139?i=472330033 - -Juno download store: -http://junodownload.com/products/avalon-levitate/1845277-02/ - - -Facebook Sharelink: -http://tinyurl.com/64c4c4l - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentOUT NOW ON LIQUICITY RECORDS. - -The wait is over! Maduks debut single called "Avalon EP" is now available in all good online music stores! - -MADUK Facebook: -http://www.facebook.com/madukdnb - -MADUK Soundcloud: -http://soundcloud.com/madukdnb - -Vocals from: -http://soundcloud.com/charlotte_rawling - -Nu Urban store: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/product_info.php?products_id=22929&cPath=22_1625 - -Digital-tunes store: -http://digital-tunes.net/releases/avalon___levitate - -Itunes store: -http://itunes.apple.com/us/album/avalon-levitate-single/id472328139?i=472330033 - -Juno download store: -http://junodownload.com/products/avalon-levitate/1845277-02/ - - -Facebook Sharelink: -http://tinyurl.com/64c4c4l - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬Maduk - LevitateOUT NOW ON LIQUICITY RECORDS. - -The wait is over! Maduks debut single called "Avalon EP" is now available in all good online music stores! - -MADUK Facebook: -http://www.facebook.com/madukdnb - -MADUK Soundcloud: -http://soundcloud.com/madukdnb - -Vocals from: -http://soundcloud.com/charlotte_rawling - -Nu Urban store: -http://nu-urbanmusic.co.uk/drum_and_bass/shop/product_info.php?products_id=22929&cPath=22_1625 - -Digital-tunes store: -http://digital-tunes.net/releases/avalon___levitate - -Itunes store: -http://itunes.apple.com/us/album/avalon-levitate-single/id472328139?i=472330033 - -Juno download store: -http://junodownload.com/products/avalon-levitate/1845277-02/ - - -Facebook Sharelink: -http://tinyurl.com/64c4c4l - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com‬15http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjZSKXl-MaRipa7PJ76k8wo2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZColossus - Under the WeatherYes. Under The Weather EP is forthcoming on E-Motion on 19th of December - -Colossus -http://soundcloud.com/colossusuk/tracks - -E-motion -http://soundcloud.com/emotiondnb -http://twitter.com/Emotiondnb -https://facebook.com/emotionrecords - -Photo by David van der Stel: http://davidvanderstel.nl/ - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c39auhv - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.comliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentYes. Under The Weather EP is forthcoming on E-Motion on 19th of December - -Colossus -http://soundcloud.com/colossusuk/tracks - -E-motion -http://soundcloud.com/emotiondnb -http://twitter.com/Emotiondnb -https://facebook.com/emotionrecords - -Photo by David van der Stel: http://davidvanderstel.nl/ - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c39auhv - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.comColossus - Under the WeatherYes. Under The Weather EP is forthcoming on E-Motion on 19th of December - -Colossus -http://soundcloud.com/colossusuk/tracks - -E-motion -http://soundcloud.com/emotiondnb -http://twitter.com/Emotiondnb -https://facebook.com/emotionrecords - -Photo by David van der Stel: http://davidvanderstel.nl/ - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c39auhv - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com16http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg_rH7obZ3PRrOBrqXDUnNi2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZLondon Elektricity - Wishing Well (Danny Byrd Remix)hot stuff.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusichot stuff.London Elektricity - Wishing Well (Danny Byrd Remix)hot stuff.17http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgiRVSm8L_byUhionHMkdCk2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZKaleb - Dusty BlindsStunning track! 100% Pure sunshine.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicStunning track! 100% Pure sunshine.Kaleb - Dusty BlindsStunning track! 100% Pure sunshine.18http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjrBuoF9byQMDksQslHxBxt2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZTwoThirds - 23 ReasonsWhat a beauty. Get it for free! Only thing you have to do is like his facebook here: - -http://facebook.com/TwoThirdsDnB?sk=app_201143516562748 - -Twothirds links: -http://youtube.com/user/dranner123 -http://soundcloud.com/lewismd - -Artwork: -Merson "Rest on the flight into Egypt" -http://commons.wikimedia.org/wiki/File:Merson_Rest_on_the_Flight_into_Egypt.jpgliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicWhat a beauty. Get it for free! Only thing you have to do is like his facebook here: - -http://facebook.com/TwoThirdsDnB?sk=app_201143516562748 - -Twothirds links: -http://youtube.com/user/dranner123 -http://soundcloud.com/lewismd - -Artwork: -Merson "Rest on the flight into Egypt" -http://commons.wikimedia.org/wiki/File:Merson_Rest_on_the_Flight_into_Egypt.jpgTwoThirds - 23 ReasonsWhat a beauty. Get it for free! Only thing you have to do is like his facebook here: - -http://facebook.com/TwoThirdsDnB?sk=app_201143516562748 - -Twothirds links: -http://youtube.com/user/dranner123 -http://soundcloud.com/lewismd - -Artwork: -Merson "Rest on the flight into Egypt" -http://commons.wikimedia.org/wiki/File:Merson_Rest_on_the_Flight_into_Egypt.jpg19http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgBHsbry824_1kPDia1_HIj2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZCommand Strange - Time[Human Soul Rec] -http://junodownload.com/products/1406614-02.htmliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusic[Human Soul Rec] -http://junodownload.com/products/1406614-02.htmCommand Strange - Time[Human Soul Rec] -http://junodownload.com/products/1406614-02.htm20http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAiREw2zQSXWQ_IaT_PPoGqx2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBCee - Keep The Faith ft. Robert Owens (Seba Remix)Gor-ge-ous. -Forthcoming on Spearhead records. Please like them on Facebook! - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Seba -http://www.facebook.com/pages/Seba/167756029559 - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentGor-ge-ous. -Forthcoming on Spearhead records. Please like them on Facebook! - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Seba -http://www.facebook.com/pages/Seba/167756029559 - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicityBCee - Keep The Faith ft. Robert Owens (Seba Remix)Gor-ge-ous. -Forthcoming on Spearhead records. Please like them on Facebook! - -Bcee -http://www.facebook.com/pages/BCee/74619557919 -http://twitter.com/#!/stevebcee - -Seba -http://www.facebook.com/pages/Seba/167756029559 - -Spearhead Records -http://www.facebook.com/pages/Spearhead-Records/10011018134 -http://soundcloud.com/spearheadrecords -http://www.spearheadrecords.co.uk/ -http://www.myspace.com/spearheadrecords - -[Liquicity Merchandise:] -EU: http://liquicity.spreadshirt.nl/ -USA http://liquicity.spreadshirt.com - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity21http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj7FRyiUZ9f_VU3mlMI25OM2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZWreckage Machinery - Long Gone (GIFT)Wreckage Machinery, responsible for alot of beautiful tunes, made this lovely piece of music, for all you guys to download. free. -- -Liquicity World Domination! Make a photo of your liquicity merchandising in a scene that symbolizes your countries capital (Example, a photo with your shirt hanging somewhere, with the eiffel tower on the background) - -All photo's will be put into a Liquicity world domination video showing as much capitals as possible. Send your photo to: officialliquicity@gmail.com -- -DOWNLOAD LINK: http://dnbshare.com/download/WreckageMachinery-LongGone_FreeRelease_.mp3.html - -http://facebook.com/WreckageMachinery -http://soundcloud.com/wreckage-machinery -http://youtube.com/wreckagemachinery -http://espritrecords.net/liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicWreckage Machinery, responsible for alot of beautiful tunes, made this lovely piece of music, for all you guys to download. free. -- -Liquicity World Domination! Make a photo of your liquicity merchandising in a scene that symbolizes your countries capital (Example, a photo with your shirt hanging somewhere, with the eiffel tower on the background) - -All photo's will be put into a Liquicity world domination video showing as much capitals as possible. Send your photo to: officialliquicity@gmail.com -- -DOWNLOAD LINK: http://dnbshare.com/download/WreckageMachinery-LongGone_FreeRelease_.mp3.html - -http://facebook.com/WreckageMachinery -http://soundcloud.com/wreckage-machinery -http://youtube.com/wreckagemachinery -http://espritrecords.net/Wreckage Machinery - Long Gone (GIFT)Wreckage Machinery, responsible for alot of beautiful tunes, made this lovely piece of music, for all you guys to download. free. -- -Liquicity World Domination! Make a photo of your liquicity merchandising in a scene that symbolizes your countries capital (Example, a photo with your shirt hanging somewhere, with the eiffel tower on the background) - -All photo's will be put into a Liquicity world domination video showing as much capitals as possible. Send your photo to: officialliquicity@gmail.com -- -DOWNLOAD LINK: http://dnbshare.com/download/WreckageMachinery-LongGone_FreeRelease_.mp3.html - -http://facebook.com/WreckageMachinery -http://soundcloud.com/wreckage-machinery -http://youtube.com/wreckagemachinery -http://espritrecords.net/22http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg77gQeGJb1sZ9E9rcmWTch2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZChase and Status Ft. Delilah - Time (Queensway Remix)Loved the original, loving this. - -DOWNLOAD remix: http://dnbshare.com/download/Chase_Status-Time-_Queensway_.mp3.html - - -Click here to buy the original digital bundle on iTunes - http://bit.ly/hbVDXh - -iTunes digital bundle includes: -'Time' Feat. Delilah (Radio Edit) -'Time' Feat. Delilah (Chase & Status Champagne Bubbler Remix) -'Time' Feat. Delilah (Wilkinson Remix) -'Time' Feat. Delilah (Kamuki Remix) -'Time' Feat. Delilah (Kev Willow Remix) - -http://www.chaseandstatus.co.uk -http://www.facebook.com/chaseandstatus -http://www.twitter.com/chaseandstatus -http://www.myspace.com/chaseandstatus - -http://www.facebook.com/delilahofficial -http://twitter.com/delilahmusic -http://soundcloud.com/delilahofficialliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicLoved the original, loving this. - -DOWNLOAD remix: http://dnbshare.com/download/Chase_Status-Time-_Queensway_.mp3.html - - -Click here to buy the original digital bundle on iTunes - http://bit.ly/hbVDXh - -iTunes digital bundle includes: -'Time' Feat. Delilah (Radio Edit) -'Time' Feat. Delilah (Chase & Status Champagne Bubbler Remix) -'Time' Feat. Delilah (Wilkinson Remix) -'Time' Feat. Delilah (Kamuki Remix) -'Time' Feat. Delilah (Kev Willow Remix) - -http://www.chaseandstatus.co.uk -http://www.facebook.com/chaseandstatus -http://www.twitter.com/chaseandstatus -http://www.myspace.com/chaseandstatus - -http://www.facebook.com/delilahofficial -http://twitter.com/delilahmusic -http://soundcloud.com/delilahofficialChase and Status Ft. Delilah - Time (Queensway Remix)Loved the original, loving this. - -DOWNLOAD remix: http://dnbshare.com/download/Chase_Status-Time-_Queensway_.mp3.html - - -Click here to buy the original digital bundle on iTunes - http://bit.ly/hbVDXh - -iTunes digital bundle includes: -'Time' Feat. Delilah (Radio Edit) -'Time' Feat. Delilah (Chase & Status Champagne Bubbler Remix) -'Time' Feat. Delilah (Wilkinson Remix) -'Time' Feat. Delilah (Kamuki Remix) -'Time' Feat. Delilah (Kev Willow Remix) - -http://www.chaseandstatus.co.uk -http://www.facebook.com/chaseandstatus -http://www.twitter.com/chaseandstatus -http://www.myspace.com/chaseandstatus - -http://www.facebook.com/delilahofficial -http://twitter.com/delilahmusic -http://soundcloud.com/delilahofficial23http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAihef1eJfHd83ReyO2UEZoo2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMoleman - ImagineThis gets me into the clouds. Thanks Charlie. - -Forthcoming on Velcro records 9th of marchliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicThis gets me into the clouds. Thanks Charlie. - -Forthcoming on Velcro records 9th of marchMoleman - ImagineThis gets me into the clouds. Thanks Charlie. - -Forthcoming on Velcro records 9th of march24http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjevvhC-cwavt4tnhBdEF2E2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZDimension - DelightOut on 16/01/2012 - -Brand new label SA Digital present their debut single 'Delight'. Available to buy from the 16th January from all good download stores. Become a fan of Dimension:
 -http://on.fb.me/nSvZvw
 - -Follow Dimension on twitter:
 -http://bit.ly/oBfYmB - -SA Digital: -http://soundcloud.com/sa-digital - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c4zb5mw - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.comliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentOut on 16/01/2012 - -Brand new label SA Digital present their debut single 'Delight'. Available to buy from the 16th January from all good download stores. Become a fan of Dimension:
 -http://on.fb.me/nSvZvw
 - -Follow Dimension on twitter:
 -http://bit.ly/oBfYmB - -SA Digital: -http://soundcloud.com/sa-digital - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c4zb5mw - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.comDimension - DelightOut on 16/01/2012 - -Brand new label SA Digital present their debut single 'Delight'. Available to buy from the 16th January from all good download stores. Become a fan of Dimension:
 -http://on.fb.me/nSvZvw
 - -Follow Dimension on twitter:
 -http://bit.ly/oBfYmB - -SA Digital: -http://soundcloud.com/sa-digital - -Liquicity Facebook: -http://www.facebook.com/OfficialLiquicity - -Facebook Sharelink: -http://tinyurl.com/c4zb5mw - -[Liquicity Merchandise:] -EU: ‪http://liquicity.spreadshirt.nl/‬ -USA ‪http://liquicity.spreadshirt.com25 \ No newline at end of file diff --git a/vendor/fguillot/picofeed/tests/fixtures/zoot_egkty.xml b/vendor/fguillot/picofeed/tests/fixtures/zoot_egkty.xml deleted file mode 100644 index 3d1e69b..0000000 --- a/vendor/fguillot/picofeed/tests/fixtures/zoot_egkty.xml +++ /dev/null @@ -1,177 +0,0 @@ - - - خبریں - وائس آف امریکہ - http://www.urduvoa.com/archive/news/latest/2184/2184.html - - - http://www.voanews.com/img/voa/rssLogo_VOA.gif - خبریں - وائس آف امریکہ - http://www.urduvoa.com/archive/news/latest/2184/2184.html - - ur - کاپی رائٹ 2010 - وائس آف امریکہ - 60 - Sun, 16 Mar 2014 18:08:14 -0400 - Pangea CMS – VOA - - - کرائمیا: ریفرنڈم میں روس سے الحاق کی حمایت - - http://www.urduvoa.com/content/majority-favors-joining-russia-in-crimea-referendum-16mar2014/1872523.html - http://www.urduvoa.com/content/majority-favors-joining-russia-in-crimea-referendum-16mar2014/1872523.html - Sun, 16 Mar 2014 17:51:37 -0400 - خبریںدنیاhttp://www.urduvoa.com/content/majority-favors-joining-russia-in-crimea-referendum-16mar2014/1872523.html#relatedInfoContainer - - - کراچی : انسداد پولیو مہم کا تیسرا مرحلہ - - http://www.urduvoa.com/content/third-round-of-anti-polio-campaign-16mar2014/1872482.html - http://www.urduvoa.com/content/third-round-of-anti-polio-campaign-16mar2014/1872482.html - Sun, 16 Mar 2014 15:31:10 -0400 - خبریںصحت-سائنسhttp://www.urduvoa.com/content/third-round-of-anti-polio-campaign-16mar2014/1872482.html#relatedInfoContainer - - - نائجیریا میں دیہات پر حملے، 100 افراد ہلاک - - http://www.urduvoa.com/content/hundred-killed-in-central-nigeria-attack-16mar2014/1872468.html - http://www.urduvoa.com/content/hundred-killed-in-central-nigeria-attack-16mar2014/1872468.html - Sun, 16 Mar 2014 15:16:00 -0400 - خبریںدنیاhttp://www.urduvoa.com/content/hundred-killed-in-central-nigeria-attack-16mar2014/1872468.html#relatedInfoContainer - - - علاج کے لیے شخصیت کا معائنہ بھی ضروری ہے، تحقیق - - http://www.urduvoa.com/content/personality-tests-of-patients-improve-heath-care-13mar2014/1872453.html - http://www.urduvoa.com/content/personality-tests-of-patients-improve-heath-care-13mar2014/1872453.html - Sun, 16 Mar 2014 14:26:31 -0400 - خبریںصحت-سائنسnoreply@voanews.com (نصرت شبنم)http://www.urduvoa.com/content/personality-tests-of-patients-improve-heath-care-13mar2014/1872453.html#relatedInfoContainer - - - شمالی کوریا کے مزید میزائل تجربے - - http://www.urduvoa.com/content/north-korea-test-fires-18-missiles-16mar2014/1872427.html - http://www.urduvoa.com/content/north-korea-test-fires-18-missiles-16mar2014/1872427.html - Sun, 16 Mar 2014 13:48:57 -0400 - خبریںدنیاhttp://www.urduvoa.com/content/north-korea-test-fires-18-missiles-16mar2014/1872427.html#relatedInfoContainer - - - توہین ادیان کے قوانین میں ’ترمیم‘ کے مطالبات میں اضافہ - - http://www.urduvoa.com/content/pakistan-blasphemy-16march/1872314.html - http://www.urduvoa.com/content/pakistan-blasphemy-16march/1872314.html - Sun, 16 Mar 2014 10:19:44 -0400 - خبریںپاکستانnoreply@voanews.com (کامران حیدر)http://www.urduvoa.com/content/pakistan-blasphemy-16march/1872314.html#relatedInfoContainer - - - لاپتا طیارے کے پاکستانی حدود میں شواہد نہیں ملے: دفتر خارجہ - - http://www.urduvoa.com/content/malaysia-missing-airliner-pakistan-territory-witness-not-found/1872288.html - http://www.urduvoa.com/content/malaysia-missing-airliner-pakistan-territory-witness-not-found/1872288.html - Sun, 16 Mar 2014 09:28:34 -0400 - خبریںپاکستانناصر محمود noreply@voanews.com (ناصر محمود)http://www.urduvoa.com/content/malaysia-missing-airliner-pakistan-territory-witness-not-found/1872288.html#relatedInfoContainer - - - لاپتا طیارہ: تحقیقات کا نیا رخ، تلاش میں 25 ملک سرگرم - - http://www.urduvoa.com/content/search-for-missing-plane-involves-25-countries/1872224.html - http://www.urduvoa.com/content/search-for-missing-plane-involves-25-countries/1872224.html - Sun, 16 Mar 2014 08:00:32 -0400 - خبریںدنیاhttp://www.urduvoa.com/content/search-for-missing-plane-involves-25-countries/1872224.html#relatedInfoContainer - - - شام: باغیوں کے زیر تسلط علاقے پر سرکاری قبضہ بحال - - http://www.urduvoa.com/content/syria-security-forces-seized-rebel-held-town/1872206.html - http://www.urduvoa.com/content/syria-security-forces-seized-rebel-held-town/1872206.html - Sun, 16 Mar 2014 06:58:58 -0400 - خبریںمشرق وسطیٰ http://www.urduvoa.com/content/syria-security-forces-seized-rebel-held-town/1872206.html#relatedInfoContainer - - - پاکستان میں یوٹیوب پر پابندی جلد اٹھا لی جائے گی: وزیر اطلاعات - - http://www.urduvoa.com/content/pakistan-ban-on-youtube/1872190.html - http://www.urduvoa.com/content/pakistan-ban-on-youtube/1872190.html - Sun, 16 Mar 2014 04:32:46 -0400 - خبریںپاکستانhttp://www.urduvoa.com/content/pakistan-ban-on-youtube/1872190.html#relatedInfoContainer - - - کرائمیا میں یوکرین سے علیحدگی پر ریفرنڈم - - http://www.urduvoa.com/content/ukraine-crimea-referendum/1872185.html - http://www.urduvoa.com/content/ukraine-crimea-referendum/1872185.html - Sun, 16 Mar 2014 03:35:53 -0400 - خبریںدنیاhttp://www.urduvoa.com/content/ukraine-crimea-referendum/1872185.html#relatedInfoContainer - - - مجوزہ سکیورٹی معاہدے پر دستخط نہیں کروں گا: افغان صدر - - http://www.urduvoa.com/content/afghanistan-karazi-last-adress-to-parliament/1872173.html - http://www.urduvoa.com/content/afghanistan-karazi-last-adress-to-parliament/1872173.html - Sun, 16 Mar 2014 00:52:18 -0400 - خبریںجنوبی ایشیاhttp://www.urduvoa.com/content/afghanistan-karazi-last-adress-to-parliament/1872173.html#relatedInfoContainer - - - لاڑکانہ:مقدس اوراق کی بے حرمتی کے الزام میں ایک شخص گرفتار - - http://www.urduvoa.com/content/larkana-tention/1872130.html - http://www.urduvoa.com/content/larkana-tention/1872130.html - Sat, 15 Mar 2014 19:27:08 -0400 - خبریںپاکستان - - - ’ ینگ گلوبل لیڈرز پروگرام ‘ کے لئے تین پاکستانی منتخب - - http://www.urduvoa.com/content/three-pakistanis-in-global-leadership-program/1872109.html - http://www.urduvoa.com/content/three-pakistanis-in-global-leadership-program/1872109.html - Sat, 15 Mar 2014 17:42:44 -0400 - خبریںتعلیمhttp://www.urduvoa.com/content/three-pakistanis-in-global-leadership-program/1872109.html#relatedInfoContainer - - - لیاری گینگ وار ، دونوں گروپس میں امن معاہدہ - - http://www.urduvoa.com/content/lyari-gan-war-edns/1872108.html - http://www.urduvoa.com/content/lyari-gan-war-edns/1872108.html - Sat, 15 Mar 2014 17:40:04 -0400 - خبریںپاکستان - - - کراچی ، سال 2014 کا پہلا پولیو کیس سامنے آگیا - - http://www.urduvoa.com/content/sindh-first-polio-case-found-in-karachi-2014/1872083.html - http://www.urduvoa.com/content/sindh-first-polio-case-found-in-karachi-2014/1872083.html - Sat, 15 Mar 2014 15:44:04 -0400 - خبریںصحت-سائنسnoreply@voanews.com (شائستہ جلیل)http://www.urduvoa.com/content/sindh-first-polio-case-found-in-karachi-2014/1872083.html#relatedInfoContainer - - - نئی فلمیں ’بے وقوفیاں‘ اور ’نے برز‘ ریلیز ہوگئیں - - http://www.urduvoa.com/content/bollywood-box-office-report/1872076.html - http://www.urduvoa.com/content/bollywood-box-office-report/1872076.html - Sat, 15 Mar 2014 15:36:24 -0400 - خبریںآرٹ - - - نئی باتیں یاد رکھنے کیلئے پرانی یادیں بھلانا ضروری ہوگیا!! - - http://www.urduvoa.com/content/article/1872065.html - http://www.urduvoa.com/content/article/1872065.html - Sat, 15 Mar 2014 15:11:34 -0400 - خبریںصحت-سائنسشہزاد حسینnoreply@voanews.com (شہزاد حسین)http://www.urduvoa.com/content/article/1872065.html#relatedInfoContainer - - - ٹی ٹوئنٹی ورلڈ کپ اتوار سے شروع ہورہا ہے - - http://www.urduvoa.com/content/world-cup-t-20/1872036.html - http://www.urduvoa.com/content/world-cup-t-20/1872036.html - Sat, 15 Mar 2014 14:05:24 -0400 - خبریںکھیل - - - راشن سسٹم ، قحط زدہ تھر کے مسائل کا مستقل حل ۔۔!! - - http://www.urduvoa.com/content/solution-of-drought/1872010.html - http://www.urduvoa.com/content/solution-of-drought/1872010.html - Sat, 15 Mar 2014 12:40:40 -0400 - خبریںپاکستانnoreply@voanews.com (وسیم صدیقی) - - \ No newline at end of file