forked from imathis/octopress
-
Notifications
You must be signed in to change notification settings - Fork 4
/
atom.xml
2677 lines (2103 loc) · 126 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Binärgewitter]]></title>
<link href="http://blog.binaergewitter.de/atom.xml" rel="self"/>
<link href="http://blog.binaergewitter.de/"/>
<updated>2013-08-16T21:35:28+02:00</updated>
<id>http://blog.binaergewitter.de/</id>
<author>
<name><![CDATA[Binärgewitter Crew]]></name>
<email><![CDATA[[email protected]]]></email>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #63 - keiner mag die Esos]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/08/16/binaergewitter-talk-number-63-keiner-mag-die-esos/"/>
<updated>2013-08-16T08:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/08/16/binaergewitter-talk-number-63-keiner-mag-die-esos</id>
<content type="html"><![CDATA[<p>Gut dass Ingo diesmal wieder dabei ware sonst hättet ihr den Atompodcast hören müssen, so geht es aber in gewohnt unlustigerweise über Mail made in Germany, über das Beenden von Dingen und Schildkröten
und jeder Menge Techniknews.</p>
<ul>
<li><a href="http://xenim.imake.io/chatlog/binaergewitter-BGT063">Chatlog</a></li>
</ul>
<h2>Tumblrs der Woche</h2>
<ul>
<li><a href="http://pofallabeendetdinge.tumblr.com/">Pofalla beendet Dinge</a></li>
<li><a href="http://chantalismus.tumblr.com/">Chantalismus</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/German_name#Forenames">Wookiepedia</a></li>
</ul>
</li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://24.media.tumblr.com/f8d920c7a4c54240197957dcf7ca5a35/tumblr_mrgjne4GFZ1sfu1slo1_500.jpg">Lotti die Schnappschildkroete</a>
<ul>
<li><a href="http://www.abendzeitung-muenchen.de/inhalt.jagd-auf-alligatorschildkroete-schnappschildkroete-lotti-ins-sea-life-nach-muenchen.01916bec-e3c8-45a1-81a8-b7cef289500c.html">Käseblatt</a></li>
</ul>
</li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/Kim-Dotcom-kuendigt-sicheren-E-Mail-Dienst-an-1934785.html">Dotcom der Woche</a></li>
<li>United Internet und Telekom verschlüsseln auf dem Transportweg
<ul>
<li>Mail in Germany</li>
<li>Wie Anbieter alle schon immer (SMTP+TLS)</li>
<li>Marc setzte z-push auf
<ul>
<li><a href="http://baikal-server.com">Baikal Server</a></li>
<li><a href="https://github.com/dupondje/PHP-Push-2">PHP-Push-2</a></li>
</ul>
</li>
<li><a href="http://www.syncroton.org/wiki/Main_Page">Syncronton</a></li>
</ul>
</li>
<li><p><a href="http://www.heise.de/newsticker/meldung/Hyperloop-Elon-Musk-stellt-Rohrpost-fuer-Menschen-vor-1934205.html">Innovation der Woche: Menschen Rohrpost</a></p>
<ul>
<li><a href="https://medium.com/jog-with-a-blog/1f283f8545fa">Explaining the Hyperloop in simple terms</a></li>
<li><a href="http://opensourceecology.org/">Open Source Ecology</a></li>
</ul>
</li>
<li><p><a href="http://blog.opensecurityresearch.com/2013/08/remote-code-execution-on-wired-side.html">Wireless Authentication Server Compromise</a></p></li>
<li><a href="http://www.heise.de/ix/meldung/Widerstand-gegen-das-WLAN-der-Schweizer-Bahn-1936496.html">WLAN bei der SBB</a></li>
<li><a href="http://news.nationalgeographic.com/news/2011/03/110309-humans-men-penises-spines-dna-genome-science/">Menschlicher Penis war frueher dornig - und warum er jetzt nicht mehr vorhanden ist</a></li>
<li><a href="http://www.v3.co.uk/v3-uk/news/2288595/cyber-criminals-target-the-dalai-lama-website-with-java-watering-hole-exploit">Internet Dalai Lama angegriffen</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Serfdom_in_Tibet_controversy">Dalail</a></li>
</ul>
</li>
<li><a href="http://www.pro-linux.de/news/1/20137/projekt-open-root-server-reanimiert.html">open root server projekt wieder da</a>
<ul>
<li><a href="https://gist.github.com/rb2k/6243781">Marc’s IP Country Ruby Krepel</a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/business/2013/08/welcome-to-the-future-new-zealand-approves-permit-for-jet-pack/">Endlich! Echte Jetpacks</a></li>
<li><a href="http://blog.hipchat.com/2013/08/12/hipchat-search-now-powered-by-elasticsearch/">Hipchat powered by Elasticsearch</a></li>
<li><a href="http://coding2learn.org/blog/2013/07/29/kids-cant-use-computers/">Kids can’t use computers</a></li>
<li><a href="https://spideroak.com/blog/20130812192940-private-and-encrypted-storage-for-bitcoin-spideroak-gives-it-a-try">Spideroak akzeptiert Bitcoin</a></li>
<li><a href="http://www.python.org/dev/peps/pep-0450/">PEP 450 Statistics Module in Python</a></li>
<li><a href="http://arstechnica.com/security/2013/08/google-confirms-critical-android-crypto-flaw-used-in-5700-bitcoin-heist/">Android macht crypto falsch</a>
<ul>
<li><a href="http://missingm.co/2013/07/identical-droplets-in-the-digitalocean-regenerate-your-ubuntu-ssh-host-keys-now/">Digitalocean</a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/science/2013/08/online-comment-systems-reveal-multiple-layers-of-social-bias/">Online Kommentare stimmen eh nie!</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Google-E-Mail-an-Gmail-Verzicht-auf-Privatsphaere-1935892.html">wer an Gmail schickt hat pech gehabt</a>
<ul>
<li><a href="https://www.google.com/settings/u/0/ads?hl=de&sig=ACi0TCgC-8mmp1H952ZejeTBdsMM5y6tLbQNvHwctkgYDlTCKNLdVUy-gcIzOVkXg9QE_hGFfDyH2sn7jPoLSL8WLYxyX_TYcw">targeted Advertising deaktivieren bei google</a></li>
</ul>
</li>
<li><a href="http://www.spacex.com/news/2013/08/14/grasshopper-100m-lateral-divert-test">SpaceX HOLY FUCK</a></li>
<li><a href="https://issues.apache.org/jira/browse/LUCENE-5168">G1 und Lucene werden keine Freunde</a></li>
<li><a href="http://www.bbc.co.uk/news/technology-23665490">London Trash Bin Rage</a></li>
<li><a href="http://www.techdirt.com/articles/20130805/02354124062/us-government-war-hackers-backfires-now-hackers-wont-work-us-government.shtml">Duh der Woche - Wenn du die hacker hackst dann arbeiten sie nicht mehr fuer dich</a></li>
<li><a href="http://people.xiph.org/~xiphmont/demo/daala/demo3.shtml">Daala erklärt v3</a></li>
<li><a href="http://haxit.blogspot.de/">Hacking Wifi SD Cards for Fun and Profit</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="https://speakerdeck.com/janogonzalez/ruby-for-java-minds">Ruby for Java minds</a></li>
<li><a href="http://www.groenaz.de/monkey-island-getwittert/">Die Geschichte von Monkey Island getwittert</a></li>
<li><a href="http://www.elasticsearch.org/blog/managing-relations-inside-elasticsearch/">Managing relations inside Elasticsearch</a></li>
<li><a href="http://en.wikipedia.org/wiki/Seasteading_Institute#Seasteading_Institute">Seasteading</a></li>
<li><a href="http://mentalfloss.com/article/32127/decimal-time-how-french-made-10-hour-day">Alternative Zeitbeschreibungen</a></li>
<li><a href="http://blogs.smithsonianmag.com/science/2013/08/this-is-how-your-brain-becomes-addicted-to-caffeine/">How your brain becomes addicted to caffeine</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li><a href="https://mediacru.sh/demo">Gifs nehmen Platz weg. Platz ist wichtig.</a>
<ul>
<li><a href="http://www.kickstarter.com/projects/374397522/apngasm-foss-animated-png-tools-and-apng-standardi">Kickstarter für apng</a></li>
</ul>
</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://www.coffitivity.com/">Coffitivity</a></li>
<li><a href="https://maps.google.com/maps?hl=en&ll=51.492159,-0.19092&spn=0.005291,0.013937&sll=51.492140,-0.193028&layer=c&cid=12502927659667388442&panoid=c9UMhWP_MWm9U0L48xEjYw&cbp=13,291.8,,0,18.86&gl=US&t=m&cbll=51.492132,-0.192862&z=17">Enter the Tardis via Google Maps</a></li>
<li><a href="http://en.ilovecoffee.jp/posts/view/89">8 things worth knowing about eating sushi</a></li>
<li><a href="http://fritz.box//html/capture.html">Fritzbox</a></li>
<li><a href="http://amzn.to/14gGwXv">Quest Bars</a>
<ul>
<li><a href="http://www.questproteinbar.com/">Internet</a></li>
<li><a href="http://www.meandmydiabetes.com/2012/03/03/high-fiber-foods-and-blood-sugar-quest-protein-bart-interview/">Komisches Interview</a></li>
</ul>
</li>
<li><a href="http://www.namecheap.com/">Namecheap Dyndns</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #62 - Krepel ist keine schmackhafte Backware]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/08/09/binaergewitter-talk-number-62-krepel-ist-keine-schmackhafte-backware/"/>
<updated>2013-08-09T13:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/08/09/binaergewitter-talk-number-62-krepel-ist-keine-schmackhafte-backware</id>
<content type="html"><![CDATA[<p>Heute ohne Ingo aber mit dem Mailthema und wie immer den News der letzten Woche…</p>
<ul>
<li><a href="http://pad.shownot.es/doc/binaergewitter-62/readonly#htmllist">komplette Shownotes mit Zeitangaben</a> - Danke <a href="https://twitter.com/schmittlauch">@schmittlauch</a></li>
<li><a href="http://xenim.imake.io/chatlog/binaergewitter-BGT062">Chatlog</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.nzz.ch/aktuell/digital/asus-gibt-windows-rt-auf-1.18126063">Windows RT</a></li>
<li><a href="http://www.heise.de/open/meldung/Firefox-23-mit-Teilen-Funktion-und-ohne-blink-1930833.html">blink</a></li>
<li><a href="http://www.mnn.com/earth-matters/climate-weather/stories/north-pole-melts-forms-lake-at-top-of-the-world">Nordpol</a></li>
<li><a href="https://github.com/search?p=3&q=mysqldump+-p&ref=searchresults&type=Code">Internetsicherheit</a><a href="https://github.com/search?p=3&q=extension:php+mysql_query+$_GET&ref=searchresults&type=Code"> und nochmal</a></li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/Samsung-Tizen-fuer-alles-1930958.html">Tizen again</a></li>
</ul>
<h2>Tumblr der Woche</h2>
<ul>
<li><a href="http://devsdoart.com/">Devs do Art</a></li>
<li><a href="http://securityreactions.tumblr.com/post/57703935169/this-happens-every-time-we-draw-network-diagrams-on-the">SecurityReactions</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://sekurak.pl/hp-laserjet-pro-printers-remote-admin-password-extraction/">HP pwnage</a>
<ul>
<li><a href="http://reddit.com/r/shittyadvice">einfach mal</a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/tech-policy/2013/08/researchers-say-tor-targeted-malware-phoned-home-to-nsa/">Alles Tor wurde geowned</a>
<ul>
<li><a href="http://www.twitlonger.com/show/n_1rlo0uu">Original Artikel</a></li>
</ul>
</li>
<li><a href="https://medium.com/language-lingustics/7e3b7130f131">Happy Brithday @Horse_Ebooks</a></li>
<li><a href="http://techcrunch.com/2013/08/05/bezos-not-bozos/">Bezos kauft Washtingon Post</a> <a href="http://www.washingtonpost.com/national/washington-post-to-be-sold-to-jeff-bezos/2013/08/05/ca537c9e-fe0c-11e2-9711-3708310f6f4d_story.html">derp</a></li>
<li><a href="http://blog.rockmelt.com/post/57166686461/big-company-news">Yahoo kauft Rockmelt</a>
<ul>
<li><a href="http://yahoo.tumblr.com/post/57582020969/kicking-off-30-days-of-change">30 days</a></li>
</ul>
</li>
<li><a href="http://www.playframework.com/security/vulnerability/20130806-SessionInjection">Play Framework wird gepwned</a>
<ul>
<li><a href="http://grahamhackingscala.blogspot.de/2009/11/xml-generation-with-scala.html">Scala XML Literals</a></li>
</ul>
</li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty wurde gepatcht nach unendlich viel Zeit</a></li>
<li><a href="http://www.mla.org/style/handbook_faq/cite_a_tweet">Offizieller tweet quote styleguide</a></li>
<li><a href="http://blog.elliottkember.com/chromes-insane-password-security-strategy">Chrome Passwort Sicherheit</a></li>
<li><a href="https://bitcoin.co.th/trading-suspended-due-to-bank-of-thailand-advisement/?bettertitle">Bitcoin illegal in Thailand</a></li>
<li><a href="https://www.google.com/shopping/express/about/index.html">Google Express</a></li>
<li><a href="https://bitbucket.org/multicoreware/x265/wiki/Home">x265</a>
<ul>
<li><a href="http://de.wikipedia.org/wiki/High_Efficiency_Video_Coding">HEVC</a></li>
</ul>
</li>
</ul>
<h2>Themen</h2>
<h3>Mail</h3>
<ul>
<li><a href="http://zarafa.com">Zarafa</a>
<ul>
<li>zpush</li>
<li><a href="http://www.radiotux.de/index.php?/archives/7159-RadioTux-Magazin-Juli-2011.html">RadioTux Sendung über Zarafa und z-push</a></li>
</ul>
</li>
<li><a href="https://www.namecheap.com/email/email-hosting.aspx">Namecheap Open-Xchange</a></li>
<li><a href="http://www.getsyncd.com/index.php">Getsyncd</a></li>
<li><a href="https://www.fastmail.fm/">FastMail</a></li>
<li><a href="https://www.zoho.com/">Zoho</a></li>
<li><a href="http://blog.binaergewitter.de/blog/2012/02/23/binaergewitter-talk-number-4-ich-filter-blumen/">Binärgewitter Talk #4</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://business.time.com/2012/11/15/is-dollar-cost-averaging-dumb/">Is Dollar cost averaging dumb</a></li>
<li><a href="http://awaxman11.github.io/blog/2013/08/05/what-is-the-difference-between-a-block/">Block, Proc, Lambda</a></li>
<li><a href="http://pythonforbiologists.com/index.php/29-common-beginner-python-errors-on-one-page/">29 Common beginner Python error</a></li>
<li><a href="http://www.eecs.berkeley.edu/~sylvia/papers/osdi2012_megapipe.pdf">Megapipe Paper</a></li>
<li><a href="https://charlie.bz/blog/things-that-clear-rubys-method-cache">Things that clear Ruby’s method cache</a></li>
<li><a href="http://www.datastax.com/dev/blog/lightweight-transactions-in-cassandra-2-0">Lightweight transactions in Cassandra 2.0</a></li>
<li><a href="http://www.wired.com/underwire/2013/08/xkcd-time-comic/">xkcd time</a>
<ul>
<li><a href="http://geekwagon.net/projects/xkcd1190/">Viewer</a></li>
</ul>
</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="https://github.com/shackspace/soundflower/blob/master/backend/soundflower/mpdrunner.py">MPD als Streaming abstraktion (am Beispiel Soundflower)</a></li>
<li><a href="https://github.com/travisjeffery/timecop">Timecop Gem</a></li>
<li><a href="https://github.com/defunkt/fakefs">FakeFS</a></li>
<li><a href="https://www.bloc.io/ruby-warrior/#/">Ruby Warrior</a></li>
<li><a href="http://gifdanceparty.com/">Gifdanceparty</a></li>
<li><a href="http://en.wikipedia.org/wiki/Telecomix#Blackthrow">Blackthrow bootstrapping</a></li>
<li><a href="http://www.imdb.com/title/tt2480514/">In the flesh</a></li>
<li><a href="https://www.youtube.com/watch?v=ntlI-pDUxPE">Parcours robot</a></li>
<li><a href="http://wahrsagercheck.wordpress.com/2013/07/29/so-funktioniert-astrologie-immer/">Komplettloesung von allen Astrologie Dingen</a></li>
<li><a href="https://itunes.apple.com/de/app/ikea/id508738026?l=en&mt=8">Ikea iOS App</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #61 - Linuscrisy]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/08/02/binaergewitter-talk-number-61-linuscrisy/"/>
<updated>2013-08-02T11:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/08/02/binaergewitter-talk-number-61-linuscrisy</id>
<content type="html"><![CDATA[<p>Trotz Sommerloch und Temperaturen jenseits der 30 Grad im Studio senden wir fröhlich weiter. Diesmal ohne Marc aber mit Pfleidis Test des ResPi als Mediacenter und wir diskutieren über Dikaturen, Amazons
Umgang mit Kunden und Überwachung der (eigenen) Kinder.</p>
<ul>
<li><a href="http://xenim.imake.io/chatlog/binaergewitter-BGT061">Chatlog</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/Herzschrittmacher-Hacker-Barnaby-Jack-stirbt-eine-Woche-vor-Black-Hat-Auftritt-1925016.html">Barnaby Jack</a>
<ul>
<li>WP: <a href="https://de.wikipedia.org/wiki/Science-Fiction">Science Fiction</a></li>
<li><a href="http://www.amazon.de/gp/product/B00BBDGU4A/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B00BBDGU4A&linkCode=as2&tag=trektrip">Homeland</a></li>
<li><a href="http://www.amazon.de/gp/product/B009DW9G9M/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B009DW9G9M&linkCode=as2&tag=trektrip">Star Trek TNG in HD</a></li>
<li><a href="http://dashburst.com/humor/star-trek-predicting-the-future-since-1966/">Star Trek: Predicting the Future since 1966</a></li>
</ul>
</li>
</ul>
<h2>Tumblr der Woche</h2>
<ul>
<li><a href="http://lifeofastrangerwhostolemyphone.tumblr.com/">life of a stranger who stole my phone</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://blog.samuellevy.com/post/46-do-i-look-like-i-give-a-shit-public-licence.html">Die ‘Do I look like I give a shit’ Lizenz</a></li>
<li><a href="http://de.demo.openslides.org/projector/dashboard/">OpenSlides</a> via Eric</li>
<li><a href="http://blog.gtvhacker.com/2013/chromecast-exploiting-the-newest-device-by-google/">Root-Shell auf Chromecast</a>
<ul>
<li><a href="http://wiki.gtvhacker.com/index.php/Google_Chromecast#Bootloader_Exploit_Package">Exploit</a></li>
<li><a href="http://www.ifixit.com/Teardown/Chromecast+Teardown/16069/1%7C">iFixit Teardown</a></li>
</ul>
</li>
<li><a href="http://tox.im/">Tox: Not Skype</a></li>
<li><a href="http://www.theguardian.com/world/2013/jul/31/nsa-top-secret-program-online-data">Mehr NSA evil’ness - dieses mal XKeyscore</a></li>
<li><a href="http://queue.acm.org/detail.cfm?id=2508864">Mehr verschluesselung ist nicht die Loesung (?)</a></li>
<li><a href="http://www.theinquirer.net/inquirer/news/2285529/lenovo-banned-from-supplying-western-intelligence-services">Lenovo darf keine Geraete mehr an NSA et.al. verkaufen wegen backdoor verdacht</a></li>
<li><a href="http://www.gulli.com/news/22116-amazon-schliesst-kunden-aus-die-zu-oft-ware-zuruecksenden-2013-07-31">Amazon schliesst Kunden aus die zu oft von ihrem rueckgaberecht gebrauch machen</a></li>
<li><a href="http://www.chip.de/news/Filip-Kinder-Smartwatch-zur-Totalueberwachung_63319469.html">Endlich totalueberwachung fuer Kinder - ‘SmartWatch’</a></li>
<li><a href="http://qz.com/108920/the-materials-breakthrough-that-might-lead-to-computers-thousands-of-times-faster/">Magnetit macht [bald] alle computer 1000 mal schneller nachdem Silizium physikalische grenzen erreicht hat</a></li>
<li><a href="http://hg.python.org/peps/rev/fb24c80e9afb">Python PEP8 update</a></li>
<li><a href="http://coreos.com/">CoreOS</a></li>
<li><a href="http://arstechnica.com/tech-policy/2013/07/man-gets-ransomware-porn-pop-up-turns-self-in-on-child-porn-charges/">Mann zeigt sich nach Ransomware Pop-up selbst an</a></li>
<li><a href="http://torrentfreak.com/uk-porn-filter-will-censor-other-content-too-isps-reveal-130726/"><em>Überraschung</em> UK Ministerium für Internetpornografie will mehr als nur Porn zensieren</a>
<ul>
<li><a href="http://www.wired.co.uk/news/archive/2013-07/27/pornwall">Wired Artikel</a></li>
<li><a href="https://www.openrightsgroup.org/blog/2013/sleepwalking-into-censorship"> Open Rights Group Artikel </a></li>
</ul>
</li>
<li><a href="http://kotaku.com/how-chinese-ingenuity-destroyed-salad-bars-at-pizza-hut-834835079">Warum es in China keine Pizza Hut Salatbars mehr gibt</a></li>
<li><a href="http://arstechnica.com/gadgets/2013/08/usb-3-1-spec-finalized-horns-in-on-thunderbolts-turf-with-10gbps-speeds/">USB 3.1 ist fertig</a></li>
</ul>
<h2>Themen</h2>
<h3>Raspberry Pi als HTPC</h3>
<h4>Probleme</h4>
<ul>
<li>Probleme den Update Server zu finden</li>
<li>Schlechte audio Qualität über Klinke
<ul>
<li><a href="http://www.raspyfi.com/raspberry-pi-usb-audio-fix/">Audio Fix Post</a></li>
<li><a href="http://docs.mopidy.com/en/latest/installation/raspberrypi/#fixing-audio-quality-issues">Fixing audio quality issues</a></li>
<li><a href="https://github.com/Hexxeh/rpi-update">RPI Update Tool</a></li>
<li>Alternativ: USB Audio interface</li>
</ul>
</li>
</ul>
<h4>Hardware</h4>
<ul>
<li><a href="http://www.amazon.de/dp/B008PT4GGC?tag=pfleidi-21">Der Kuchencomputer</a></li>
<li><a href="http://www.amazon.de/dp/B00A7BGXGW?tag=pfleidi-21">Gehäuse</a></li>
<li><a href="http://www.amazon.de/dp/B008O7RH5C?tag=pfleidi-21">HDMI Adapter mit Audio</a></li>
<li><a href="http://elinux.org/RPi_VerifiedPeripherals#Working_power_Adapters">Netzteile</a>
<ul>
<li><a href="http://www.amazon.de/dp/B00B0ZNF5G?tag=pfleidi-21">pfleidi seines</a></li>
</ul>
</li>
<li><a href="http://www.amazon.de/dp/B003MTTJOY?tag=pfleidi-21">USB Wifi Stick</a></li>
<li><a href="http://www.amazon.de/dp/B000KTBF6Y?tag=pfleidi-21">Tesa Power Strips</a></li>
</ul>
<h4>Installation</h4>
<ul>
<li><a href="http://wiki.xbmc.org/?title=Raspberry_Pi">RP im XBMC Wiki</a></li>
<li><a href="http://www.raspbmc.com/">Raspbmc</a></li>
<li><a href="https://github.com/Hexxeh/rpi-update">RPI-Update</a></li>
</ul>
<h4>Fernbedienungen</h4>
<ul>
<li><a href="http://wiki.xbmc.org/index.php?title=Keyboard_controls">Keyboard Controls</a></li>
<li><a href="http://learn.adafruit.com/using-an-ir-remote-with-a-raspberry-pi-media-center/hardware">RP mit Fernbedienung</a>
<ul>
<li><a href="http://aron.ws/projects/lirc_rpi/">Lirc GPIO Treiber</a></li>
<li><a href="http://www.conrad.de/ce/de/product/171115/IR-Empfaenger-Modul-Vishay-TSOP-4838-Wellen-Laenge-950-nm">3,3V IR-Empfänger</a></li>
<li><a href="http://forum.stmlabs.com/showthread.php?tid=1954">Weitere Anleitung</a></li>
<li><a href="http://druss.pp.ua/2012/08/raspbmc-lirc-gpio-xbmc-en/">Und noch eine</a></li>
<li><a href="http://www.pro-linux.de/artikel/2/1624/3,raspberry-pi-eine-erfolgsgeschichte.html">Eine auf deutsch</a></li>
<li><a href="https://www.amazon.de/dp/B005G16098/?tag=krebsco-21">Logitech K400 Tastatur + Touchpad</a></li>
</ul>
</li>
<li><a href="http://wiki.xbmc.org/index.php?title=Official_XBMC_Remote">XBMC Remote APP</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://www.mail-archive.com/[email protected]/msg39091.html">Linus ueber git rebase</a></li>
<li><a href="http://fasthorizon.blogspot.de/2013/07/the-script-kiddie-is-dead.html">The Script Kiddie is dead</a></li>
<li><a href="http://www.ctrl-verlust.net/23andme-wie-ich-fur-todkrank-erklart-wurde-und-mich-wieder-gesund-debuggte/">Wie ich für todkrank erklärt wurde und mich wieder gesund debuggte</a></li>
<li><a href="http://kestas.kuliukas.com/RainbowTables/">How Rainbow Tables work</a></li>
<li><a href="https://www.amazon.de/dp/0465067107?tag=pfleidi-21">The design of everyday things</a></li>
<li><a href="https://twitter.com/inschka/status/362856045359529985/photo/1">Face Palm der Woche: Homöopatisches Impfen</a></li>
<li><a href="http://thedoghousediaries.com/5263">A Comprehensive List of things That Help me calm down [doghousediaries]</a></li>
<li><a href="https://speakerdeck.com/dherman/rust-low-level-programming-without-the-segfaults">Rust: Low-level programming without the segfaults</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li><a href="http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Thunderbird">Thunderbird Profil</a></li>
<li><a href="http://blog.theoldreader.com/post/56798895350/desperate-times-call-for-desperate-measures">OldReader (schon wieder!)</a>[makefu]
<ul>
<li><a href="https://inoreader.com/">inoreader als alternative</a></li>
</ul>
</li>
<li>Arch Linux benennt bei Upgrade /grub/menu.lst um</li>
<li>1&1 Server und IPv6</li>
<li>DVB-T
<ul>
<li><a href="http://www.amazon.de/dp/B005HPVWSM?tag=pfleidi-21">Xoro Receiver</a></li>
</ul>
</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://www.laszlo.nu/post/553591402/how-to-kill-an-unresponsive-ssh-session">How to kill an unresponsive SSH Session</a></li>
<li><a href="http://www.developerarguments.com/">Developer Arguments</a></li>
<li><a href="http://imgur.com/a/8IrJ4">4chan /v/ Battle stations</a></li>
<li><a href="https://gpgtools.org/#gpgsuite">GPG Mail</a></li>
<li><a href="https://plus.google.com/photos/116848145484059011070/albums/5905970470721489169">Software terminology</a></li>
<li><a href="https://github.com/lukas-vlcek/bigdesk/">Bigdesk</a></li>
<li><a href="https://www.youtube.com/watch?v=q64hTNEj6KQ">Porn Sex vs Real Sex: The difference explained with food</a></li>
<li><a href="http://vimeo.com/m/71278954">The future of programming</a></li>
<li><a href="http://www.mobilegeeks.de/">Danke an Mobile Geeks fuers pluggen</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #60 - Ministerium für Internetpornographie]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/07/26/binaergewitter-talk-number-60-ministerium-fuer-internetpornographie/"/>
<updated>2013-07-26T09:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/07/26/binaergewitter-talk-number-60-ministerium-fuer-internetpornographie</id>
<content type="html"><![CDATA[<p>In der Ausgabe 210 oder 60 AT beschäftigen wir uns mit Schmuddelbildern im Internet, weil die gesperrt werden außerdem gehts um die neuen Google Produkte und Mobilefunkzeugs und viel anderer Nerdkram.</p>
<ul>
<li><a href="http://xenim.imake.io/chatlog/binaergewitter-BGT060">Chatlog</a></li>
</ul>
<h2>OpenApache Graveyard</h2>
<ul>
<li><a href="http://www.pro-linux.de/news/1/20058/mesos-wird-apache-top-level-project.html">Mesos</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.zdnet.com/adult-tumblr-blogs-now-removed-from-every-form-of-search-possible-7000018295/">Tumblr: No Porno</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.bbc.co.uk/news/uk-23401076">UK will auch all den Porn verbieten</a>
<ul>
<li><a href="http://paulbernal.wordpress.com/2013/07/22/10-questions-about-camerons-new-porn-blocking/">10 Fragen ueber porn blocking</a></li>
</ul>
</li>
<li><a href="https://torrentfreak.com/paypal-cuts-off-pirate-bay-vpn-ipredator-freezes-assets-130724/">Paypal sperrt iPredator</a></li>
<li><a href="http://www.indiegogo.com/projects/ubuntu-edge">Ubuntu Edge Kraut</a></li>
<li><a href="https://people.xiph.org/~xiphmont/demo/daala/demo2.shtml">Introducing Daala part 2</a></li>
<li><a href="https://github.com/blog/1564-code-search-api">Github bringt code search API</a></li>
<li><a href="http://www.forbes.com/sites/parmyolson/2013/07/21/sim-cards-have-finally-been-hacked-and-the-flaw-could-affect-millions-of-phones/">SIM-Karten gehackt? Forbes Artikel (meh)</a>
<ul>
<li><a href="http://www.heise.de/security/artikel/DES-Hack-exponiert-Millionen-SIM-Karten-1920898.html">Heise Artike (gut)l</a>
<ul>
<li><a href="http://www.gulli.com/news/22074-sim-karten-vielfach-nicht-sicher-2013-07-22">Gulli Artikel (besser)</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/Neuer-Mobilfunkriese-O2-mischt-den-Markt-auf-1922130.html">O2 kauft Eplus</a></li>
<li><a href="http://www.vice.com/read/satanists-turned-the-founder-of-the-westboro-baptist-churchs-mom-gay">Nachträglich homogenisiert durch Satanistent</a></li>
<li><a href="http://www.hotforsecurity.com/blog/apple-developer-center-breach-100k-accounts-exposed-6626.html">Der Tuerke hat den Developer Center Gepwnd</a>
<ul>
<li><a href="http://struts.apache.org/release/2.3.x/docs/s2-016.html">Java Struts 2</a></li>
</ul>
</li>
<li><a href="http://www.rfk.id.au/blog/entry/pypy-js-first-steps/">PyPy.js</a></li>
<li><a href="http://www.google.com/intl/en/chrome/devices/chromecast/#netflix">Google Chromecast</a>
<ul>
<li><a href="https://developers.google.com/cast/">Chromecast Developer Doku</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Google-Chromecast-Noch-eine-Streaming-Architektur-1923378.html">Noch keine Streaming-Architektur</a></li>
<li><a href="http://nto.github.io/AirPlay.html#video">Airplay spec</a></li>
<li><a href="http://www.plexapp.com/getplex/">Plex</a></li>
</ul>
</li>
<li><a href="http://techcrunch.com/2013/07/24/google-unveils-the-new-nexus-7-android-powered-tablet/">Neues Nexus 7</a>
<ul>
<li><a href="http://androidandme.com/2013/06/opinions/one-year-later-the-nexus-7-has-gone-from-the-best-to-worst-tablet-ive-ever-owned/">One year later</a></li>
</ul>
</li>
<li><a href="http://phoronix.com/forums/showthread.php?81642-Native-Linux-Kernel-Module-Is-Out-For-Microsoft-exFAT">Exfat fuer Linux Kernel geleaked</a>
<ul>
<li><a href="https://github.com/rxrz/exfat-nofuse/issues/5">Github Issue</a></li>
<li><a href="http://lists.gpl-violations.org/pipermail/legal/2013-July/004100.html">E-Mail auf gpl-violations</a></li>
</ul>
</li>
<li><a href="http://status.ovh.net/?do=details&id=5070">OVH Security Fuckup</a></li>
<li><a href="http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=fr&ie=UTF-8&u=http://www.ovh.com/fr/a1136.interview-github-octave-klaba-ovh">OVH bannt Github für seine Entwickler</a></li>
<li><a href="http://www.ovh.de/dedicated_server/isgenug.xml">Is Genug Server</a>
<ul>
<li><a href="https://news.ycombinator.com/item?id=6103304">Hackernews</a></li>
</ul>
</li>
<li><a href="https://github.com/Softmotions/ejdb">EJDB</a></li>
<li><a href="http://www.nytimes.com/newsgraphics/2013/07/21/silk-road/">NY Times: The new silk road</a></li>
<li><a href="http://www.animenewsnetwork.com/interest/2013-07-24/hear-hatsune-miku-v3-sing-in-english">Hatsune Miku jetzt in Englisch (mit japanischem Akzent)</a></li>
<li><a href="http://i.imgur.com/lkWFHkU.gif">Kevin Rose Racoon toss</a>
<ul>
<li><a href="http://www.youtube.com/watch?v=hHN-f6xTzsY">Original</a></li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/BGH-verbietet-Internet-Werbung-fuer-Kinder-1919592.html">BGH verbietet Internet-Werbung fuer Kinder</a></li>
<li><a href="http://thenextweb.com/insider/2013/07/19/first-major-bitcoin-acquisition-sees-gambling-site-satoshidice-sold-for-11-5-million/">Satoshi Dice verkauft</a></li>
<li><a href="http://lauren.vortex.com/archive/001062.html">Polizei will die SSL Master Keys von Websites</a></li>
<li><a href="http://www.scip.ch/en/?vuldb.9559">Google Glasses QR Code Hack</a>
<ul>
<li><a href="https://blog.lookout.com/blog/2013/07/17/hacking-the-internet-of-things-for-good/">… Hacking the Internet of Things</a></li>
</ul>
</li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://www.businessinsider.com/prisoners-dilemma-in-real-life-2013-7">Prisoners Dilemma in real life</a></li>
<li><a href="https://sites.google.com/site/forgottenemployee/">Forgotten Employee</a></li>
<li><a href="http://michaelrbernste.in/2013/06/12/matter-anti-matter.html">Matter, anti matter and a unified theory of garbage collection</a>
<ul>
<li><a href="http://www.cs.virginia.edu/~cs415/reading/bacon-garbage.pdf">Original Paper</a></li>
</ul>
</li>
<li><a href="http://www.saurik.com/id/17">Android Masterkey Snafu</a>
<ul>
<li>“I did a cursory audit of the Android codebase looking for implementations of unzip, and I found eight separate copies of that logic.”</li>
</ul>
</li>
<li><a href="http://practicaltypography.com/">practicaltypography</a></li>
<li><a href="http://blog.lastlog.de/posts/bonding_eth0_wlan0_together_to_get_an_active_backup_link/">Bonding eth0 und wlan0 fuer ausfallsicherheit</a></li>
<li><a href="http://www.rubyflow.com/items/9606-practicing-ruby-s-public-archives">Practicing Ruby Archiv</a></li>
<li><a href="http://nick.stinemat.es/#rethink-docker-technology">Running a real site powered by docker</a></li>
<li><a href="http://www.grobmeier.de/log4j-2-performance-close-to-insane-20072013.html">Log4j 2 performance</a></li>
<li><a href="http://eprint.iacr.org/2013/448">CPU Cache Sidechannel Attack</a></li>
<li><a href="http://www.theatlantic.com/health/archive/2013/07/the-vitamin-myth-why-we-think-we-need-supplements/277947/?1">The Vitamin Myth</a></li>
<li><a href="http://gwei.org/index.php">Google Will Eat Itself</a></li>
<li><a href="http://www.petekeen.net/dns-the-good-parts">DNS the good parts</a></li>
<li><a href="http://glennstovall.com/blog/2013/06/27/angularjs-an-overview/">AngularJS, an overview</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>Plesk</li>
<li>Zoll</li>
<li>Acrobits/Sipgate-Snafu</li>
<li>theoldreader</li>
<li><a href="https://issues.jenkins-ci.org/browse/JENKINS-12235">Jenkins Bugs</a></li>
<li>Dokumentenscanner mit einfach ablegen und OCR</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="https://plus.google.com/photos/111754036279251010992/albums/5904394535094588753/5904394533565731074?pid=5904394533565731074&oid=111754036279251010992">Kekse unterschiedlich gebacken</a></li>
<li><a href="http://ricon.io/archive/2013/east.html">Ricon East Videos</a></li>
<li><a href="https://code.google.com/p/mirandaupnptool/">upnp tools</a></li>
<li><a href="http://www.sweethome3d.com/index.jsp">Sweet Home 3D</a></li>
<li><a href="https://github.com/propublica/upton">Upton</a></li>
<li><a href="http://monocle.io/">Monocle.io</a>
<ul>
<li><a href="http://blog.alexmaccaw.com/monocle">Blog Post</a></li>
</ul>
</li>
<li><a href="">arachni</a></li>
<li><a href="http://www.atrixnet.com/bs-generator.html">BS Generator</a></li>
<li><a href="http://foaas.com/">Fuck Off As A Service</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #59 - Rage dich glücklich - rage dich schlank!]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/07/19/binaergewitter-talk-59-rage-dich-gluecklich-rage-dich-schlank/"/>
<updated>2013-07-19T16:45:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/07/19/binaergewitter-talk-59-rage-dich-gluecklich-rage-dich-schlank</id>
<content type="html"><![CDATA[<p>aka Plutionium Bootstrap, aka XML ist wie Schalldämpfer an Waffen aka Es gibt nicht genügend Schimpforte um diese Sendung zu betiteln!
Damit auch die NSA wieder zuhört viele tolle Begriffe gleich am Anfang. Wir rangieren vollbesetzt durch die News der letzten Woche.</p>
<h2>A Blast from the Past</h2>
<ul>
<li>Thorium Fluessigsalzreaktoren</li>
<li><a href="http://www.extremetech.com/extreme/160131-thorium-nuclear-reactor-trial-begins-could-provide-cleaner-safer-almost-waste-free-energy">Originalartikel letzte Woche: Finnland baut experimentellen Thoriumreaktor</a></li>
<li><a href="http://de.wikipedia.org/wiki/Fl%C3%BCssigsalzreaktor">Wiki DE: Fluessigsalzreaktor</a></li>
<li><a href="http://en.wikipedia.org/wiki/Liquid_fluoride_thorium_reactor">Wiki EN: Liquid Thorium Reactor</a></li>
<li><a href="http://wiki.piratenpartei.de/AntiAtomPiraten/Argumente#Thorium-Fl.C3.BCssigsalz-Versuchsreaktor">Anti Atom Piraten</a></li>
<li><a href="http://www.vice.com/motherboard/thorium-dream">Vice doku</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/HiFi-Pionier-Amar-Bose-ist-gestorben-1917022.html">Amar Bose</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Pflege-von-Webserver-Apache-2-0-eingestellt-1917101.html">Apache 2.0</a></li>
</ul>
<h2>Fails der Woche</h2>
<ul>
<li><a href="https://code.google.com/p/android/issues/detail?id=57560">Android überträgt WLAN Passwörter an Google</a>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/Android-und-die-Passwoerter-Offene-Tueren-fuer-Spionage-1917386.html">Quelle Heise</a></li>
<li>… Speichert (in der google cloud)</li>
<li>ist standardmaessig aktiviert (zumindest bei stock android)</li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/BlackBerry-spaeht-Mail-Login-aus-1919718.html">Blackberry Mail login</a>
<ul>
<li><a href="http://nvd.nist.gov/download.cfm#CVE_FEED">XML positivbeispiel</a></li>
</ul>
</li>
</ul>
<h2>Kraut der Woche</h2>
<ul>
<li><a href="http://www.startnext.de/c3s">C3S</a></li>
</ul>
<h2>Linus Torvalds der Woche</h2>
<ul>
<li><a href="http://marc.info/?l=linux-kernel&m=137392506516022&w=2">Linus zu professionellem Verhalten</a></li>
<li><a href="https://lkml.org/lkml/2013/7/13/132">“There aren’t enough swear-words in the English language …”</a>
<ul>
<li><a href="http://blog.rebellen.info/2010/09/08/tourette-du-fotze/">Tourette du Fotze</a></li>
</ul>
</li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.ibtimes.com/apple-sued-porn-addiction-man-says-macbook-cost-his-marriage-kids-1345831">Apple verklagt wegen Porn Sucht</a></li>
<li><a href="https://twitter.com/pornelski/status/356843309118922756">ImageOptim</a></li>
<li><a href="http://blog.app.net/2013/07/15/pourover-for-app-net-is-now-available/">ADN bringt PourOver</a></li>
<li><a href="https://github.com/mame/quine-relay">Quine Relay</a></li>
<li><a href="http://www.tagesschau.de/wirtschaft/netzneutralitaet-eu100.html">Kroes macht Kehrtwende bei Netzneutralität</a></li>
<li><a href="http://choosealicense.com/">Choose a license</a>
<ul>
<li><a href="https://github.com/blog/1530-choosing-an-open-source-license">Blog Post</a></li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/Kim-Dotcoms-Mega-will-Chats-und-Mails-verschluesseln-1917033.html">Dotcom will alles verschlüsseln</a></li>
<li><a href="http://vimeo.com/56234900">Defcon Doku</a></li>
<li><a href="http://people.xiph.org/~xiphmont/demo/celt/demo3.shtml">Opus 1.1</a></li>
<li><a href="http://www.radiotux.de/index.php?/archives/7973-RadioTux-Sendung-Juli-2013.html">RadioTux Juli 2013</a></li>
<li><a href="http://motherboard.vice.com/blog/one-third-of-kenyans-now-have-a-bitcoin-wallet">Bitcoin @ Kenya</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Linux-for-Workgroups-Funktionsumfang-von-Linux-3-11-steht-1917174.html">Linux 3.11 “Linux for Workgroups”</a>
<ul>
<li><a href="http://www.h-online.com/open/news/item/Linux-for-Workgroups-Linux-3-11-s-feature-set-now-confirmed-1917712.html">h-online Artikel</a></li>
</ul>
</li>
<li><a href="https://twitter.com/igrigorik/status/353928818647498752">Tail loss probe patch</a>
<ul>
<li><a href="http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6ba8a3b19e764b6a65e4030ab0999be50c291e6c">IETF Draft</a></li>
</ul>
</li>
<li><a href="http://www.gulli.com/news/22039-hbo-meldet-vlc-player-als-illegalen-download-bei-google-2013-07-16">VLC Player muss verboten werden meint HBO</a></li>
<li><a href="http://apprenticealf.wordpress.com/">Alles ueber DRM (evasion)</a></li>
</ul>
<h2>Laserfoo</h2>
<ul>
<li><a href="https://qconnewyork.com/sites/default/files/QConNY2013_CharlieHuntMonicaBeckwith_DeepDive.pdf">Deep Dive into the G1 garbage collector</a>
<ul>
<li><a href="http://www.infoq.com/presentations/java-g1">Le Video</a></li>
</ul>
</li>
<li><a href="http://www.globule.org/publi/SODDSWA_www2008.pdf">Service-Oriented Data Denormalization for Scalable Web Applications</a></li>
<li><a href="http://www.techhive.com/article/2044495/into-the-wormhole-an-afternoon-with-eve-onlines-least-understood-demographic.html">Wurmlochleute in Eve Online</a></li>
<li><a href="http://alexstechthoughts.com/post/55085393173/stop-glorifying-hard-work-and-long-hours">Stop glorifying hard work and long hours</a></li>
<li><a href="http://en.wikipedia.org/wiki/Erikson%27s_stages_of_psychosocial_development#The_stages">Erikson’s stages of psychological development</a></li>
<li><a href="http://www.paperplanes.de//2013/6/17/a-short-story-on-human-error.html">A short story of human error</a></li>
<li><a href="http://sealedabstract.com/rants/why-mobile-web-apps-are-slow/">Why mobile web apps are slow</a></li>
<li><a href="https://www.b1-systems.de/publikationen/buecher-artikel/">gratis KVM Buch</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li><a href="http://de.wikipedia.org/wiki/Bremsen">Bremsen</a></li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="https://wiki.archlinux.org/index.php/QEMU">qemu als alternative zu Virtualbox</a></li>
<li><a href="http://git-annex.branchable.com/">git annex</a>
<ul>
<li><a href="https://campaign.joeyh.name/">campaign</a></li>
<li><a href="http://git-annex.branchable.com/assistant/">Video</a></li>
</ul>
</li>
<li><a href="http://www.youtube.com/watch?v=qVQEfZNRTVw&feature=share">Record Player with Pin and Paper</a></li>
<li><a href="https://github.com/joshbuddy/jsonpath">JSON Path</a>
<ul>
<li><a href="https://github.com/makefu/jsonpath">JSON Path for Shell</a></li>
</ul>
</li>
<li><a href="http://www.amazon.de/dp/B001UHOU12?tag=pfleidi-21">Venti</a><a href="http://amzn.to/1aUxibK">latör</a>
<ul>
<li><a href="https://www.amazon.de/dp/B003XN24GY/?tag=krebsco-21">Arctic Fan USB Ventilator</a></li>
</ul>
</li>
<li><a href="https://itunes.apple.com/de/app/wiso-steuer-2013/id538017696?l=en&mt=12">Wiso Steuer für OS X</a></li>
<li><a href="http://slimerjs.org/">SlimerJS</a></li>
<li><a href="http://www.amazon.de/dp/B009GUDVW4?tag=pfleidi-21">Wireless Munddusche</a></li>
<li><a href="https://github.com/ejholmes/restforce">RestForce</a></li>
<li><a href="http://icanblink.com/">Blink Lite</a></li>
<li><a href="https://jitsi.org/">Jitsi</a></li>
<li><a href="https://addons.mozilla.org/de/firefox/addon/bloody-vikings/">Bloody Vikings</a>
<ul>
<li><a href="http://spamgourmet.com/">Spam Grourmet</a></li>
<li><a href="https://meltmail.com/">Meltmail</a></li>
</ul>
</li>
<li><a href="http://www.amazon.de/dp/B0028NKL56?tag=pfleidi-21">Lächerliches Kaffee Equipment #51234: Reinigungsbürste mit Kühlrippen</a></li>
<li><a href="http://coppertino.com/vox/">Vox Music Player</a></li>
<li><a href="http://www.amazon.de/gp/product/B00DL1PM8U/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B00DL1PM8U&linkCode=as2&tag=trektrip">Mark Brandis 25</a>
<ul>
<li>Amazon AutoRip</li>
<li>Clamz</li>
</ul>
</li>
<li><a href="https://en.wikipedia.org/wiki/White_Coke">White Coke</a>
<ul>
<li><a href="http://www.youtube.com/watch?v=e6-B2TJN8UQ">Translation fail video</a></li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #58 - Schöpfungshöhe nicht erreicht]]></title>
<link href="http://blog.binaergewitter.de/blog/2013/07/12/binaergewitter-talk-number-58-schoepfungshoehe-nicht-erreicht/"/>
<updated>2013-07-12T10:45:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2013/07/12/binaergewitter-talk-number-58-schoepfungshoehe-nicht-erreicht</id>
<content type="html"><![CDATA[<p>Mit Pfleidi, Felix und Ingo und auch gar nicht so lang aber wieder dumm, unlustig und geschmacklos.</p>
<h2>Intro <code>00:00:00</code></h2>
<ul>
<li><a href="http://blog.binaergewitter.de/">Begrüßung zur 58ten Episode des Binärgewitter Podcast</a></li>
<li><a href="http://de.wikipedia.org/wiki/National_Security_Agency">Begrüßung der NSA</a></li>
<li>Shownotes Crowdsourcen</li>
<li><a href="http://shownot.es/">Shownot.es Projekt</a></li>
<li><a href="https://alpha.app.net/simonwaldherr">Simon Waldherr</a></li>
</ul>
<h2>Toter der Woche <code>00:02:46</code></h2>
<ul>
<li><a href="https://www.google.de/latitude/b/0">Google Latitude</a> <code>00:02:52</code></li>
<li><a href="http://de.wikipedia.org/wiki/Geofencing">Geofencing</a></li>
<li><a href="http://de.wikipedia.org/wiki/PRISM_%28%C3%9Cberwachungsprogramm%29">PRISM</a></li>
<li><a href="http://de.wikipedia.org/wiki/National_Security_Agency">NSA</a></li>
<li>„Kranke Technologien aus den Neunzigern“
<ul>
<li><a href="http://de.wikipedia.org/wiki/SOAP">SOAP</a></li>
<li><a href="http://en.wikipedia.org/wiki/CORBA">CORBA</a></li>
<li><a href="http://en.wikipedia.org/wiki/Internetwork_Packet_Exchange">IPX</a></li>
</ul>
</li>
<li><a href="http://de.wikipedia.org/wiki/StarCraft">Starcraft</a></li>
<li><a href="http://en.wikipedia.org/wiki/Command_and_Conquer">Command and Conquer</a></li>
<li>Am 9 August ist Schluss mit Google Latitude</li>
<li>Als Ersatz soll Google+ dienen</li>
<li><a href="http://de.wikipedia.org/wiki/Cronjob">Cronjob</a></li>
<li><a href="http://www.moves-app.com/">Moves</a></li>
<li><a href="http://de.wikipedia.org/wiki/Keyhole_Markup_Language">KML</a></li>
<li>Google hat einem wenigstens die Daten gegeben</li>
<li><a href="http://www.endomondo.com/">Endomondo</a></li>
<li><a href="http://www.openstreetmap.org/">Open Street Map</a></li>
<li><a href="http://www.google.com/mobile/mytracks/">My Tracks</a></li>
<li><a href="http://www.fitbit.com/de">Fitbit</a></li>
</ul>
<h2>Toder der Woche</h2>
<ul>
<li><a href="https://lists.fedoraproject.org/pipermail/announce/2013-July/003174.html">Seth Vidal</a> <code>00:11:41</code></li>
<li><a href="http://fedoraproject.org/wiki/Yum">Yum</a>
<ul>
<li><a href="http://yum.baseurl.org/">yellowdog updater modified</a></li>
</ul>
</li>
<li><a href="http://en.wikipedia.org/wiki/Yellow_Dog_Linux">Yellow Dog Linux</a></li>
<li><a href="http://de.wikipedia.org/wiki/Power_PC">Power PC</a></li>
<li>Sony Playstation 3 mit Linux</li>
<li><a href="http://www-03.ibm.com/systems/power/software/linux/">IBM Power Linux</a></li>
<li><a href="http://fedoraproject.org/">Fedora</a></li>
<li><a href="https://www.archlinux.org/">Arch Linux</a></li>
<li><a href="https://www.suse.com">SuSe Linux</a></li>
<li><a href="http://www.redhat.com/products/enterprise-linux/">Red Hat Enterprise Linux</a></li>
<li><a href="http://de.wikipedia.org/wiki/Symbolische_Verkn%C3%BCpfung">Symlink</a></li>
<li><a href="http://de.wikipedia.org/wiki/Filesystem_Hierarchy_Standard">Linux Verzeichnisstruktur</a></li>
<li><a href="http://manjaro.org/">Manjaro</a></li>
<li><a href="http://de.wikipedia.org/wiki/Python_%28Programmiersprache%29">Python</a></li>
</ul>
<h2>Untoter der Woche <code>00:17:00</code></h2>
<ul>
<li><a href="http://de.wikipedia.org/wiki/OpenLeaks">Open Leaks</a> <code>00:17:05</code></li>
<li><a href="http://de.wikipedia.org/wiki/Daniel_Domscheit-Berg">Daniel Domscheit Berg (der einzige hinter OpenLeaks)</a></li>
<li><a href="https://www.tizen.org/">Tizen</a> <code>00:17:57</code></li>
<li><a href="http://www.eweek.com/mobile/intel-samsung-kick-off-app-contest-for-tizen-os/">Intel (+Samsung) App Challenge (4 Millonen $)</a></li>
<li>iOS Apps sind in Objectiv-C, Android Apps in Java
<ul>
<li><a href="http://de.wikipedia.org/wiki/Objective_C">Objectiv C</a></li>
<li><a href="http://de.wikipedia.org/wiki/Java_%28Programmiersprache%29">Java</a></li>
</ul>
</li>
</ul>
<h2>News <code>00:20:31</code></h2>
<ul>
<li><a href="https://github.com/ValveSoftware">Valve hat einen Github Account für SDKs</a> <code>00:20:40</code></li>
<li>und als Issue Tracker</li>
<li><a href="http://de.wikipedia.org/wiki/ID_Software">ID Software</a></li>
<li><a href="http://lists.debian.org/debian-devel/2013/06/msg00720.html">Debian Crash Report Sammlung der Carnegie Mellon University</a></li>
<li>1200 exploitable crashes in Debian (in 22000 Projekten)</li>
<li><a href="http://www.cmu.edu/index.shtml">Carnegie Mellon University</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Urteil-Kein-Urheberrechtsschutz-fuer-Pornos-1908794.html">Kein Urheberrechtsschutz für pr0n</a> <code>00:27:20</code></li>
<li><a href="http://de.wikipedia.org/wiki/Urheberrechtsschutz">Urheberrecht</a></li>
<li><a href="http://prism.andrevv.com/">Marketingfail bei der NSA, NSA baut kostenloses Cloud-basiertes Backup</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Saehroboter-fuer-den-englischen-Rasen-1916047.html">Sähroboter</a> <code>00:31:30</code></li>
<li><a href="http://arduino.cc/">Arduino</a></li>
<li><a href="http://de.wikipedia.org/wiki/Monsanto">Monsanto</a></li>
<li><a href="http://www.imdb.com/title/tt0091949/">Nummer 5 lebt</a></li>
<li><a href="http://www.imdb.com/title/tt0910970/">Wall-E</a></li>
<li><a href="http://www.instructables.com/">Instructables</a></li>
<li><a href="http://www.telegraph.co.uk/finance/newsbysector/mediatechnologyandtelecoms/media/10158311/Sky-Deutschland-to-broadcast-adverts-directly-into-train-passengers-heads.html">Sky will Werbung in die Brains
projizieren</a> <code>00:34:29</code></li>
<li><a href="http://de.wikipedia.org/wiki/Subliminal_%28Psychologie%29">Subliminale Botschaften</a></li>
<li><a href="https://github.com/blog/1547-release-your-software">Github bring Release-Management</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Schwedische-Polizei-beschlagnahmt-Server-von-Untertitel-Webseite-1915924.html">Untertitelseite offline wegen Razia</a> <code>00:39:31</code></li>
<li><a href="http://thepiratebay.se">Piratebay</a></li>
<li><a href="http://flattr.com">Flattr</a></li>
<li><a href="http://www.undertexter.se/">Undertexter</a></li>
<li><a href="http://developers.slashdot.org/story/13/07/05/1647215/oracle-quietly-switches-berkeleydb-to-agpl">Oracle ändert Lizenz von BerkeleyDB zu AGPL</a> <code>00:42:45</code></li>
<li><a href="http://de.wikipedia.org/wiki/Berkeley_DB">BerkeleyDB</a></li>
<li><a href="http://de.wikipedia.org/wiki/GNU_Affero_General_Public_License">AGPL</a></li>
<li><a href="https://de.wikipedia.org/wiki/MySQL">MySQL</a></li>
<li><a href="http://de.wikipedia.org/wiki/Sleepycat_Software">Sleepycat Software</a></li>
<li><a href="http://www.extremetech.com/extreme/160131-thorium-nuclear-reactor-trial-begins-could-provide-cleaner-safer-almost-waste-free-energy">Endlich saubere Energie!</a> <code>00:45:27</code></li>
<li><a href="http://de.wikipedia.org/wiki/Thorium">Thorium</a></li>
<li><a href="http://de.wikipedia.org/wiki/Kernkraftwerk_Fukushima_Daiichi">Fukushima Daiichi</a></li>
<li><a href="http://www.tagesschau.de/ausland/japan-atomkraft104.html">Tagesschau Meldung zu Fukushima</a></li>
<li><a href="http://www.tagesspiegel.de/weltspiegel/japan-ex-manager-von-fukushima-an-krebs-gestorben/8476138.html">Ex-Manager von Fukushima an Krebs gestorben</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Congstar-Firefox-Smartphone-ab-Herbst-in-Deutschland-1916056.html">Firefox Phone in Deutschland</a> <code>00:48:00</code></li>
<li><a href="http://www.alcatelonetouch.com/de/">Alcatel one touch</a></li>
<li><a href="http://thenextweb.com/google/2013/07/09/chrome-28-arrives-with-rich-notifications-for-apps-and-extensions-on-windows-mac-and-linux-coming-soon/">Chrome 28 kommt mit Blink</a> <code>00:49:58</code></li>
<li><a href="http://blog.chromium.org/2013/04/blink-rendering-engine-for-chromium.html">Blink: A rendering engine for Chrome</a></li>
<li><a href="http://www.chromium.org/">Chromium</a></li>
<li><a href="http://www.heise.de/hardware-hacks/meldung/3D-Kopierer-vom-Discounter-1913328.html">3D-Kopierer/Drucker vom Discounter</a> <code>00:51:35</code></li>
<li><a href="http://www.pearl.de">Pearl</a></li>
<li><a href="http://www.makerbot.com/">Makerbot</a></li>
<li><a href="http://memegenerator.co/instance/39618442">Yo dawg I herd you like chicken nuggets</a></li>
<li><a href="http://de.wikipedia.org/wiki/Molekulark%C3%BCche">Molekulares kochen</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/FFmpeg-2-0-unterstuetzt-OpenCL-1914416.html">FFmpeg mit OpenCL</a> <code>00:56:21</code></li>
<li><a href="http://handbrake.fr/">Handbrake</a></li>
<li><a href="http://de.wikipedia.org/wiki/Motion_JPEG">M-JPEG</a></li>
<li><a href="http://tech.slashdot.org/story/13/07/05/2034253/tech-companies-looking-into-sarcasm-detection">Der Sarkasmusdetektor, funktioniert bestimmt</a></li>
</ul>
<h2>Lesefoo <code>01:02:13</code></h2>
<ul>
<li><a href="http://pages.apigee.com/web-api-design-ebook.html">APIGeee Web API Design Ebook</a> <code>01:02:36</code></li>
<li><a href="https://www.google.de/search?site=&source=hp&q=APIGeee+Web+API+Design+Ebook&oq=APIGeee+Web+API+Design+Ebook">Suche über Google</a></li>
<li><a href="http://martinfowler.com/articles/richardsonMaturityModel.html">Richardson maturity model</a></li>
<li><a href="http://en.wikipedia.org/wiki/HTTP_2.0">HTTP 2.0</a></li>
<li><a href="http://de.wikipedia.org/wiki/SPDY">SPDY</a></li>