forked from imathis/octopress
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
2739 lines (1862 loc) · 113 KB
/
index.html
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
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Binärgewitter</title>
<meta name="author" content="Binärgewitter Crew">
<meta name="description" content="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 ...">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://blog.binaergewitter.de">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="/javascripts/ender.js"></script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<link href="http://feeds.feedburner.com/binaergewitter-podcast" rel="alternate" title="Binärgewitter" type="application/atom+xml">
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<script type="text/javascript">
/* <![CDATA[ */
(function() {
var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
t.parentNode.insertBefore(s, t);
})();
/* ]]> */
</script>
<meta property="og:url" content="http://blog.binaergewitter.de" />
<meta property="og:title" content="Binärgewitter" />
<meta property="og:locale" content="de_DE" />
<meta property="og:image" content="http://blog.binaergewitter.de/images/binaergewitter_logo.png" />
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">Binärgewitter</a></h1>
<h2>Web, Technologie und OpenSource Software</h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="http://feeds.feedburner.com/binaergewitter-podcast" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:blog.binaergewitter.de" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/live/">Live</a></li>
<li><a href="/das-team/">Team</a></li>
<li><a href="/ueber-uns/">Über Binärgewitter</a></li>
<li><a href="/abonnieren/">Abonnieren</a></li>
<li><a href="/blog/archives">Archives</a></li>
<li><a href="/impressum/">Impressum</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/08/16/binaergewitter-talk-number-63-keiner-mag-die-esos/">Binärgewitter Talk #63 - Keiner Mag Die Esos</a></h1>
<p class="meta">
<time datetime="2013-08-16T08:30:00+02:00" pubdate data-updated="true">16.08.2013</time>
| <a href="/blog/2013/08/16/binaergewitter-talk-number-63-keiner-mag-die-esos/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<div class="audio-content">
<audio preload='none' controls><source src='http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.mp3' type='audio/mp3' /><source src='http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.ogg' type='audio/ogg' /><source src='http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.m4a' type='audio/x-m4a' /><source src='http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.opus' type='' /></audio>
<p id="download-buttons">
<a href="http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.mp3"><img src="/images/audio_mp3_button.png"
title="download mp3" alt="download mp3" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.ogg"><img src="/images/audio_ogg_button.png"
title="download ogg" alt="download ogg" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.m4a"><img src="/images/audio_m4a_button.png"
title="download m4a" alt="download m4a" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-15.Binaergewitter.Talk.63.opus"><img src="/images/audio_opus_button.png"
title="download opus" alt="download opus" style="border:0; border-radius:0;" /></a>
</p>
</div>
<div class="flattr-button">
<a class="FlattrButton" style="display:none;"
title="Binärgewitter Talk #63 - keiner mag die Esos"
data-flattr-uid="binaergewitter"
data-flattr-tags="podcast,tech,software"
data-flattr-button="compact"
data-flattr-category="audio"
href="http://blog.binaergewitter.de/blog/2013/08/16/binaergewitter-talk-number-63-keiner-mag-die-esos//index.html">
Binärgewitter Talk #63 - keiner mag die Esos
</a>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/08/09/binaergewitter-talk-number-62-krepel-ist-keine-schmackhafte-backware/">Binärgewitter Talk #62 - Krepel Ist Keine Schmackhafte Backware</a></h1>
<p class="meta">
<time datetime="2013-08-09T13:30:00+02:00" pubdate data-updated="true">09.08.2013</time>
| <a href="/blog/2013/08/09/binaergewitter-talk-number-62-krepel-ist-keine-schmackhafte-backware/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<div class="audio-content">
<audio preload='none' controls><source src='http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.mp3' type='audio/mp3' /><source src='http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.ogg' type='audio/ogg' /><source src='http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.m4a' type='audio/x-m4a' /><source src='http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.opus' type='' /></audio>
<p id="download-buttons">
<a href="http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.mp3"><img src="/images/audio_mp3_button.png"
title="download mp3" alt="download mp3" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.ogg"><img src="/images/audio_ogg_button.png"
title="download ogg" alt="download ogg" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.m4a"><img src="/images/audio_m4a_button.png"
title="download m4a" alt="download m4a" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-08.Binaergewitter.Talk.62.opus"><img src="/images/audio_opus_button.png"
title="download opus" alt="download opus" style="border:0; border-radius:0;" /></a>
</p>
</div>
<div class="flattr-button">
<a class="FlattrButton" style="display:none;"
title="Binärgewitter Talk #62 - Krepel ist keine schmackhafte Backware"
data-flattr-uid="binaergewitter"
data-flattr-tags="podcast,tech,software"
data-flattr-button="compact"
data-flattr-category="audio"
href="http://blog.binaergewitter.de/blog/2013/08/09/binaergewitter-talk-number-62-krepel-ist-keine-schmackhafte-backware//index.html">
Binärgewitter Talk #62 - Krepel ist keine schmackhafte Backware
</a>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/08/02/binaergewitter-talk-number-61-linuscrisy/">Binärgewitter Talk #61 - Linuscrisy</a></h1>
<p class="meta">
<time datetime="2013-08-02T11:30:00+02:00" pubdate data-updated="true">02.08.2013</time>
| <a href="/blog/2013/08/02/binaergewitter-talk-number-61-linuscrisy/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<div class="audio-content">
<audio preload='none' controls><source src='http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.mp3' type='audio/mp3' /><source src='http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.ogg' type='audio/ogg' /><source src='http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.m4a' type='audio/x-m4a' /><source src='http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.opus' type='' /></audio>
<p id="download-buttons">
<a href="http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.mp3"><img src="/images/audio_mp3_button.png"
title="download mp3" alt="download mp3" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.ogg"><img src="/images/audio_ogg_button.png"
title="download ogg" alt="download ogg" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.m4a"><img src="/images/audio_m4a_button.png"
title="download m4a" alt="download m4a" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-08-01.Binaergewitter.Talk.61.opus"><img src="/images/audio_opus_button.png"
title="download opus" alt="download opus" style="border:0; border-radius:0;" /></a>
</p>
</div>
<div class="flattr-button">
<a class="FlattrButton" style="display:none;"
title="Binärgewitter Talk #61 - Linuscrisy"
data-flattr-uid="binaergewitter"
data-flattr-tags="podcast,tech,software"
data-flattr-button="compact"
data-flattr-category="audio"
href="http://blog.binaergewitter.de/blog/2013/08/02/binaergewitter-talk-number-61-linuscrisy//index.html">
Binärgewitter Talk #61 - Linuscrisy
</a>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/07/26/binaergewitter-talk-number-60-ministerium-fuer-internetpornographie/">Binärgewitter Talk #60 - Ministerium Für Internetpornographie</a></h1>
<p class="meta">
<time datetime="2013-07-26T09:30:00+02:00" pubdate data-updated="true">26.07.2013</time>
| <a href="/blog/2013/07/26/binaergewitter-talk-number-60-ministerium-fuer-internetpornographie/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<div class="audio-content">
<audio preload='none' controls><source src='http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.mp3' type='audio/mp3' /><source src='http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.ogg' type='audio/ogg' /><source src='http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.m4a' type='audio/x-m4a' /><source src='http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.opus' type='' /></audio>
<p id="download-buttons">
<a href="http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.mp3"><img src="/images/audio_mp3_button.png"
title="download mp3" alt="download mp3" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.ogg"><img src="/images/audio_ogg_button.png"
title="download ogg" alt="download ogg" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.m4a"><img src="/images/audio_m4a_button.png"
title="download m4a" alt="download m4a" style="border:0; border-radius:0;" /></a>
<a href="http://download.binaergewitter.de/2013-07-25.Binaergewitter.Talk.60.opus"><img src="/images/audio_opus_button.png"
title="download opus" alt="download opus" style="border:0; border-radius:0;" /></a>
</p>
</div>