From 28804ca5414d7e777acc51ff816868081e713d72 Mon Sep 17 00:00:00 2001
From: Frederic Guillot \nОсенью \nassertTrue(strpos($feed->items[2]->getContent(), " \n«До́ктор Жива́го» ") === 0);
+ $this->assertTrue(strpos($feed->items[3]->getContent(), " \n«Геро́й на́шего вре́мени» \n(написан в 1838—1840) — знаменитый роман \ndisableContentFiltering();
+ $feed = $parser->execute();
+ $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0);
+ $this->assertTrue(strpos($feed->items[1]->getContent(), " \nОсенью \nassertTrue(strpos($feed->items[2]->getContent(), " \n«До́ктор Жива́го» ") === 0);
+ $this->assertTrue(strpos($feed->items[3]->getContent(), " \n«Геро́й на́шего вре́мени» \n(написан в 1838—1840) — знаменитый роман \ndisableContentFiltering();
+ $feed = $parser->execute();
+ $this->assertTrue(strpos($feed->items[0]->getContent(), "В наброске предисловия к «Войне и миру» Толстой\nписал, что в 1856 г.") === 0);
+ $this->assertTrue(strpos($feed->items[1]->getContent(), " \nОсенью \nassertTrue(strpos($feed->items[2]->getContent(), " \n«До́ктор Жива́го» ") === 0);
+ $this->assertTrue(strpos($feed->items[3]->getContent(), " \n«Геро́й на́шего вре́мени» \n(написан в 1838—1840) — знаменитый роман \n is preferred over \nОсенью \ndisableContentFiltering();
+ $feed = $parser->execute();
+ $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // 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(), ' 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(' Хабр, обсуждение фейлов на работе: reaferon: Интернет-магазин с оборотом более 1 млн. в месяц. При округлении цены до двух знаков после запятой: $price = round($price,2); была допущена досадная опечатка $price = rand($price,2); Бывший директор АНБ, генерал Майкл Хэйден снова показал себя во всей красе. \nОсенью \nitems[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);
+
+ // \nОсенью \ndisableContentFiltering();
+ $feed = $parser->execute();
+ $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // 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 ... \nОсенью \n is preferred over Another year is coming') === 0);
+ $this->assertTrue(strpos($feed->items[1]->getContent(), " \nОсенью \ndisableContentFiltering();
$feed = $parser->execute();
- $this->assertNotEmpty($feed->items);
- $this->assertTrue(strpos($feed->items[1]->getContent(), ' Sky watchers in Europe') === 0);
+ $this->assertTrue(strpos($feed->items[1]->getContent(), "Осенью 1865 года, потеряв все свои\nденьги в казино") === 0); // Хабр, обсуждение фейлов на работе: 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 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 = '
+Осенью
+
+1865
+года
+
+, потеряв все свои деньги в
+
+казино
+
+, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле
+
+1864 года
+
+, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая».
+
+«Геро́й на́шего вре́мени»
+(написан в 1838—1840) — знаменитый роман
+Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в
+Санкт-Петербурге,
+в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров
+[1].
+
+Осенью
+
+1865
+года
+
+, потеряв все свои деньги в
+
+казино
+
+, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле
+
+1864 года
+
+, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая».
+
+Осенью
+
+1865
+года
+
+, потеряв все свои деньги в
+
+казино
+
+, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле
+
+1864 года
+
+, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая».
+
+«Геро́й на́шего вре́мени»
+(написан в 1838—1840) — знаменитый роман
+Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в
+Санкт-Петербурге,
+в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров
+[1].
+
+Осенью
+
+1865
+года
+
+, потеряв все свои деньги в
+
+казино
+
+, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле
+
+1864 года
+
+, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая».
+
+«Геро́й на́шего вре́мени»
+(написан в 1838—1840) — знаменитый роман
+Михаила Юрьевича Лермонтова, классика русской литературы. Впервые роман был издан в
+Санкт-Петербурге,
+в типографии Ильи Глазунова и Кº, в 1840 г., в 2 книгах. Тираж 1000 экземпляров
+[1].
+\nИстория создания\n
\n\nДоктор Живаго\n
\n\nГерой нашего времени\n
\nИстория создания\n
\n\nДоктор Живаго\n
\n\nГерой нашего времени\n
\nИстория создания\n
\n\nДоктор Живаго\n
\n\nГерой нашего времени\n
\nИстория создания\n
\n\nИстория создания\n
\n\nИстория создания\n
\n\nИстория создания\n
\n\nИстория создания\n
\n
+Герой нашего времени
+
+
+Герой нашего времени
+
+
+Герой нашего времени
+
+
- Horst JENS, Gregor PRIDUN, Michael OLP und Dr. WERNER plaudern über freie Software andere Nerd-Themen.
-
-
-
-
- >
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
-
-
-
- >
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-
- Horst JENS, Gregor PRIDUN und Florian SCHWEIKERT plaudern über freie Software andere Nerd-Themen.
-
-
-
-
- 0:00 Begrüßung, Sponsorenhuldigung
-
-
- ]]>
-
- Horst JENS, Gregor PRIDUN, Sven GUCKES, Ferry und Fabio KUNST plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-
- Horst JENS, Gregor PRIDUN und Christoph SCHINDLER plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-SuperfreakonomicsThink like a freak von den Freakonomics Podcastern/Autoren
-
- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
-
-
-
-
-
- ]]>
-
- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Florian SCHWEIKERT, Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Florian SCHWEIKERT, Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Sven GUCKES und Michael EBNER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- >
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- Shownotes sind in Arbeit
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- tes in Arbeit
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Harald PICHLER und Sven GUCKES plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier 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
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Florian SCHWEIKERT und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Johnny ZWENG, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- >
-
- ]]>
- Horst JENS plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- >
-
- ]]>
- Horst JENS plaudert über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
- ]]>
- Horst JENS plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- >
-
- ]]>
- Florian SCHWEIKERT, Horst JENS und Chritian HAUMER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN und Horst JENS plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN und Horst JENS plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN, Horst JENS, Harald PICHLER und Albert KNORR plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN, Horst JENS, Harald PICHLER, Ralf SCHLATTERBECK, Jörg WUKONIG und Roman SCHLEICHERT plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Harald PICHLER und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
-
- >
-
- ]]>
- Greor PRIDUN, Horst JENS und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN, Horst JENS, Harald PICHLER und Jörg WUKONIG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN, Horst JENS, Harald PICHLER und Florian SCHWEIKERT plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN, Horst JENS, Harald PICHLER, Johnny ZWENG und Christoph SCHINDLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
- Greor PRIDUN, Horst JENS, Harald PICHLER, Florian SCHWEIKERT, Johnny ZWENG und Stefan PIETRASZACK plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
- >
-
- ]]>
- Greor PRIDUN und Horst JENSHARALD plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN und Horst JENS und Harald PCHLER plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Greor PRIDUN und Johnny ZWENG plaudern über freie Software andere Nerd-Themen.
-
- Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Johnny ZWENG und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Greor PRIDUN und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Thomas PERSL, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Greor PRIDUN, Harald PICHLER, Johnny ZWENG und Martin MAYR plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT und Greor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT und Harald PICHLER plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Andreas BIDER plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern: Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Harald PICHLER und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Horst JENS, Bernd SCHLAPSI und Hop erzählen Gregor PRIDUN von der Europython Konferenz undplaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Johnny ZWENG und Gregor PRIDUN plaudern über freie Software andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Johnny ZWENG, Horst JENS und Gregor PRIDUN plaudern über freie Software, Kickstarter-Projekte, schlechte Laune, Kinofilme, Bitcoins und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
- Shownotes sind in Arbeit
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software, Bitcoins und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
- Shownotes sind in Arbeit
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG plaudern mit Andreas LEHRBAUM über freie Software, Bitcoins und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
- Shownotes sind in Arbeit
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern mit Florian SCHWEIKERT und Johnny ZWENG über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern mit Florian SCHWEIKERT über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Horst JENS und Johnny ZWENG Florian SCHWEIKERT und Thomas KRONSTEINER plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Horst JENS und Johnny ZWENG Sven GUCKES, Motz und Gäste plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN und Florian Schweikert und Motz und Horst JENS plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
-
-
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
-
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- Gregor PRIDUN und Horst JENS plaudern über freie Software und andere Nerd-Themen. Bitcoin News mit Andreas PETERSSON und Andreas LEHRBAUM.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
-
-
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
-
- Gregor PRIDUN, Florian SCHWEIKERT, Johnny ZWENG, Andreas PETERSSON und Horst JENS plaudern über freie Software sowie .
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN und Horst JENS plaudern über freie Software sowie andere Nerd-Neuigkeiten. Interview: Andrea MAYR. Bitcoin-News: Andreas LEHRBAUM und Markus
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, Peter SCHLEINZER, Christoph Schindler und Überraschungsgast Harald PICHLER plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, und Überraschungsgast Christoph Schindler (Hop) plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, Thomas KRONSTEINER, und FLorian SCHWEIKERT plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- Gregor PRIDUN, Horst JENS, Johnny ZWENG, FLorian SCHWEIKERT, Peter SCHLEINZER und Andreas LEHRBAUM (Bitcoinnews) plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- Horst JENS, Johnny ZWENG und Harald PICHLER plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Horst JENS plaudert über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS und das Bitcoin-News Team Andreas PETERSSON und Andreas LEHRBAUM plaudern über freie Software sowie andere Nerd-Neuigkeiten.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- >
-
- 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:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
- ]]>
-
- Gregor PRIDUN, Horst JENS, Johnny ZWENG und Andreas LEHRBAUM trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, Florian SCHWEIKERT, Andreas LEHRBAUM und Gäste trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
- Harald PICHLER, Horst JENS, Florian SCHWEIKERT und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
- Gregor PRIDUN, Horst JENS, Martin MARY, Florian SCHWEIKERT und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
- ]]>Afrika Großbritannien und hat u.a. Haggis gegessen und hat sich rundum sicher und beobachtet gefühlt.
-
- Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
- Horst JENS Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
-
-
-
-
- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
- 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:
-
-
-
-
-
-
- ]]>
- 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:
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-
-
-
-
- ]]>
- 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:
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-siehe auch Themensammlung auf google+
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Martin MAYR und Florian SCHWEIKERT und Patrick trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-siehe auch Themensammlung auf google+
-
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN, Martin MAYR und Johnny ZWENG trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Florian SCHWEIKERT, Johnny ZWENG und Christopher PARR trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-siehe auch Themensammlung auf reddit
-
-
-
-
]]>
- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
- ]]>
- Horst JENS und Gregor PRIDUN trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
- ]]>
- Horst JENS, Gregor PRIDUN und Martin MAYR trinken Bier und plaudern über freie Software sowie andere Nerd-Themen.
-
- Bitte Flattern:
-
-
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
-
-
- ]]>
-
-
- Horst JENS, Gregor PRIDUN, Martin MAYR, Johnny ZWENG und Stargast Marlena plaudern über freie Software und andere Nerd-Themen.
-
-
Bitte Flattern:
-
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
- ]]>
-
-
- Horst JENS, Gregor PRIDUN, Martin MAYR und Peter SCHLEINZER plaudern über freie Software
-
-
Bitte Flattern:
-
-
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-siehe auch Themensammlung auf reddit
-
-
-
-
-
-
-
- ]]>
- 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:
- )
-
-
-
- ]]>
- 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:
- )
-
-
-
-
-
- ]]>
- 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 )
-
-
-
- ]]>
- 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:
-
-
-
-
- ]]>
- 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:
-
-
-
-
-
- ]]>
-
-
- 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:
-
-
-
-
-
-
- ]]>
- 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:
-
-
- ]]>
-
- 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:
-
-
-
- ]]>
- 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:
-
-
-
- ]]>
- siehe auch Themensammlung auf Google+
- Mehr Information gibt es in den Shownotes
-Hier das Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
- ]]>
- Siehe auch Themensammlung zu dieser Folge auf Google+
- Sie können diese Podcastfolge per Flattr unterstützen.
- Inhaltsverzeichnis ohne Anspruch auf Vollständigkeit:
-
-
-
-
-
-
-
- ]]>
- Siehe auch Themensammlung zu dieser Folge auf Google+
- Sie können diese Podcastfolge per Flattr unterstützen.
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
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.
]]> -Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>-
Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>- [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)
Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Of the (Iconfactory
- -Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>Yell at us via the Twitter accounts above (or the same names on ADN). Loudly.
]]>rvm upgrade ruby-1.9.3-p286 ruby-1.9.3-p327
better_errors
: https://github.com/charliesome/better_errors
-
-.ruby-version
erlaubt die Verwendung einer Ruby-Version pro Verzeichnis (https://github.com/sstephenson/rbenv#rbenv-local)shims
: https://github.com/sstephenson/rbenv#understanding-shimscd
Kommando nicht überschreiben, ist einfach saubererActionSupport::Concerns
macht mehr als nur include/extend
, nämlich auch Dependency Managementbundle exec
leben: bundle install --binstubs
conference.jabber.org
: Group-Chat Service kostenlos, wenn man das mal brauchen sollte ;-)bundle console
: http://gembundler.com/v1.2/bundle_console.htmllogging
Gem https://github.com/TwP/loggingSynopsis: Heute geht es um mruby, C-Hacking und Bytecode-Compiler
- -require
mgem
(https://github.com/bovi/mgem)attr_accessor
und andere Introspection
-FeaturesBTW: Jan Lehnardt ist jetzt bei 'The Couch Firm' - http://thecouchfirm.com/
-]]>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.
- -flog
, flay
, heckle
class_eval
vs define_method
:
-http://tenderlovemaking.com/2013/03/03/dynamic_method_definitions.htmlmethod
-MethodeActiveSupport::Notifications
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.
- -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!
-]]>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)
Le fichier de mes super todolist est disponible ici… au format illustrator ou pdf vous pouvez les imprimer, modifier comme vous voulez.
- - -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:
- - - - - - - -]]>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…
-]]>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.
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
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]
-]]>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
- - - - -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 ^^
-]]>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…
-]]>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
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
-]]>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 Meshuggah – Koloss
Comme d’hab tous les commentaires et insultes sont les bienvenus
-]]>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:
-Download 3.5.1 or visit Dashboard → Updates in your site admin to update now.
-]]>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.
-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.
-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.
-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.
-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.
-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.
-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!
-]]>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:
- -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.
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.
-]]>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).
-]]>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
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
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 2. At 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
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:
-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!
-]]>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:
-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):
-post__in
. (#13729)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!
-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!
-]]>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:
-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
+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +
]]>+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +
]]>+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +
]]>+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +
]]>+Осенью + +1865 +года + +, потеряв все свои деньги в + +казино + +, не в состоянии оплатить долги кредиторам, и стараясь помочь семье своего брата Михаила, который умер в июле + +1864 года + +, Достоевский планирует создание романа с центральным образом семьи Мармеладовых под названием «Пьяненькая». +
]]>