forked from Binaergewitter/binaergewitter.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
2990 lines (2320 loc) · 144 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>2012-11-30T13:03:04+01: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 #34 - Sicherheit durch Ignoranz]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/11/30/binaergewitter-talk-number-34-sicherheit-durch-ignoranz/"/>
<updated>2012-11-30T14:00:00+01:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/11/30/binaergewitter-talk-number-34-sicherheit-durch-ignoranz</id>
<content type="html"><![CDATA[<p>Mal wieder alle vereint. Wir sprechen über den Tod von wechselbaren CPUs,die Umwelt, Tiefgefrohrene Fische und unsterbliche Quallen und natürlich über jede Menge IT-Themen :)</p>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.heise.de/ct/meldung/Wann-sterben-wechselbare-PC-Prozessoren-aus-1756219.html">Gibt es bald keine Desktop-CPUs zum wechseln mehr?</a></li>
<li><a href="http://www.golem.de/news/mozilla-browser-entwicklung-von-64-bit-firefox-fuer-windows-eingestellt-1211-95910.html">Kein 64bit Firefox für Windows</a></li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li><a href="http://www.theregister.co.uk/2012/11/29/google_webmaster_tools_snafu/">Zombie Google Webmaster aus der Hölle</a></li>
<li><a href="http://www.youtube.com/watch?v=wwolYFGM9pU">Dieser Goldfisch</a></li>
<li><a href="http://www.golem.de/news/asus-padfone-3-neues-smartphone-tablet-angekuendigt-1211-96031.html">Padfone</a></li>
<li><a href="http://www.nytimes.com/2012/12/02/magazine/can-a-jellyfish-unlock-the-secret-of-immortality.html">Unsterbliche Quallen</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Biological_immortality#Lobsters">Lobster</a></li>
</ul>
</li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://torrentfreak.com/anonymous-file-sharing-ruled-illegal-by-german-court-121123/">Darknet “Illegal”</a></li>
<li><a href="http://www.golem.de/news/ipv6-telekom-verteilt-ipv6-adressen-an-kunden-1211-96035.html">Telekom IPv6</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/TUX_web_server">TUX Webserver</a></li>
</ul>
</li>
<li><a href="http://hosted.ap.org/dynamic/stories/A/AS_CHINA_ONION_KIM?SITE=AP&SECTION=HOME&TEMPLATE=DEFAULT&CTIME=2012-11-27-07-38-17">Nordkorea versteht keinen Spass</a></li>
<li><a href="http://www.golem.de/news/digitale-gesellschaft-vodafone-verkauft-ein-halbes-netz-als-internet-1211-96029.html">Vodafon steigt von DSL auf LTE um und beschneidet Kunden</a>
<ul>
<li><a href="http://vodafail.digitalegesellschaft.de/">Yadafone remix</a></li>
</ul>
</li>
<li><a href="http://bitcoinmagazine.net/block-reward-halving-a-guide/">Bitcoin Block reward halfing</a>
<ul>
<li><a href="http://electrum.ecdsa.org/">Electrum</a></li>
<li><a href="http://multibit.org/">Multibit</a></li>
</ul>
</li>
<li><a href="http://www.indiegogo.com/sticknfind">Stick n Find</a></li>
<li><a href="http://www.linuxtoday.com/upload/piwik-software-installer-rigged-with-back-door-following-website-compromise-121127180005.html">Backdoor in piwik</a></li>
<li><a href="http://www.guardian.co.uk/technology/2012/nov/27/apple-fires-mapping-manager-backlash">Apple Feuert Apple Maps Manager</a></li>
<li><a href="http://www.theregister.co.uk/2012/11/27/google_raters_manual/">Wie Google so gute Resultate liefert – People</a>
<ul>
<li><a href="http://www.youtube.com/watch?v=wshyX6Hw52I">Machine that goes Bing</a></li>
</ul>
</li>
<li><a href="http://www.cumulonimbus.ca/pressurenet-2-1/">pressureNET</a>
<ul>
<li><a href="http://www.youtube.com/watch?v=1s0hEi8zhmg">Vanilla Ice denies ‘under preassure’ ripoff</a></li>
</ul>
</li>
<li><a href="http://yro.slashdot.org/story/12/11/28/2318245/bluetooth-used-to-track-traffic-times">Bluetooth nutzen um Traffic zu tracken</a></li>
<li><a href="http://www.theregister.co.uk/2012/11/29/amazon_s3_price_cut/">S3 wird billiger</a>
<ul>
<li><a href="https://twitter.com/josephwykes/status/273938914652340224/photo/1">total der gute schnurbart</a></li>
<li><a href="http://techcrunch.com/2012/11/26/google-drops-pricing-on-cloud-storage-20-adds-new-features-in-advance-of-rival-amazons-first-big-cloud-summit/">Google auch</a></li>
<li><a href="http://www.golem.de/news/gmail-e-mail-anhaenge-mit-10-gbyte-dank-google-drive-1211-95998.html">Google kann nun 10GB Anhänge</a></li>
</ul>
</li>
<li><a href="http://www.golem.de/news/umweltschuetzer-nas-hat-bessere-oekobilanz-als-die-cloud-1211-96004.html">NAS Umweltbilanz</a></li>
<li><a href="http://arstechnica.com/gadgets/2012/11/dell-releases-powerful-well-supported-linux-ultrabook/">Dell bringt Linux Ultrabook - Entwickler als Zielgruppe</a></li>
<li><a href="http://boingboing.net/2012/11/28/in-finland-piracy-fines-are-o.html">In Finland, piracy fines are orders of magnitude higher than fines for rape, torture and murder</a></li>
<li><a href="http://arstechnica.com/gadgets/2012/11/lg-explains-existence-of-lte-chip-in-nexus-4/">Warum sind LTE Chips im Nexus 4</a></li>
<li><a href="http://news.slashdot.org/story/12/11/28/1950230/swedish-stock-exchange-hit-by-programming-snafu?utm_source=rss1.0mainlinkanon&utm_medium=feed">Schwedischer explodiert Stock-Exchange durch negative Trades</a></li>
<li><a href="http://www.golem.de/news/bundeskriminalamt-intern-registrierungszwang-von-prepaid-mobilfunkkarten-sinnlos-1211-96012.html">Regierung findet Registrierungszwang von Prepaid-Mobilfunkkarten doof</a></li>
<li><a href="http://arstechnica.com/security/2012/11/hack-could-let-browsers-use-cloud-to-carry-out-big-attacks-on-the-cheap/">The Cloud strikes back</a></li>
<li><a href="http://www.allthingsdistributed.com/2012/11/amazon-redshift.html">Amazon RedShift</a>
<ul>
<li>this is not the redshift i was looking for …</li>
</ul>
</li>
<li><a href="http://www.heise.de/open/meldung/OpenShift-nun-offizielles-Red-Hat-Angebot-1758107.html">RedHat OpenShift</a>
<ul>
<li><a href="https://juju.ubuntu.com/">Ubuntu JuJu</a></li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/Kritik-am-geplanten-Leistungsschutzrecht-reisst-nicht-ab-1758645.html">LSR</a></li>
<li><a href="http://www.golem.de/news/linux-kernel-nvidia-arbeitet-an-freiem-tegra-treiber-mit-1211-95940.html">Nvidia entwickelt Open Source</a></li>
<li><a href="http://www.h-online.com/open/news/item/Fedora-18-Beta-adds-MATE-and-Cinnamon-desktops-1758243.html">Fedora 18 bietet MATE und Cinnamon als Oberflaechen mit an</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://www.nytimes.com/2012/11/24/science/scientists-see-advances-in-deep-learning-a-part-of-artificial-intelligence.html?_r=1&pagewanted=all&">Deep learning</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Deep_learning">obligatorischer Wikipedia Link</a></li>
</ul>
</li>
<li><a href="http://sinatra-book.gittr.com/">Sinatra Book</a> (pfleidi)</li>
<li><a href="https://github.com/sinatra/sinatra-recipes">Sinatra Recipes</a> (pfleidi)</li>
<li><a href="http://tasvideos.org/3767S.html">Gameboy mit Pokemon Gelb vom Spiel aus neu programmieren</a></li>
<li><a href="http://www.trottercashion.com/2011/02/08/rubys-define_method-method_missing-and-instance_eval.html">Ruby’s define_method, method_missing and instance_eval</a> (pfleidi)</li>
<li><a href="http://www.srccodes.com/p/article/11/spring-3-hello-world-example-tutorial-using-maven-tool-and-eclipse-ide">Hello World in Spring <em>lol</em></a> (pfleidi)</li>
<li><a href="https://github.com/Herzult/SimplePHPEasyPlus">SimplePHPEasyPlus</a></li>
<li><a href="http://www.diyphotography.net/long-exposure-fireworks-tutorial">Long Exposure Fireworks</a></li>
<li><a href="http://slidedecks.wilmoore.com/2012-confoo/diy-private-cloud-using-virtualBox-and-chef">DIY private cloud …</a> (pfleidi)</li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>pulsaudio (ingo)</li>
<li>systemd tempfiles <em>MUSS MAN WISSEN</em>
<ul>
<li>“Systemd-tmpfiles uses configuration files in /usr/lib/tmpfiles.d/ and /etc/tmpfiles.d/”</li>
<li><a href="http://supervisord.org/">supervisor</a></li>
</ul>
</li>
<li><a href="http://www.heise.de/newsticker/meldung/Hetzner-setzt-Preise-fuer-zusaetzliche-IPv4-Adressen-fest-1758985.html">Hetzner will mehr Geld für IPv4</a></li>
<li>OVH Preispolitik</li>
<li>System shutdown fuckup</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://rubygems.org/gems/kodama">Kodama - Ruby based MySQL replication listener</a></li>
<li><a href="http://www.amazon.com/gp/sendtokindle">Amazon send to Kindle</a></li>
<li><a href="http://flexget.com/">Flexget</a></li>
<li><a href="https://github.com/rtomayko/shotgun">shotgun</a></li>
<li><a href="http://bit.ly/QQ8Y1w">Bytsized Hosting</a> (ref link with love <3)</li>
<li><a href="https://github.com/sstephenson/rbenv">rbenv</a>
<ul>
<li><a href="https://github.com/pfleidi/dotfiles">dotfiles</a></li>
</ul>
</li>
<li><a href="https://www.privateinternetaccess.com/">Privateinternetaccess</a></li>
<li><a href="http://www.dancarlin.com/disp.php/hh">Hardcore History Podcast</a></li>
<li><a href="https://help.github.com/articles/post-receive-hooks">Github Post-Receive Hooks</a></li>
<li><a href="http://amzn.to/ToBWRW">MK806 III</a> / <a href="http://dx.com/p/mk808-dual-core-android-4-1-1-google-tv-player-w-1gb-ram-8gb-rom-wi-fi-tf-hdmi-160535">MK808</a>
<ul>
<li><a href="http://www.ebay.de/itm/320937229589">Krebsplug - TP-LINK WR-703N</a></li>
</ul>
</li>
<li><a href="http://www.bergercity.de/linux/php5-3-log-mail-usage/">php mail log function</a></li>
<li><a href="http://plexapp.com">Plex</a></li>
<li><a href="https://itunes.apple.com/de/app/sleep-cycle-alarm-clock/id320606217?mt=8">Sleep Cycle</a></li>
<li><a href="http://www.google.de/intl/de/enterprise/apps/business/pricing.html">Google Apps</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #33 - Das Springer Sparabo]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/11/23/binaergewitter-talk-number-33-das-springer-sparabo/"/>
<updated>2012-11-23T14:00:00+01:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/11/23/binaergewitter-talk-number-33-das-springer-sparabo</id>
<content type="html"><![CDATA[<h2>Kommentare zur Sendung</h2>
<ul>
<li><a href="https://itunes.apple.com/de/podcast/binargewitter/id216877594">itunes kommentare</a></li>
<li>serious, todo: <a href="https://github.com/Binaergewitter/serious-bg/blob/master/serious/lib/site/views/atom.builder">Feed weiter auffricklen</a> (siehe <a href="https://github.com/Binaergewitter/serious-bg/blob/master/serious/lib/site/views/_flattr.erb">flatter template</a></li>
<li>Grundlos: <a href="http://tenderlovemaking.com/">tender love making</a></li>
</ul>
<h2>Kategorien der Woche</h2>
<h2>Lol der Woche</h2>
<ul>
<li><a href="http://derstandard.at/1353206631590/Microsoft-Webkit-koennte-der-neue-IE6-werden">MS warnt vor Webkit Monopol … weil sie nicht Standardkonform sind</a></li>
<li><a href="http://www.heise.de/open/meldung/Google-vergisst-Dezember-in-Android-4-2-1752828.html">kein Dezember in Android 4.2 :) … im Kontakte App</a>
<ul>
<li><a href="http://www.androidpolice.com/2012/11/19/android-4-2-gate-here-are-some-of-the-major-issues-plaguing-googles-newest-release/">Weitere schwerwiegende Bugs in Android 4.2</a></li>
<li><a href="http://www.golem.de/news/mozilla-addon-zeigt-firefox-os-1211-95751.html">Firefox OS Emulator</a></li>
</ul>
</li>
</ul>
<h2>Eventuell unschulidiger Töter der Woche</h2>
<ul>
<li><a href="http://www.whoismcafee.com/">Mc Äffchen dreht durch</a>
<ul>
<li><a href="http://www.wired.com/threatlevel/2012/11/mcafee-unhinged/">John McAfee, Unhinged</a></li>
<li><a href="http://www.securityweek.com/john-mcafee-government-wants-kill-me">The Government Wants to kill me!</a></li>
<li><a href="http://www.amazon.com/dp/B00A88KHYI/?tag=krebsco-20">John McAfee’s Last Stand</a></li>
</ul>
</li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.heise.de/newsticker/meldung/Erfinder-des-Bayer-Filters-gestorben-1754906.html">Bayer Erfinder</a> (via daswort)</li>
<li><a href="http://www.smh.com.au/technology/technology-news/where-did-it-go-scientists-undiscover-pacific-island-20121122-29ro4.html">Sandy Island</a></li>
</ul>
<h2>(Un)toter der Woche</h2>
<ul>
<li><a href="http://tagesschau.de/ausland/lonesomegeorge100.html">Lonesome Georg doch nicht allein?!</a></li>
<li><a href="http://www.golem.de/news/meego-nachfolger-jolla-zeigt-erstmals-ui-von-sailfish-1211-95854.html">Jolla/Sailfish</a> yeah - hätte das als toten genommen, weil closed source
<ul>
<li><a href="https://twitter.com/nopil3os/status/271231538346225664">Tweet</a></li>
</ul>
</li>
<li><a href="http://www.bbc.co.uk/news/technology-20395212">Alter Computer wiederbelebt</a></li>
<li><a href="http://de.wikipedia.org/wiki/Nummer_5_lebt!">Nummer 5 lebt!</a></li>
<li><a href="https://upload.wikimedia.org/wikipedia/commons/8/8c/Gldt.svg">Linux Distros Baum</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.freebsd.org/news/2012-compromise.html">FreeBSD intrusion</a></li>
<li><a href="http://www.computing.co.uk/ctg/news/2225540/user-may-have-hacked-nintendo-wii-u-network-just-hours-after-launch">Nintendo WII U <code>gehackt</code></a></li>
<li><a href="http://it.slashdot.org/story/12/11/20/2118200/israeli-infrastructure-proves-too-strong-for-anonymous">Israeli Infrastructure Proves Too Strong for Anonymous</a></li>
<li><a href="http://arstechnica.com/information-technology/2012/11/how-team-obamas-tech-efficiency-left-romney-it-in-dust/">How Team Obama’s tech efficiency left Romney IT in
dust</a> (marc)</li>
<li><a href="http://www.theatlantic.com/technology/archive/2012/11/when-the-nerds-go-marching-in/265325/">When the nerds go marching in</a> (marc)</li>
<li><a href="http://www.heise.de/newsticker/meldung/Pay-Wahl-fuer-taz-de-1754904.html">Taz Paywall</a></li>
<li><a href="http://news.slashdot.org/story/12/11/20/216234/ntp-glitch-reverts-clocks-back-to-2000">NTP Glitch</a></li>
<li><a href="http://37signals.com/svn/posts/3315-how-i-came-to-love-big-data-or-at-least-acknowledge-its-existence">How I came to love big data (or at least acknowledge its existence)</a> (marc)</li>
<li><a href="http://erratasec.blogspot.com.es/2012/11/you-are-committing-crime-right-now.html">You are commiting a crime right now</a></li>
<li><a href="https://twitter.com/textfromxcode/">Text from XCode</a> (marc)</li>
<li><a href="http://garantiadata.com/blog/benchmarking-the-new-aws-m3-instances-with-redis">Amazon M3 instanzen mit Redis gebenchmarked</a> (marc)</li>
<li><a href="https://torrentfreak.com/police-raid-9-year-old-pirate-bay-girl-confiscate-winnie-the-pooh-laptop-121122/">Police Raid 9-Year-Old Pirate Bay Girl, Confiscate Winnie The Pooh Laptop</a></li>
<li><a href="http://www.golem.de/news/urheberrecht-mustervertrag-fuer-eltern-gegen-filesharing-der-kinder-1211-95885.html">Mustervertrag gegen Kinder Filesharing</a></li>
<li><a href="http://www.kickstarter.com/projects/1225193080/the-ruby-20-walkthrough">Ruby 2.0 walkthrough</a></li>
<li><a href="http://alisnic.net/blog/making-your-ruby-fly/">Make your Ruby fly</a> (marc)</li>
<li><a href="https://bitcointalk.org/index.php?topic=49971.msg1351299#msg1351299">TML Bitstream 1.50a für MMQ</a> (marc)</li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://blog.headius.com/2012/11/refining-ruby.html">Headius: Refining Ruby</a> (marc)</li>
<li><a href="http://www.honeynet.org/papers/bots">Tracking Botnets</a></li>
<li><a href="http://blog.dynatrace.com/2012/11/14/why-averages-suck-and-percentiles-are-great/">Why Averages Suck and Percentiles are Great</a> (marc)</li>
<li><a href="http://clarkesworldmagazine.com/watts_01_10/">The Things</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>Ruby / Octopress</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="https://tahoe-lafs.org">Tahoe-lafs (repick)</a></li>
<li><a href="http://retroshare.sourceforge.net">Retroshare</a> (marc)</li>
<li><a href="https://github.com/samr7/vanitygen">Vanitygen</a> (marc)</li>
<li><a href="http://agateau.com/2012/11/14/introducing-homerun/">Homerun</a> (ingo)</li>
<li><a href="http://amzn.to/T7pwhf">Fitbit One</a> (marc)</li>
<li><a href="http://auphonic.com/blog/2012/11/19/auphonic-mobile-app-ios/">Auphonic Mobile App</a></li>
<li><a href="http://amzn.to/T7pCFB">Revolt USB Powerbank</a> + <a href="http://amzn.to/QxohfD">Sanyo Eneloop AA</a> (marc)</li>
<li><a href="http://www.asofterworld.com/index.php?id=898">A Softer World</a></li>
<li><a href="https://onetimesecret.com/">OneTime Geheimnis</a></li>
<li><a href="http://www.kalixa.de">Kalixa</a> (marc)</li>
<li><a href="https://github.com/jordansissel/fpm">FPM</a> (marc)</li>
<li><a href="http://www.weechat.org">weechat</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #32 - Jimmy Wales Starrzeit]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/11/16/binaergewitter-talk-number-32-jimmy-wales-starrzeit/"/>
<updated>2012-11-16T12:00:00+01:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/11/16/binaergewitter-talk-number-32-jimmy-wales-starrzeit</id>
<content type="html"><![CDATA[<h1>Kategorie der Woche</h1>
<h2>Badass der Woche</h2>
<ul>
<li><a href="http://www.metro.co.uk/weird/917706-grandma-in-russia-kills-wolf-with-bare-hands-and-axe?ref=fb_invite_declined">Grossmutter toetet Wolf mit Axt und blossen Händen</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li>Der Wolf, der von der Grossmutter getoetet wurde</li>
<li><a href="http://www.reddit.com/r/programming/comments/137kd9/18_months_ago_termkit_a_nextgeneration_terminal/">TermKit</a></li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li>Bücher</li>
<li><a href="http://www.golem.de/news/open-source-buchscanner-blaettert-mit-staubsaugerhilfe-um-1211-95718.html">Google Buch Einleser</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.golem.de/news/tod-in-belize-regierungschef-nennt-john-mcafee-meschugge-1211-95730.html">John McAffee auf der Flucht</a></li>
<li><a href="http://yro.slashdot.org/story/12/11/12/2016247/john-mcafee-accused-of-murder-wanted-by-belize-police">John McAfee in Mord verwickelt</a>
<ul>
<li><a href="http://news.cnet.com/8301-1009_3-57548458-83/antivirus-pioneer-mcafee-sought-for-questioning-in-murder-case/">Hat ein eigenes Drogenlabor speziell fuer seine Firma</a></li>
<li><a href="http://www.wired.co.uk/news/archive/2012-11/14/john-mcafee-audio-interview">Interview mit Wired: Hat sich in seinem eigenen Garten eingegraben damit die Feds ihn nicht finden</a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/apple/2012/11/op-ed-where-are-all-the-iphone-5-app-updates/">iPhone5 Updates auf größeres Display</a></li>
<li><a href="http://seclists.org/fulldisclosure/2012/Nov/94">Linux Rootkit, welches HTTP Requests umschreibt</a></li>
<li><a href="http://hardware.slashdot.org/story/12/11/09/2049240/moores-law-is-becoming-irrelevant-says-arms-boss">Duh: ARM chef meint, dass Moores Law irrelevant wird, dass effizienz und Preis wichtiger ist</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Moores_law">Moores Law</a></li>
<li><a href="http://en.wikipedia.org/wiki/Amdahl's_law">Amdahls Law</a></li>
</ul>
</li>
<li><a href="http://hothardware.com/News/Microsofts-Big-Hidden-Windows-8-Feature-BuiltIn-Advertising/">Win8 hidden features: Ads</a></li>
<li><a href="http://arstechnica.com/tech-policy/2012/11/ohio-attorney-creates-fake-child-porn-for-case-now-must-pay-300000/">Staatsanwalt soll 300k Euro zahlen weil er kindergesichter auf Pr0n geshooped hat</a></li>
<li><a href="http://pixus-ru.blogspot.ru/2012/11/hack-any-skype-account-in-6-easy-steps.html">Hack any skype account in 6 easy steps</a></li>
<li><a href="https://petitions.whitehouse.gov/petition/peacefully-grant-state-texas-withdraw-united-states-america-and-create-its-own-new-government/BmdWCP8B">Nach Wahlen - Buerger Texas’ starten Petition um aus USA auszutreten</a></li>
<li><a href="http://www.golem.de/news/rapid-prototyping-us-armee-entwickelt-guenstigen-3d-drucker-1211-95633.html">US Army will guenstige 3d-drucker fuer den Feldeinsatz</a></li>
<li><a href="http://hardware.slashdot.org/story/12/11/08/2017257/open-compute-wants-to-make-biodegradable-servers">Bio-degradable Servers von Open Compute</a>
<ul>
<li><a href="http://opencompute.org">http://opencompute.org/</a></li>
</ul>
</li>
<li><a href="http://www.recursivity.com/blog/2012/10/28/ides-are-a-language-smell/">IDEs Are a Language Smell</a> (pfleidi)</li>
<li><a href="http://hothardware.com/News/Nike-FuelBand-One-Big-Security-Hole-For-Your-Life/">Nike FuleBand deckt Fremdgaenger auf</a></li>
<li><a href="http://www.heise.de/developer/meldung/Redis-2-6-unterstuetzt-Skripting-mit-Lua-1734935.html">Redis 2.6 mit Lua Scripting</a> (pfleidi)</li>
<li><a href="http://luajit.org/performance_x86.html">LuaJIT 2.0 ist schnell</a>
<ul>
<li><a href="http://playingwithpointers.com/archives/1010">A peek into LuaJIT</a></li>
</ul>
</li>
<li><a href="http://www.golem.de/news/freies-arbeiten-apple-naehert-unternehmenskultur-an-google-an-1211-95692.html">Apple kuckt in Sachen Unternehmenskultur bei Google ab</a></li>
<li><a href="http://arstechnica.com/gadgets/2012/11/why-the-hell-does-this-mouse-need-to-connect-to-the-internet/">Deine Maus braucht mehr Internet</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://blog.cdleary.com/2012/11/arm-chars-are-unsigned-by-default/">ARM chars are unsigned by default</a></li>
<li><a href="http://eloquentjavascript.net/contents.html">Eloquent JavaScript</a> (pfleidi)
<ul>
<li><a href="https://www.amazon.de/dp/1593272820/ref=as_li_ss_til?tag=pfleidi-21">Eloquent JavaScript Buch</a></li>
</ul>
</li>
<li><a href="http://io9.com/5958479/7-best+case-scenarios-for-the-future-of-humanity">7 Best-Case Scenarios für die Zukunft</a></li>
<li><a href="http://danielmiessler.com/study/lsof/">Lsof Beispiele</a> (pfleidi)</li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>solaris10 (felix)</li>
<li>Arch Linux boot fail (pfleidi)</li>
<li>Nexus4 (felix)</li>
<li>Wasserkühlung (pfleidi)</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://www.youtube.com/watch?v=6YrjAqPqM30">BoxeeBox Hack</a> via @RowC</li>
<li><a href="http://clonezilla.org">Clonezilla Bare Metal Restore</a></li>
<li>rear</li>
<li><a href="https://itunes.apple.com/de/app/berlin-coffee-map/id493217376?mt=8">Berlin Coffee Map</a> (pfleidi)</li>
<li><a href="http://wiki.openstack.org/TryStack">TryStack</a></li>
<li><a href="http://ethercalc.net/">Ethercalc</a></li>
<li><a href="https://github.com/wycats/thor">Thor</a> (pfleidi)</li>
<li><a href="https://www.youtube.com/watch?v=75F3CSZcCFs">Bus Werbung (DasWort)</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #31 - Pfleidi hol die Pilze]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/11/10/binaergewitter-talk-number-31-pfleidi-hol-die-pilze/"/>
<updated>2012-11-10T00:15:00+01:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/11/10/binaergewitter-talk-number-31-pfleidi-hol-die-pilze</id>
<content type="html"><![CDATA[<h1>Kategorie der Woche</h1>
<h2>Papagei der Woche</h2>
<ul>
<li><a href="http://arstechnica.com/science/2012/11/parrot-in-captivity-manufactures-tools-something-not-seen-in-the-wild/">Papagei nuzt Werkzeuge</a></li>
<li><a href="https://lh4.googleusercontent.com/-yoaN7movr4g/UClREFEGD2I/AAAAAAABIy8/W_l7Za9I_Sc/s480/My+First+Project-new.gif">Runner-Up</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://lists.grok.org.uk/pipermail/full-disclosure/2012-November/088813.html">Sophos Full Disclosure</a> (rb2k)
<ul>
<li><a href="http://www.cso.com.au/article/441070/google_security_researcher_keep_sophos_away_from_high_value_systems/">Felix sein Link</a></li>
</ul>
</li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li>Enlightenment / E17</li>
<li><a href="http://www.muktware.com/4760/half-life-3-linux-exclusive">HalfLife 3 auf Gnu Hurd</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.cultofmac.com/198521/the-yatcht-steve-jobs-designed-with-philippe-starck-has-finally-been-unveiled/">Die Yacht von Steve Jobs (IPhallus)</a></li>
<li><a href="http://news.cnet.com/8301-17852_3-57541847-71/microsofts-picture-password-ad-intriguing-or-confusing/">Microsoft picture-password</a></li>
<li><a href="http://www.microsoft.com/Surface/en-US/support/surface-with-windows-RT/files-folders-and-online-storage/surface-disk-space-faq">Surface Diskspace FAQ</a> (rb2k)</li>
<li><a href="http://news.ycombinator.net/item?id=4736448">US Government: You Don’t Own Your Cloud Data So We Can Access It At Any Time</a></li>
<li><a href="http://www.golem.de/news/microsoft-dem-windows-live-messenger-droht-das-aus-1211-95533.html">MS will Live messenger zu gunsten von Skype abschalten</a></li>
<li><a href="http://news.ycombinator.net/item?id=4716322">Markdown: The Spec</a></li>
<li><a href="http://elm-lang.org/learn/Escape-from-Callback-Hell.elm">Escape from Callback Hell</a></li>
<li><a href="http://www.itproportal.com/2012/11/01/online-security-tips-a-password-manager-alone-isnt-enough/">A Password manager is not enough?</a></li>
<li>ARM statt Intel bei Apple</li>
<li><a href="http://gamelab.mit.edu/games/a-slower-speed-of-light/">A Slower Speed of Light</a></li>
<li><a href="http://arstechnica.com/tech-policy/2012/11/do-not-track-finally-arrives-with-version-23-of-chrome/">DNT in Chrome</a></li>
<li><a href="http://www.networkworld.com/news/2012/110712-security-experts-push-back-at-264036.html">Der Cyber 9/11</a>
<ul>
<li><a href="http://vimeo.com/46717788">Pac-Man - The Movie</a></li>
</ul>
</li>
<li><a href="http://science.slashdot.org/story/12/11/06/2325234/hiv-vaccine-safe-enough-to-pass-phase-1-human-trials">HIV Vaccine</a></li>
<li><a href="http://what-if.xkcd.com/18/">XKCD What-IF: BB Gun</a></li>
<li><a href="http://arstechnica.com/business/2012/11/kim-dotcom-now-plans-to-give-new-zealand-free-broadband-pipe-to-us/">Unterseekabel und freies Internets fuer Neuseeland</a></li>
<li><a href="http://www.h-online.com/security/news/item/German-Customs-Investigation-Bureau-seeks-trojan-programmers-1743025.html">Deutsche Regierung sucht mal wieder Trojaner-Coder</a></li>
<li><a href="http://www.informationweek.com/security/attacks/hackers-trade-tips-on-ddos-sql-injection/240012531">Hackers Trade Tips on DDoS,SQL Injection</a>
<ul>
<li><a href="http://www.theregister.co.uk/2012/11/08/hard_token_in_credit_card/">Alternativer Link</a></li>
</ul>
</li>
<li><a href="https://www.archlinux.org/news/end-of-initscripts-support/">Archlinux: End of initscripts</a></li>
<li><a href="http://arstechnica.com/gaming/2012/10/walt-disney-buys-lucasfilm-promises-star-wars-episode-7-in-2015/">Walt Disney kauft Lucasfilms</a></li>
<li><a href="https://lh4.googleusercontent.com/-8MAw_UJERYw/UJBAppoOOXI/AAAAAAAAYfg/WH077Gamz9M/s500/tumblr_mc7lqvKn4d1ri1fcro1_500.gif">Star Wars Preview</a></li>
<li><a href="http://www.androidpolice.com/2012/11/07/google-nexus-4-review-the-beautifully-crafted-premium-flagship-phone-that-android-deserves/">Google Nexus 4 Review</a> (rb2k)
<ul>
<li><a href="https://play.google.com/store/apps/details?id=de.danoeh.antennapod">antennapod</a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/gadgets/2012/11/google-wallet-may-integrate-programmable-payment-cards/">Google Wallet jetzt HartToken</a> (felix)</li>
<li><a href="http://whitepeoplemourningromney.tumblr.com/">White people mourning Romney</a> (rb2k)</li>
<li><a href="https://blog.mozilla.org/ux/2012/10/save-for-later/">Firefox :Save For Later</a></li>
<li><a href="http://accumulo.apache.org/">Apache Accmulo</a> (rb2k)</li>
<li><a href="http://blog.gittip.com/post/35057426257/stolen-money-on-gittip-part-1">Stolen money on Gittip</a> (felix)</li>
<li><a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-dev/46348">Ruby 2.0.0-preview1</a>
<ul>
<li><a href="http://globaldev.co.uk/2012/11/ruby-2-0-0-preview-features/">features</a> (rb2k)</li>
</ul>
</li>
<li><a href="http://www.haystacksoftware.com/blog/2012/11/arq-cloud-backup-for-mac-adds-support-for-amazon-glacier/">Arq 3 kann nun Amazon Glacier</a> (rb2k)</li>
<li><a href="http://www.heise.de/open/meldung/Steam-fuer-Linux-startet-im-Betatest-1744961.html">Steam für Linux</a>
<ul>
<li><a href="http://www.heise.de/open/meldung/Nvidia-Neuer-Linux-Treiber-fuer-mehr-Leistung-beim-Spielen-1745377.html">neue Nvidia Treiber für Linux</a></li>
</ul>
</li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://www.wired.com/wired/archive/4.12/ffglass_pr.html">Neal Stephenson - Mother earth, mother board</a> (pfleidi)</li>
<li><a href="http://web.mit.edu/snikolov/Public/trend.pdf">Trend or No Trend: A Novel Nonparametric Method for Classifying Time Series</a> (rb2k)</li>
<li><a href="http://blog.cloudflare.com/why-google-went-offline-today-and-a-bit-about">Why Google Went Offline Today and a Bit about How the Internet Works</a> (rb2k)</li>
<li><a href="http://abstractstrategygames.blogspot.de/2010/10/singularity-chess.html">Singularity Chess</a></li>
<li><a href="http://physics.nyu.edu/grierlab/conveyor7c/">Tractor Beams are Real</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>continue</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://www.kaffeewiki.de/">Kaffee Wiki</a> (pfeidi)</li>
<li><a href="http://www.asofterworld.com/index.php?id=891">A Softer World: 891</a></li>
<li><a href="https://www.amazon.de/dp/B008F4W0DS/ref=as_li_ss_til?tag=pfleidi-21">Touchscreen Handschuhe</a> (pfleidi)</li>
<li><a href="http://www.kickstarter.com/projects/145553614/star-trek-renegades">Kickstarter Star Trek</a>
<ul>
<li><a href="http://nkdev.de/misc/kaffee2.jpg">Kaffee ist wichtig!</a></li>
</ul>
</li>
<li><a href="http://www.reddit.com/r/fossworldproblems">Foss world problems</a></li>
<li><a href="http://qubes-os.org/Home.html">Qubes OS</a></li>
<li><a href="http://www.imdb.com/title/tt1371111/">Cloud Atlas</a> (pfleidi)</li>
<li><a href="http://www.pornkins.com/store">Pornkins</a></li>
<li><a href="http://2012.jsconf.eu/speaker/2012/08/24/inspector-web-and-the-mystery-of-the-shadow-dom.html">Inspector web and the mystery of the shadow DOM</a> (pfleidi)</li>
<li><a href="http://terriblelinuxwallpaper.tumblr.com/">Terrible Linux Wallpapers</a> via daswort</li>
<li><a href="http://de.wikipedia.org/wiki/Castle_%28Fernsehserie%29">Castle</a></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #30 - Yodafone]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/10/26/binaergewitter-talk-number-30-yodafone/"/>
<updated>2012-10-26T12:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/10/26/binaergewitter-talk-number-30-yodafone</id>
<content type="html"><![CDATA[<p>Ohne Pfleidi aber mit News, Messen und mehr Graveyards….</p>
<h2>Open Apache Graveyard der Woche</h2>
<ul>
<li><a href="http://www.pro-linux.de/news/1/19022/cordovaphonegap-wird-top-level-projekt-von-apache.html">aka Phonegap</a></li>
</ul>
<h2>Unterwegs der Woche: Ingo, Felix</h2>
<ul>
<li><a href="http://ubucon.de">Ubucon</a></li>
<li><a href="http://www.messe-stuttgart.de/it-business/">IT / Business Messe in Stuttgart</a></li>
<li>IT-SA Nuernberg</li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="https://fragdenstaat.de/anfrage/erste-durchfuhrungsverordnung-zum-heilpraktikergesetz/">Hitler</a>
<ul>
<li>[Aufzug] ( http://simplypix.files.wordpress.com/2010/02/aufzugold.jpg )</li>
</ul>
</li>
<li><a href="http://qype.de">Qype</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.bekkelund.net/2012/10/22/outlawed-by-amazon-drm/">Amazon Kindle DRM Fuckup</a></li>
<li><a href="http://publicaddress.net/onpoint/msds-leaky-servers/">MSD’s leaky servers</a> (rb2k)</li>
<li><a href="http://www.scmagazine.com.au/News/318935,lone-packet-cripples-telco-networks.aspx">SS7 stinkt</a> (rb2k)</li>
<li><a href="http://www.golem.de/news/desktop-mozilla-arbeitet-an-h-264-unterstuetzung-fuer-firefox-1210-95271.html">Mozilla arbeitet an H.264 Support</a></li>
<li><a href="http://map.honeynet.org/">HoneyMap</a></li>
<li><a href="http://anatomyofahoax.tumblr.com/">Anatomy of a Hoax - Sony Nexus X</a></li>
<li><a href="http://yro.slashdot.org/story/12/10/21/0720241/spammers-using-shortened-gov-urls">Shortened .gov URL</a></li>
<li><a href="http://www.pro-linux.de/news/1/19027/wayland-und-weston-10-erschienen.html">Wayland und Weston 1.0</a></li>
<li><a href="http://www.forbes.com/sites/andygreenberg/2012/10/19/darpa-funded-radio-hackrf-aims-to-be-a-300-wireless-swiss-army-knife-for-hackers/">HackRF</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/PlayStation-3-angeblich-final-gehackt-1736203.html">Playstation Final Hack</a>
<ul>
<li><a href="http://www.tortuga-cove.com/forums/viewtopic.php?t=3636&p=8516#p8516">Rogero CEX-4.21</a></li>
<li><a href="http://pastie.org/private/bevpt5jf9kdjg3vrrv05w">Scene Drama + LV0 Keys</a></li>
</ul>
</li>
<li><a href="http://hardware.slashdot.org/story/12/10/22/1757207/samsung-terminates-lcd-contract-with-apple">Samsung beendet LCD Vertrag mit Apple</a></li>
<li><a href="http://science.slashdot.org/story/12/10/22/1634219/scientists-who-failed-to-warn-of-quake-found-guilty-of-manslaughter">Wissenschaftler schuldig des Todschlags wg. falscher Erdbeben Prognose</a></li>
<li><a href="http://tech.slashdot.org/story/12/10/24/1341232/boeings-champ-missile-uses-radio-waves-to-remotely-disable-pcs">Boeing verschiesst Radiowellen um deinen computer zu ownen</a>
<ul>
<li><a href="yro.slashdot.org/story/12/10/24/2226209/facebook-patents-pokes-per-minute-limits">Facebook patentiert </a></li>
</ul>
</li>
<li><a href="http://arstechnica.com/security/2012/10/cisco-machine-gets-listed-by-blackhat-org-that-rents-out-hacked-pcs/">Miet dir deine Cisco Box</a></li>
<li><a href="http://hardware.slashdot.org/story/12/10/23/2342201/arm-code-for-raspberry-pi-goes-open-source-video">Raspberry Pis ARM Kernel wird OSS</a></li>
<li><a href="http://arstechnica.com/information-technology/2012/10/amazon-web-services-outage-once-again-shows-reality-behind-the-cloud/">Die Cloud doch nicht so “wolkig”</a>
<ul>
<li><a href="http://news.ycombinator.net/item?id=4687184">Joyent meint, dass sie viel cooler sind</a></li>
</ul>
</li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://yuzhikov.com/articles/BlurredImagesRestoration1.htm">Blurred image restauration</a> (rb2k)</li>
<li><a href="http://rookiemag.com/2012/10/ira-glass-balloon-animals/">Ira Glass baloon animals</a> (rb2k)</li>
<li><a href="http://blog.headius.com/2012/10/so-you-want-to-optimize-ruby.html">So you want to optimize Ruby</a> (rb2k)
<ul>
<li><a href="http://forums.bukkit.org/threads/optimize-java-for-minecraft-in-a-extreme-way-p-need-feedback-thx-i-am-back.25994/">So you want to optimize Java</a></li>
</ul>
</li>
<li><a href="http://lwn.net/Articles/518329/">How Linux 3.6 almost broke Postgres</a></li>
<li><a href="http://j00ru.vexillium.org/?p=1272">The USB Stick of Death</a></li>
<li><a href="http://news.ycombinator.net/item?id=4682545">Automatic Generation of Regular Expressions</a>
<ul>
<li>Für mehr Regulären Expressionismus im Louvre</li>
</ul>
</li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>Bongstar VDSL Einrichtung auf der Fritzbox</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://qipu.de">qipu</a></li>
<li><a href="http://www.bindshell.net/tools/beef.html">Beef</a></li>
<li><a href="http://www.ebaumsworld.com/flash/play/80986704/">CS 1.6 sounds</a></li>
<li><a href="http://userdatamanifesto.org/">User Data Manifestio</a> (Ingo)
<ul>
<li><a href="http://www.psychologytoday.com/blog/psychologist-the-movies/201111/relationship-violence-in-twilight">How “Twilight” teaches teens to love abusive relationships</a></li>
</ul>
</li>
<li><a href="http://theprofoundprogrammer.com/">The Profound programmer</a></li>
<li><a href="i.imgur.com/7OTTZ.jpg">Cocktails mixen</a></li>
<li><a href="http://moviesascode.net/">Movies as Code</a> via daswort</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #29 - Alarm für CORBA 11]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/10/19/binaergewitter-talk-number-29-alarm-fuer-corba-11/"/>
<updated>2012-10-19T12:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/10/19/binaergewitter-talk-number-29-alarm-fuer-corba-11</id>
<content type="html"><![CDATA[<p>Auch giftige Kontaktlinsenflüssigkeit hält uns nicht davon ab euch auch diesmal unsere Weisheiten des Lebens zu präsentieren, damit dies gelingt gründen wir eine Selbsthilfegruppe…</p>
<h2>Kategorie des Lebens</h2>
<ul>
<li><a href="http://arstechnica.com/security/2012/10/solar-panel-control-systems-vulnerable-to-hacks/">Man kann alles kaputt machen - Heute: Solar Panel Kontrollsysteme</a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/SCADA">SCADA</a></li>
</ul>
</li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://blog.echofon.com/2012/10/changes-coming-for-echofon-desktop-users.html">echofon</a> via @t1m0_o</li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li><a href="http://www.pro-linux.de/news/1/19012/apache-software-foundation-graduiert-openoffice.html">OpenOffice offiziell Apache Top Level Projekt</a> aka “Die Zombies vom Open Apache Graveyard”</li>
<li><a href="http://www.pro-linux.de/news/1/19011/webos-als-live-system-vorgestellt.html">WTF WebOS Dektop Live-System</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://arstechnica.com/security/2012/10/steam-vulnerability-can-lead-to-remote-insertion-of-malicious-code/">Durch die installierte Steam App geowned</a></li>
<li><a href="http://arstechnica.com/science/2012/10/contact-lens-solution-hosts-giant-virus-ecosystem-of-parasites/">Gigantischer Virus in Kontaktlinsenflüssigkeit gefunden</a></li>
<li><a href="http://www.golem.de/news/origin-massenhaft-kostenlose-downloads-durch-key-panne-1210-95089.html">Kostenlose Spiele bei Origin</a></li>
<li><a href="http://www.raspberrypi.org/archives/2180">Raspberry Pie bekommt mehr RAM</a></li>
<li><a href="http://arstechnica.com/apple/2012/10/apple-puts-money-where-its-mouth-is-pays-for-swiss-railway-clock-design">Apple wirft Geld auf schweizer Bahn um das Uhrdesign nutzen zu dürfen</a></li>
<li><a href="http://torrentfreak.cjom/3d-printer-drm-patent-to-stop-people-downloading-a-car-121012/">3D Printer DRM Patente damit die Leute keine Autos mehr downloaden</a></li>
<li><a href="https://epetitionen.bundestag.de/petitionen/_2012/_08/_28/Petition_35441.html">epetition gegen die GEMA-Vermutung</a></li>
<li><a href="http://c3s.cc/">Creative Commons Verwertungsgesellschaft</a></li>
<li><a href="http://www.golem.de/news/razzia-vorbeugung-pirate-bay-entschwebt-in-die-cloud-1210-95157.html">The pirate bay zieht in die cloud</a></li>
<li><a href="https://www.dropbox.com/spacerace">Dropbox Spacerace</a></li>
<li><a href="http://www.pro-linux.de/news/1/19006/mediacenter-distribution-openelec-20-erschienen.html">openelec 2.0</a>
<ul>
<li>VLC mit Opus</li>
<li><a href="http://en.wikipedia.org/wiki/VC-1">Wiki VC-1</a></li>
</ul>
</li>
<li><a href="http://www.google.com/about/datacenters/gallery/#/">Google Datacenters</a>
<ul>
<li><a href="https://www.youtube.com/watch?feature=player_embedded&v=avP5d16wEp0">Explore a Google data center with Street View</a></li>
<li><a href="http://www.google.com/about/datacenters/inside/streetview/">Datacenter Street view</a></li>
<li><a href="http://twitter.com/pfleidi/status/259002769271296000/photo/1">Stormtrooper im Datacenter</a></li>
</ul>
</li>
<li><a href="https://www.google.com/search?q=conways+game+of+life">Googles Conways game of life</a></li>
<li><a href="https://www.humblebundle.com/">Humble eBook Bundle - jetzt mit XKCD V0</a></li>
<li><a href="http://www.golem.de/news/nightly-builds-firefox-mit-webrtc-1210-95086.html">Firefox nightly bekommt WebRTC</a>
<ul>
<li><a href="http://www.webrtc.org/reference/architecture">WebRTC Architektur</a></li>
<li><a href="http://www.w3.org/TR/webrtc/">WebRTC Spec</a></li>
</ul>
</li>
<li><a href="http://www.golem.de/news/whispercast-for-kindle-jedem-schueler-das-gleiche-schul-e-book-1210-95147.html">Kindle Whispercast</a></li>
<li><a href="http://www.amazon.de/gp/help/customer/display.html/?ie=UTF8&camp=1638&creative=19454&linkCode=ur2&nodeId=200935230&site-redirect=de&tag=trektrip">Amazon Cloudplayer</a>
<ul>
<li><a href="http://www.amazon.de/gp/product/B005VYHQ7U/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B005VYHQ7U&linkCode=as2&tag=trektrip">Hörspiel Mark Brandis Alarm für die Erde</a></li>
</ul>
</li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://gregable.com/2010/09/why-you-should-know-just-little-awk.html">Everyone should know a little awk</a> (pfleidi)</li>
<li><a href="https://www.youtube.com/watch?v=r7xnKSPWTjo&feature=player_embedded">Broken promises of HTML5</a></li>
<li><a href="http://hbr.org/2006/10/sleep-deficit-the-performance-killer">Sleep deficit - the performance killer</a> (pfleidi)</li>
<li><a href="http://vertstudios.com/blog/new-flask-site/">Converting a simple website to Python Flask</a></li>
<li><a href="https://speakerdeck.com/u/jeg2/p/10-things-you-didnt-know-ruby-could-do">10 things you didn’t know ruby could do</a> (pfleidi)</li>
<li><a href="https://speakerdeck.com/u/mitsuhiko/p/didntknow">Things you didn’t know about Python</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>Backup zeugs
<ul>
<li><a href="http://en.wikipedia.org/wiki/Comparison_of_online_backup_services">Vergleich von Backup Diensten</a></li>
<li><a href="http://www.haystacksoftware.com/arq/">Arq</a></li>
<li><a href="http://www.crashplan.com/">Crashplan</a></li>
<li><a href="http://www.acronis.de/backup-recovery/smallbusiness.html">Acronis</a></li>
</ul>
</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://webconverger.org/upgrade/">Linux Distro auf git</a> via @lightonflux</li>
<li><a href="http://www.youtube.com/watch?v=8DZkpynFhak&feature=player_embedded">Benefits of being a CISSP</a></li>
<li><a href="http://blog.programmableweb.com/2012/10/17/rise-of-the-spambots-3-apis-for-beating-captchas/">3 APIs For Beating CAPTCHAs</a></li>
<li><a href="https://www.amazon.de/dp/B003L20HI4/ref=as_li_ss_til?tag=pfleidi-21">Brita Wasserfilter</a> (pfleidi)</li>
<li><a href="https://www.amazon.de/dp/B0027V9WX6/ref=as_li_ss_til?tag=pfleidi-21">Biomus Glas Karaffe</a> (pfleidi)</li>
<li><a href="https://github.com/bastinat0r/random-cooking">Random Cooking</a> via @Bastinat0r</li>
<li><a href="http://www.espressomushroom.co.uk/">Espresso Mushroom Grow Set</a> (pfleidi)</li>
<li><a href="https://github.com/mojombo/chronic">Chronic Gem</a> (pfleidi)</li>
<li><a href="http://ubucon.de">Ubucon</a> (ingo)</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #28 - Kindle Whitepaper]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/10/12/binaergewitter-talk-number-28-kindle-whitepaper/"/>
<updated>2012-10-12T11:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/10/12/binaergewitter-talk-number-28-kindle-whitepaper</id>
<content type="html"><![CDATA[<p>Diesmal etwas kürzer als gewohnt, aber nicht weniger witzig oder informativ. Wir reden über Pokemons, Owncloud 4.5 und UFOs….</p>
<h2>Blast from the Past</h2>
<ul>
<li><a href="http://arstechnica.com/tech-policy/2012/10/i-am-calling-you-from-windows-a-tech-support-scammer-dials-ars-technica/">I am calling you from Windows</a></li>
</ul>
<h2>Kategorie der Woche</h2>
<h3>Nerd der Woche</h3>
<ul>
<li><a href="http://entertainment.slashdot.org/story/12/10/08/1249240/student-publishes-extensive-statistics-on-the-population-of-middle-earth">Student publiziert Statistiken ueber Mittelerde</a></li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://www.bbc.co.uk/news/world-us-canada-19879379">Typ sirbt nach Kakalaken Contest</a></li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li><a href="http://www.youtube.com/watch?v=yWLClUwAHGc">Sim City</a> (marc)</li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://arstechnica.com/security/2012/10/mcafee-trust-guard-certifications-can-make-websites-less-safe/">Trust Guard certifications can make websites less safe</a></li>
<li><a href="http://features.peta.org/pokemon-black-and-white-parody/">Petamon</a> (marc)</li>
<li><a href="https://github.com/pagespeed/ngx_pagespeed">nginx version of mod_pagespeed</a> (marc)</li>
<li><a href="https://owncloud.com/blog/another-great-community-effort-meet-owncloud-4-5">Owncloud 4.5</a></li>
<li><a href="http://news.cnet.com/8301-1035_3-57526994-94/android-users-outraged-over-motorolas-broken-promise/">Motorolla Android updates… not</a></li>
<li><a href="http://mashable.com/2012/10/02/ew-has-smartphone-inside/">Entertainment weekly smartphone foo</a> (marc)</li>
<li><a href="https://www.edis.at/en/server/colocation/austria/raspberrypi/">RPi Colocation</a></li>
<li><a href="http://www.boredpanda.org/famous-old-photographs-restored-in-color/">Famous Old Photographs Restored in Color</a>
<ul>
<li><a href="http://www.huffingtonpost.com/bianca-bosker/normalize-instagram-app_b_1812556.html">Normalize Instagram undo</a></li>
</ul>
</li>
<li><a href="http://www.extremetech.com/extreme/137505-us-air-forces-1950s-supersonic-flying-saucer-declassified">UFOs von der US Air Force deklassifiziert</a></li>
<li><a href="http://www.amazon.de/gp/product/B007OZO03M/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B007OZO03M&linkCode=as2&tag=trektrip">Kindle Paperwhite</a></li>
<li><a href="http://androidheadlines.com/2012/10/featured-in-2011-more-money-at-apple-and-google-went-towards-patents-than-rd.html">In 2011, More Money At Apple And Google Went Towards Patents Than R&D</a></li>
<li><a href="https://github.com/iamultra/xmppmitm">XMPPMITM</a></li>
</ul>
<h2>Lesefoo</h2>
<ul>
<li><a href="http://webplatform.org">WebPlatform</a> (pfleidi)
<ul>
<li><a href="http://paulirish.com/2012/why-im-so-excited-about-web-platform-docs/">Blog Post von Paul Irish</a></li>
</ul>
</li>
<li><a href="http://www.youtube.com/watch?feature=player_embedded&v=mWtJwlv7TtU">How we test Acquia Cloud</a> (marc)</li>
<li><a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.6.8122">Consistency maintenance in peer-to-peer file sharing networks</a> (pfleidi)</li>
<li><a href="http://www.businessweek.com/articles/2012-10-08/the-only-earthling-with-a-facebook-dislike-button">Facebook Release Engineer Interview</a> (marc)</li>
<li><a href="http://www.phptherightway.com/">PHP the right way</a></li>
<li><a href="http://ikaisays.com/2012/10/04/clearing-up-some-things-about-linkedin-mobiles-move-from-rails-to-node-js/">Linkedin’s move from rails to node</a> (marc)</li>
<li><a href="http://pulse.sportngin.com/news_article/show/153460">Load testing mit em-proxy</a> (marc)</li>
<li><a href="http://en.wikipedia.org/wiki/ReDoS">ReDos - Regex Denial of Service</a></li>
</ul>
<h2>Mimimi der Woche</h2>
<ul>
<li>MacBook Pro black screen</li>
<li>FUCKING SCHEISS HP DRUCKER
<ul>
<li>Idee für progressive rock band: “Paper Jam”</li>
</ul>
</li>
</ul>
<h2>Picks</h2>
<ul>
<li><a href="http://www.rockbox.org/">Rockbox Firmware</a>
<ul>
<li><a href="http://www.rockbox.org/wiki/SoundCodecs">SoundCodec in Rockbox</a></li>
</ul>
</li>
<li><a href="https://twitter.com/morgonfreeman">@MorgonFreeman</a>
<ul>
<li>dagegen (marc)</li>
</ul>
</li>
<li><a href="http://www.hoaxilla.com/">Hoaxilla mit Vorspann hinten</a></li>
<li><a href="http://www.audioponies.de/">Die Strömung</a></li>
<li><a href="https://www.amazon.de/dp/B001BWQTOC/ref=as_li_ss_til?tag=pfleidi-21">Gum Pro</a> (pfleidi)</li>
<li><a href="https://www.youtube.com/watch?v=4dKwHOfd2dk&feature=player_embedded">Bottle beware!</a></li>
<li><a href="https://www.amazon.de/dp/B001AX8QUM/ref=as_li_ss_til?tag=pfleidi-21">Funk Steckdosen</a> (pfleidi)</li>
<li><a href="http://www.amazon.de/gp/product/B000PJ56E6/ref=as_li_ss_tl?ie=UTF8&camp=1638&creative=19454&creativeASIN=B000PJ56E6&linkCode=as2&tag=trektrip">Sodastream Pinguin</a></li>
<li><a href="http://www.youtube.com/user/EvolutionDocumentary">Evolution Documentary</a> (pfleidi)
<ul>
<li><a href="https://github.com/rb2k/viddl-rb">viddl-rb</a></li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Binärgewitter Talk #27 - Open Apache Graveyard]]></title>
<link href="http://blog.binaergewitter.de/blog/2012/10/05/binaergewitter-talk-number-27-open-apache-graveyard/"/>
<updated>2012-10-05T15:30:00+02:00</updated>
<id>http://blog.binaergewitter.de/blog/2012/10/05/binaergewitter-talk-number-27-open-apache-graveyard</id>
<content type="html"><![CDATA[<p>Seit langem mal wieder vollzählig, auch wenn Ingo immer noch oft rumhustet.</p>
<h2>Apropos Vorletzte Woche</h2>
<ul>
<li>howto ohne neu installieren fixen</li>
<li>Iphone Apps koennen (entgegen Marcs Theorie vom “3000x3000” pixel virtual display) /nicht/ sofort vom grossen display Profitieren <a href="http:///arstechnica.com/apple/2012/09/iphone-5-a-little-bit-taller-a-little-bit-baller/">Source</a>
<ul>
<li>Android ähnliche Verhältnisse!!1elf!</li>
</ul>
</li>
<li>Jetzt mit Opus-Feed</li>
</ul>
<h2>Toter der Woche</h2>
<ul>
<li><a href="http://arstechnica.com/staff/2012/10/r-i-p-itunes-ping-2010-2012/">ITunes Ping ist tot</a></li>
</ul>
<h2>Untoter der Woche</h2>
<ul>
<li><a href="https://new.myspace.com/">Myspace Reboot</a></li>
<li><a href="http://www.heise.de/open/meldung/Jolla-schmiedet-MeeGo-Allianz-1722737.html">MeeGo</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://boingboing.net/2012/10/02/ex-tsa-agent-stealing-is-comm.html">Apropos TSA ist nen scheiss…</a></li>
<li><a href="http://www.enterprisenetworkingplanet.com/netsp/u.s.-government-paves-the-way-to-ipv6-with-mandate-compliance.html">US Behoerden MUESSEN per IPv6 erreichbar sein</a></li>
<li><a href="http://science.slashdot.org/story/12/10/02/2246242/super-bacteria-create-gold">Alchemie in der Neuzeit - Super Bakterien erzeugen Gold</a></li>
<li><a href="http://arstechnica.com/apple/2012/10/apple-revising-mfi-program-to-limit-third-party-lightning-accessories/">Apples MFi Program</a></li>
<li><a href="http://arstechnica.com/gaming/2012/09/unreal-tournament-bots-appear-more-human-than-humans/">Unreal Tournament Bots verhalten sich menschlicher als menschliche Spieler</a></li>
<li><a href="http://www.newscientist.com/article/dn22336-quantum-measurements-leave-schrodingers-cat-alive.html">Schroedingers Katze nicht mehr tot oder lebendig</a></li>
<li><a href="http://hackaday.com/2012/10/03/finally-an-arm-powered-arduino/">ARM-Powered Arduino</a></li>
<li><a href="http://tent.io">Tent.io/Tent.is</a>
<ul>
<li><a href="http://itunes.apple.com/us/app/hello-cruel-world/id396044348?mt=8">Andere Dinge vom selben Hersteller</a></li>
</ul>
</li>
<li><a href="http://www.bbc.com/news/technology-19699196">Megaupload - <code>Unlawful Spying</code> der Regierung</a></li>
<li><a href="http://yro.slashdot.org/story/12/09/24/1446220/shuttleworth-trust-us-were-trying-to-make-shopping-better">Ubuntu soll cash generieren mit Werbung</a></li>
<li><a href="http://news.ycombinator.net/item?id=4607744">15 Jahre Slashdot</a></li>
<li><a href="http://arstechnica.com/security/2012/09/adobe-to-revoke-crypto-key-abused-to-sign-5000-malware-apps/">Adobe verliert Code Signing Key</a></li>
<li><a href="http://en.fogofworld.com/">Real-life fog of war</a> (rb2k)
<ul>
<li><a href="http://blog.osmfoundation.org/2012/10/02/apple-maps/">Apple OSM</a></li>