-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.xml
2146 lines (1863 loc) · 124 KB
/
posts.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"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>napcae's mind</title>
<link>http://napcaesmind.de/blog</link>
<description>RSS feed for napcae's mind</description>
<atom:link href="http://napcaesmind.de/blog/feed" rel="self" type="application/rss+xml" />
<item>
<title>Remotely reboot a FileVault 2 protected Mac</title>
<description><![CDATA[<p>So this is one is pretty neat.
If your Mac is far away(or you are lying in your bed) and you want to restart your Mac, you can just <code>sudo shutdown -r now</code>. </p>
<p>But what if your Mac is FileVault 2 protected and encrypted? Who is typing the password for you into the keyboard?
The answer? Just use <code>sudo fdesetup authrestart</code> and you are good to go!</p>
]]></description>
<link>http://napcaesmind.de/blog/filevault_remotely</link>
<pubDate>Tue, 21 Jan 2014 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/filevault_remotely</guid>
</item>
<item>
<title>A recent survey says</title>
<description><![CDATA[<p><img src="http://31.media.tumblr.com/5e87c27fb6a2e1cf6ee0b2f3e0ebdc77/tumblr_ms5bltnFyV1qz6f9yo1_500.jpg" width="500" class="img-polaroid"/> </p>
]]></description>
<link>http://napcaesmind.de/blog/2013/08/survey</link>
<pubDate>Tue, 27 Aug 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/08/survey</guid>
</item>
<item>
<title>Moderat - "Bad Kingdom"</title>
<description><![CDATA[<p>Moderat, the electronic music group from Berlin released a new single called Bad Kingdom. <br>
It features hand-drawn imagery which tells a story of corruption and greed.
<div class="elastic-video">
<iframe width="560" height="315" src="//www.youtube.com/embed/I1gewNVv1UY?theme=light" frameborder="0" allowfullscreen></iframe>
</div>
<br>
I guess it's a promo for their upcoming new album "Moderat II", which will be released August 2013. Awesome Song :)</p>
]]></description>
<link>http://napcaesmind.de/blog/2013/07/moderat_kingdom</link>
<pubDate>Wed, 24 Jul 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/07/moderat_kingdom</guid>
</item>
<item>
<title>Welcome to my new blog</title>
<description><![CDATA[<p>I decided to switch from wordpress to pico. <a href="test">Pico</a> is a lightweight CMS and/or blogging software without the need of a database.
I'll also try to write more often and probably longer articles here and then.</p>
<p>Everything is hosted on my Raspberry now and this is just a test for my auto post-receive hook for git.</p>
<p>Here's a kitten video for your delight.
<div class="elastic-video">
<iframe src="http://www.youtube.com/embed/D36JUfE1oYk?theme=light"
frameborder="0" width="575" height="350" allowfullscreen="allowfullscreen"></iframe>
</div></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/07/first_post</link>
<pubDate>Tue, 16 Jul 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/07/first_post</guid>
</item>
<item>
<title>#Breakfast like a #sir</title>
<description><![CDATA[<p><img src="http://distilleryimage0.s3.amazonaws.com/172e524ee6ef11e2affb22000aa8059e_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagram.com/p/bdhI8amVkc/">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/07/breakfast-like-a-sir</link>
<pubDate>Sun, 07 Jul 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/07/breakfast-like-a-sir</guid>
</item>
<item>
<title>#bahn #mi #coco #berlin nom.</title>
<description><![CDATA[<p><img src="http://distilleryimage11.s3.amazonaws.com/85c3e058db2c11e287df22000ae803ad_7.jpg" width="500" class="img-polaroid" /><br />
via <a href="http://instagram.com/p/a2-4eRmVhH">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/06/bahn-mi-coco-berlin-nom</link>
<pubDate>Sat, 22 Jun 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/06/bahn-mi-coco-berlin-nom</guid>
</item>
<item>
<title>finally #sun over #munich #englischer #garten</title>
<description><![CDATA[<p><img src="http://distilleryimage5.s3.amazonaws.com/45f18616cfc811e29bac22000a9f13d0_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagram.com/p/aRp5BZmVnx/">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/06/finally-sun-over-munich-englischer-garten</link>
<pubDate>Sat, 08 Jun 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/06/finally-sun-over-munich-englischer-garten</guid>
</item>
<item>
<title>Mit Sternen ist dit wie mit den Zähnen, nachts kommen se raus!</title>
<description><![CDATA[<div class="elastic-video">
<iframe width="420" height="315" src="//www.youtube.com/embed/VREe4FzaAww?theme=light" frameborder="0" allowfullscreen></iframe>
</div>
]]></description>
<link>http://napcaesmind.de/blog/2013/05/mit-sternen-ist-dit-wie-mit-den-zahnen-nachts-kommen-se-raus</link>
<pubDate>Wed, 22 May 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/05/mit-sternen-ist-dit-wie-mit-den-zahnen-nachts-kommen-se-raus</guid>
</item>
<item>
<title>#Gonzales – #Musical #Genius ! It was just awesome!</title>
<description><![CDATA[<p><img src="http://distilleryimage1.s3.amazonaws.com/e7a8c8dabc1211e298a922000a1faffb_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagram.com/p/ZREuarGVg5">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/05/gonzales-musical-genius-it-was-just-awesome</link>
<pubDate>Mon, 13 May 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/05/gonzales-musical-genius-it-was-just-awesome</guid>
</item>
<item>
<title>#party #hard #cat #horse</title>
<description><![CDATA[<p><img src="http://distilleryimage2.s3.amazonaws.com/43194cd2ab1311e2918122000a9f4d8a_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagram.com/p/YZX3AXGVs2">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/04/party-hard-cat-horse</link>
<pubDate>Mon, 22 Apr 2013 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2013/04/party-hard-cat-horse</guid>
</item>
<item>
<title>that’s my motto! #bvg</title>
<description><![CDATA[<p><img src="http://distilleryimage5.s3.amazonaws.com/9c6490288ca811e2876222000a9f0a1b_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/W1tCOnmVmt">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/03/thats-my-motto-bvg</link>
<pubDate>Thu, 14 Mar 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/03/thats-my-motto-bvg</guid>
</item>
<item>
<title>fuckin home #gesundbrunnen #berlin</title>
<description><![CDATA[<p><img src="http://distilleryimage4.s3.amazonaws.com/3cedeeb6883711e2b05122000a1f92cb_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/WnJTIemVtc">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/03/fuckin-home-gesundbrunnen-berlin</link>
<pubDate>Fri, 08 Mar 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/03/fuckin-home-gesundbrunnen-berlin</guid>
</item>
<item>
<title>it’s time;D #pebble #smartwatch</title>
<description><![CDATA[<p><img src="http://distilleryimage10.s3.amazonaws.com/f1a0a19e868111e2abd422000a9f4de4_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/WhjEUuGVvK">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/03/its-timed-pebble-smartwatch</link>
<pubDate>Wed, 06 Mar 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/03/its-timed-pebble-smartwatch</guid>
</item>
<item>
<title>ja das wär schön;D #bierpreis #liter #pfennig #sappralott</title>
<description><![CDATA[<p><img src="http://distilleryimage7.s3.amazonaws.com/6aa917d885dd11e28b9f22000a9e0708_7.jpg" width="500" class="img-polaroid" /><br />
via <a href="http://instagr.am/p/WfcSW_GVrv">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/03/ja-das-war-schond-bierpreis-liter-pfennig-sappralott</link>
<pubDate>Tue, 05 Mar 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/03/ja-das-war-schond-bierpreis-liter-pfennig-sappralott</guid>
</item>
<item>
<title>#calories#dont #count #on #the #weekend #lies #good #night</title>
<description><![CDATA[<p><img src="http://distilleryimage11.s3.amazonaws.com/613cec927d7211e2881c22000a1f9871_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/WD24XaGVtf">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/caloriesdont-count-on-the-weekend-lies-good-night</link>
<pubDate>Sat, 23 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/caloriesdont-count-on-the-weekend-lies-good-night</guid>
</item>
<item>
<title>TBP AFK/Pirate Bay verklagt CIAPC</title>
<description><![CDATA[<p>Geil.</p>
<blockquote>
<p>Die Betreiber der Torrent-Website The Pirate Bay will gegen die Musikindustrie ausgerechnet wegen einer angeblichen Urheberrechtsverletzung zu Felde ziehen. Die Betreiber wollen gegen das von Verbänden der Film- und Musikindustrie getragene finnisches Informationszentrum gegen Raubkopien (CIAPC) vorgehen, berichtet TorrentFreak. Auf der Facebook-Seite der Pirate Bay heißt es, die Klage solle sich gegen den finnischen Ableger der Internationalen Vereinigung der Musikindustrie (IFPI) richten.</p>
</blockquote>
<p><a href="http://www.heise.de/newsticker/meldung/Pirate-Bay-will-Musiklobby-wegen-Urheberrechtsverletzung-verklagen-1803873.html">heise.de</a></p>
<p>Passend dazu, die aktuell vor paar Tagen erschienende Doku <a />“TBP AFK: The Pirate Bay Away From Keyboard”</a>. Natürlich per Torrent</a> leechen und seeden;)</p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/tbp-afkpirate-bay-verklagt-ciapc</link>
<pubDate>Fri, 15 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/tbp-afkpirate-bay-verklagt-ciapc</guid>
</item>
<item>
<title>#you #and #I #vs #versus #the #world #friendship</title>
<description><![CDATA[<p><img src="http://distilleryimage3.s3.amazonaws.com/5fc30a9676fa11e2bbaa22000a1fb198_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VuqR-HmVgX">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/you-and-i-vs-versus-the-world-friendship</link>
<pubDate>Fri, 15 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/you-and-i-vs-versus-the-world-friendship</guid>
</item>
<item>
<title>#headstand #stuck #in #snow</title>
<description><![CDATA[<p><img src="http://distilleryimage7.s3.amazonaws.com/2a8e343a738b11e2890a22000a1fbc9a_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VjaCKKmVrv">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/headstand-stuck-in-snow</link>
<pubDate>Sun, 10 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/headstand-stuck-in-snow</guid>
</item>
<item>
<title>AirDrop für iOS Geräte – Instashare</title>
<description><![CDATA[<p>Heute morgen bin ich über <a href="http://www.instashareapp.com">Instashare</a> gestolpert. Ihr könnt damit Daten über Bluetooth und WiFi zwischen <a href="https://itunes.apple.com/de/app/id576220851?mt=8&affId=2221876">iOS Geräten</a> austauschen und mit Hilfe der zugehörigen <a href="http://cl.ly/1r2c2S0r3K37/download/Instashare.zip">Mac App</a> natürlich auch zwischen Macs und iPhones hin und her tauschen wie ihr lustig seid. :)</p>
<p><img src="http://napcae.files.wordpress.com/2013/02/screen-shot-2013-02-07-at-08-41-59.png" alt="Screen Shot 2013-02-07 at 08.41.59" width="300" style="align:center;" /></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/airdrop-fur-ios-gerate-instashare</link>
<pubDate>Thu, 07 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/airdrop-fur-ios-gerate-instashare</guid>
</item>
<item>
<title>#putin #ridin #dirty #bear #grizzly #because #fuck #you</title>
<description><![CDATA[<p><img src="http://distilleryimage8.s3.amazonaws.com/9921437c716711e2829822000a9f1487_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VcZd0nmVlM">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/putin-ridin-dirty-bear-grizzly-because-fuck-you</link>
<pubDate>Thu, 07 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/putin-ridin-dirty-bear-grizzly-because-fuck-you</guid>
</item>
<item>
<title>Let’s work #Sunrise #Good #morning #munich</title>
<description><![CDATA[<p><img src="http://distilleryimage0.s3.amazonaws.com/cb33e45c702f11e28dba22000a1f97e5_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VYaCSlmVs8">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/lets-work-sunrise-good-morning-munich</link>
<pubDate>Wed, 06 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/lets-work-sunrise-good-morning-munich</guid>
</item>
<item>
<title>Kanye West – Runaway</title>
<description><![CDATA[<p>Wunderbarer Kurzfilm mit Kanye West als Darsteller und Regisseur. Zwar schon ein paar Jahre und warscheinlich zur Promo von seinem damalig erschienen Album “808s & Heartbreak”, ändert aber nichts an der Tatsache, dass der Film unbedingt anzuschauen ist! Wunderbare Farben, eine bezaubernde Darstellerin und geile Musik. </p>
<div class="elastic-video"><iframe src="http://player.vimeo.com/video/23099634?title=0&byline=0&portrait=0&color=ffffff" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/kanye-west-runaway</link>
<pubDate>Tue, 05 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/kanye-west-runaway</guid>
</item>
<item>
<title>#creepy #hospital #geometric</title>
<description><![CDATA[<p><img src="http://distilleryimage5.s3.amazonaws.com/d7705f4c6e3c11e2b1c722000a1fba7b_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VSBS04GVl5">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/creepy-hospital-geometric-2</link>
<pubDate>Sun, 03 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/creepy-hospital-geometric-2</guid>
</item>
<item>
<title>#why #are #you #so #awesome #questionmark</title>
<description><![CDATA[<p><img src="http://distilleryimage4.s3.amazonaws.com/5c6366b46e5011e2a2e022000a1faf45_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VSRSM1GVs0">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/02/why-are-you-so-awesome-questionmark</link>
<pubDate>Sun, 03 Feb 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/02/why-are-you-so-awesome-questionmark</guid>
</item>
<item>
<title>#Smile #paper #airplane #airendipity</title>
<description><![CDATA[<p><img src="http://distilleryimage8.s3.amazonaws.com/1b7cbe586b8411e2851d22000a1fb71f_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VJGh44GVjs">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/smile-paper-airplane-airendipity</link>
<pubDate>Thu, 31 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/smile-paper-airplane-airendipity</guid>
</item>
<item>
<title>Sometimes #I #hate #myself #peanuts</title>
<description><![CDATA[<p><img src="http://distilleryimage4.s3.amazonaws.com/53832cba6a5d11e2900e22000a1f96c7_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VFVC32mVn8">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/sometimes-i-hate-myself-peanuts</link>
<pubDate>Tue, 29 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/sometimes-i-hate-myself-peanuts</guid>
</item>
<item>
<title>#Braun #watches #watch #timeless Still love this one</title>
<description><![CDATA[<p><img src="http://distilleryimage7.s3.amazonaws.com/f6264c4e6a1d11e2968922000a9f38c5_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/VEhIuymVpb">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/braun-watches-watch-timeless-still-love-this-one</link>
<pubDate>Tue, 29 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/braun-watches-watch-timeless-still-love-this-one</guid>
</item>
<item>
<title>#creation #of #cat #aww #because #cat</title>
<description><![CDATA[<p><img src="http://distilleryimage0.s3.amazonaws.com/cd5ed400679511e2b8f522000a1fbce9_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/U8OKhHmVrY">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/creation-of-cat-aww-because-cat</link>
<pubDate>Sat, 26 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/creation-of-cat-aww-because-cat</guid>
</item>
<item>
<title>.</title>
<description><![CDATA[<p><a href="https://pinterest.com/pin/215117319673054745/" target="_blank"><img src="http://www.electru.de/wp-content/uploads/aarontyree-devonjade-04.jpg" width="500" class="img-polaroid"/></a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/655</link>
<pubDate>Fri, 25 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/655</guid>
</item>
<item>
<title>#prisma #beautiful #sun #room</title>
<description><![CDATA[<p><img src="http://distilleryimage5.s3.amazonaws.com/4757822a66d311e28a7322000a1fa414_7.jpg" width="500" class="img-polaroid"/><br />
via <a href="http://instagr.am/p/U5uz4bGVjB">Instagram</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/prisma-beautiful-sun-room</link>
<pubDate>Fri, 25 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/prisma-beautiful-sun-room</guid>
</item>
<item>
<title>The World in Minecraft</title>
<description><![CDATA[<p>Tja, da hat sich der Minecraft Spieler <a href="http://www.planetminecraft.com/member/lentebriesje/">lentebriesje</a> wohl gedacht – Hmm, mal die Welt in 1:1500 nachbauen. Kann man machen(oder auch nicht).<br />
<a href="http://www.planetminecraft.com/blog/the-recreation-of-the-earth-11500-scale?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+NerdcoreRSS2+%28Crackajack%29">Klick!</a></p>
<p><img src="http://i.imgur.com/HZ1wR.jpg" width="500px" class="img-polaroid"/><br />
via <a href="http://www.crackajack.com">Nerdcore</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/the-world-in-minecraft</link>
<pubDate>Mon, 07 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/the-world-in-minecraft</guid>
</item>
<item>
<title>Frohes neues!</title>
<description><![CDATA[<p>Und gleich was zu lachen:D</p>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/rNdXezVKeOA?theme=light" frameborder="0" allowfullscreen></iframe></div>
<p>Posaune+GoPro!</p>
]]></description>
<link>http://napcaesmind.de/blog/2013/01/frohes-neues</link>
<pubDate>Sun, 06 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2013/01/frohes-neues</guid>
</item>
<item>
<title>Welcome</title>
<description><![CDATA[<h2>Welcome to Pico</h2>
<p>Congratulations, you have successfully installed <a href="http://pico.dev7studios.com">Pico</a>. Pico is a stupidly simple, blazing fast, flat file CMS.</p>
<h3>Creating Content</h3>
<p>Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create <code>.md</code> files in the "content"
folder and that becomes a page. For example, this file is called <code>index.md</code> and is shown as the main landing page. </p>
<p>If you create a folder within the content folder (e.g. <code>content/sub</code>) and put an <code>index.md</code> inside it, you can access that folder at the URL
<code>http://yousite.com/sub</code>. If you want another page within the sub folder, simply create a text file with the corresponding name (e.g. <code>content/sub/page.md</code>)
and you will be able to access it from the URL <code>http://yousite.com/sub/page</code>. Below we've shown some examples of content locations and their corresponing URL's:</p>
<table>
<thead>
<tr><th>Physical Location</th><th>URL</th></tr>
</thead>
<tbody>
<tr><td>content/index.md</td><td>/</td></tr>
<tr><td>content/sub.md</td><td>/sub</td></tr>
<tr><td>content/sub/index.md</td><td>/sub (same as above)</td></tr>
<tr><td>content/sub/page.md</td><td>/sub/page</td></tr>
<tr><td>content/a/very/long/url.md</td><td>/a/very/long/url</td></tr>
</tbody>
</table>
<p>If a file cannot be found, the file <code>content/404.md</code> will be shown.</p>
<h3>Text File Markup</h3>
<p>Text files are marked up using <a href="http://daringfireball.net/projects/markdown/syntax">Markdown</a>. They can also contain regular HTML.</p>
<p>At the top of text files you can place a block comment and specify certain attributes of the page. For example:</p>
<pre><code>/ *
Title: Welcome
Description: This description will go in the meta description tag
Author: Joe Bloggs
Date: 2013/01/01
Robots: noindex,nofollow
*/
</code></pre>
<p>These values will be contained in the <code>{{ meta }}</code> variable in themes (see below).</p>
<p>There are also certain variables that you can use in your text files:</p>
<ul>
<li><code>%base_url%</code> - The URL to your Pico site</li>
</ul>
<h3>Themes</h3>
<p>You can create themes for your Pico installation in the "themes" folder. Check out the default theme for an example of a theme. Pico uses
<a href="http://twig.sensiolabs.org/documentation">Twig</a> for it's templating engine. You can select your theme by setting the <code>$config['theme']</code> variable
in config.php to your theme folder.</p>
<p>All themes must include an <code>index.html</code> file to define the HTML structure of the theme. Below are the Twig variables that are available to use in your theme:</p>
<ul>
<li><code>{{ config }}</code> - Conatins the values you set in config.php (e.g. <code>{{ config.theme }}</code> = "default")</li>
<li><code>{{ base_dir }}</code> - The path to your Pico root directory</li>
<li><code>{{ base_url }}</code> - The URL to your Pico site</li>
<li><code>{{ theme_dir }}</code> - The path to the Pico active theme direcotry</li>
<li><code>{{ theme_url }}</code> - The URL to the Pico active theme direcotry</li>
<li><code>{{ site_title }}</code> - Shortcut to the site title (defined in config.php)</li>
<li><code>{{ meta }}</code> - Contains the meta values from the current page
<ul>
<li><code>{{ meta.title }}</code></li>
<li><code>{{ meta.description }}</code></li>
<li><code>{{ meta.author }}</code></li>
<li><code>{{ meta.date }}</code></li>
<li><code>{{ meta.date_formatted }}</code></li>
<li><code>{{ meta.robots }}</code></li>
</ul></li>
<li><code>{{ content }}</code> - The content of the current page (after it has been processed through Markdown)</li>
<li><code>{{ pages }}</code> - A collection of all the content in your site
<ul>
<li><code>{{ page.title }}</code></li>
<li><code>{{ page.url }}</code></li>
<li><code>{{ page.author }}</code></li>
<li><code>{{ page.date }}</code></li>
<li><code>{{ page.date_formatted }}</code></li>
<li><code>{{ page.content }}</code></li>
<li><code>{{ page.excerpt }}</code></li>
</ul></li>
<li><code>{{ prev_page }}</code> - A page object of the previous page (relative to current_page)</li>
<li><code>{{ current_page }}</code> - A page object of the current_page</li>
<li><code>{{ next_page }}</code> - A page object of the next page (relative to current_page)</li>
<li><code>{{ is_front_page }}</code> - A boolean flag for the front page</li>
</ul>
<p>Pages can be used like:</p>
<pre><ul class="nav">
{% for page in pages %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul></pre>
<h3>Plugins</h3>
<p>See <a href="http://pico.dev7studios.com/plugins">http://pico.dev7studios.com/plugins</a></p>
<h3>Config</h3>
<p>You can override the default Pico settings (and add your own custom settings) by editing config.php in the root Pico directory. The config.php file
lists all of the settings and their defaults. To override a setting, simply uncomment it in config.php and set your custom value.</p>
<h3>Documentation</h3>
<p>For more help have a look at the Pico documentation at <a href="http://pico.dev7studios.com/docs">http://pico.dev7studios.com/docs</a></p>
]]></description>
<link>http://napcaesmind.de/blog/</link>
<pubDate>Tue, 01 Jan 2013 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/</guid>
</item>
<item>
<title>Pillow Talk + What You Want</title>
<description><![CDATA[<div class="elastic-video">
<iframe width="420" height="315" src="//www.youtube.com/embed/tmw1ayOi5uQ?theme=light" frameborder="0" allowfullscreen></iframe>
</div>
<p><br></p>
<div class="elastic-video">
<iframe width="560" height="315" src="//www.youtube.com/embed/D39anrm4cGo?theme=light" frameborder="0" allowfullscreen></iframe>
</div>
<p><br></p>
<p>Hmmmm…Just enjoy <3</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/12/pillow-talk-what-you-want</link>
<pubDate>Thu, 06 Dec 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/12/pillow-talk-what-you-want</guid>
</item>
<item>
<title>Who the fuck is Jay Z!?</title>
<description><![CDATA[<p>Super Doku über Jay Z und der neuen Barclay Arena :)
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/GBvyEGQeHnk?theme=light" frameborder="0" allowfullscreen></iframe></div></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/12/who-the-fuck-is-jay-z</link>
<pubDate>Wed, 05 Dec 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/12/who-the-fuck-is-jay-z</guid>
</item>
<item>
<title>Olu</title>
<description><![CDATA[<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/lZxFk-TKsD4?theme=light" frameborder="0" allowfullscreen></iframe></div>
<p><br>
Wer ab und zu bei mir in <a href="http://www.lastfm.de/user/napcae">Last.fm</a> reinschaut wird bemerkt haben, dass ein neuer Künstler in meinen Ohren für Freude sorgt. <a href="http://soundcloud.com/oludoit">Olu</a> heißt der gute Mann, aus Cleveland, macht richtig guten Hip Hop und hat auch unter anderem an Sucka Free CJ’s <a href="">Jetpack Shit</a> mitgewirkt.<br />
</br><br />
<a href="http://soundcloud.com/oludoit">Hier sein Soundcloud</a>, <a href="http://www.youtube.com/olugetmoney">hier sein Youtube.</a><br />
Ich lass euch dann mit paar meiner liebsten Songs von ihm alleine:)
Übrigens gibt es alle seine Songs als free Downloads! </p>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/CY-bngPIYCw?theme=light" frameborder="0" allowfullscreen></iframe></div>
<p><br>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/Xz8WtGhlwcQ?theme=light" frameborder="0" allowfullscreen></iframe></div>
<br>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/635RKeig6mw?theme=light" frameborder="0" allowfullscreen></iframe></div></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/olu</link>
<pubDate>Tue, 20 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/olu</guid>
</item>
<item>
<title>Goosebumps!</title>
<description><![CDATA[<p>WOW! Ich bin sprachlos, mir kamen fast die Tränen. Das ist unglaublich geil. Echt Gänsehaut! Also Stimming ne, kennt man. November Morning, seinen Track; kennt man vielleicht auch. So es begab sich also zu einer Zeit im Watergate, da bewegte sich eine Person auf Herrn Stimming nach dem Gig zu und sagte:”Von November Morning, da muss ich eine Orchesterversion machen!”. Wie es weiterging? Seht selbst:</p>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/4R-dVs-DPGs?theme=light" frameborder="0" allowfullscreen></iframe></div>
<p>via <a href="http://www.kaputtmutterfischwerk.de">KFMW</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/goosebumps</link>
<pubDate>Mon, 19 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/goosebumps</guid>
</item>
<item>
<title>The Useless Web</title>
<description><![CDATA[<p>Eine Seite wie <a href="http://www.i-am-bored.com">I am bored</a>: <a href="http://www.theuselessweb.com/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+NerdcoreRSS2+%28Crackajack%29">The Useless Web</a>. Schickt euch in die Gefilde des Internets, so wie ihr sie kennt :)</p>
<p>via <a href="http://www.crackajack.de/2012/11/09/the-useless-web/">René</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/the-useless-web</link>
<pubDate>Sun, 11 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/the-useless-web</guid>
</item>
<item>
<title>AC/DC-Back in Black(Funk Version)</title>
<description><![CDATA[<p>http://www.youtube.com/watch?feature=player_embedded&v=zjBqZfXgvXg#!</p>
<p><a href="http://www.youtube.com/user/AndyRehfeldt?feature=watch">Andy Rehfeldt</a> nimmt sich berühmte Songs, arrangiert sie komplett neu, so dass sie sich danach wie von einem anderen Musikgenre anhören. Macht er super find ich. Adele als Jazz Metal Version ist übrigens auch ziemlich geil!</p>
<p>Guckt euch seinen <a href="http://www.youtube.com/user/AndyRehfeldt?feature=watch">Youtube Channel</a> für mehr Musik wie das da oben an. </p>
<p>Edit: Adele ist gegeofickt > http://v.youku.com/v_show/id_XMzIwNzY1MzIw.html</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/acdc-back-in-blackfunk-version</link>
<pubDate>Sat, 10 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/acdc-back-in-blackfunk-version</guid>
</item>
<item>
<title>Sucka Free CJ</title>
<description><![CDATA[<p><a href="http://suckafreecj.bandcamp.com/album/heavy"><img src="http://f0.bcbits.com/z/40/65/4065067641-1.jpg" width="500" class="img-polaroid" /></a><br />
<br>
Sucka Free CJ – Ein vielleicht noch unbekannter Name, macht aber unglaublich geilen Hip Hop. Mein Bruder hatte mir mal vor längerer Zeit das Album <a href="http://suckafreecj.bandcamp.com/album/ars-gratia-artis">Ars Gratia Artis</a> gezeigt.
<br>
Jetzt kam sein viertes Album raus, ich höre zwar gerade erst den ersten Song aus <a href="http://suckafreecj.bandcamp.com/album/heavy">Heavy</a>, bin aber schon vollkommen überzeugt dass es ebenfalls ein Hammer Album ist!
<br>
Die Platte kostet euch digital nur 7$ in MP3 320, FLAC, oder in eurem gewünschten Format! Als Stream könnt ihr euch jederzeit alle Alben anhören bevor ihr kauft.<br />
Also, zieht es euch mal rein wenn ihr Hip Hop mögt. <img src='http://198.211.112.164/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/sucka-free-cj</link>
<pubDate>Fri, 09 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/sucka-free-cj</guid>
</item>
<item>
<title>Chrome vs Firefox vs wtf.?!</title>
<description><![CDATA[<p>IE wtf.</p>
<p><img src="http://napcae.files.wordpress.com/2012/11/13355584686075_f.jpg" alt="" title="13355584686075_f" class="img-polaroid"/></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/11/chrome-vs-firefox-vs-wtf</link>
<pubDate>Fri, 02 Nov 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/11/chrome-vs-firefox-vs-wtf</guid>
</item>
<item>
<title>Behind the Scenes: Flying Lotus Live Show</title>
<description><![CDATA[<p>Im Zuge der Europa Tour von Flying Lotus, ein kleines Behind the Scenes.</p>
<div class="elastic-video"><iframe src="http://player.vimeo.com/video/52415848" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<p>Update: Link geht wohl nur auf <a href="http://www.wired.com/underwire/2012/10/flying-lotus-live-show/">wired.com</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/behind-the-scenes-flying-lotus-live-show</link>
<pubDate>Tue, 30 Oct 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/behind-the-scenes-flying-lotus-live-show</guid>
</item>
<item>
<title>Internet Survival Kit</title>
<description><![CDATA[<p>Falls ihr also auch mal einen Stromausfall haben solltet oder euer Internetprovider wieder streikt – hier das Internet Survival Kit mit Kätzchen und so:</p>
<h4>contents:</h4>
<ul>
<li>a random apple launch video </li>
<li>20 blog posts from gizmodo, brainpickings, kottke and many more </li>
<li>15 interesting wikipedia pages </li>
<li>must have cat videos </li>
<li>10 funny facebook posts </li>
<li>some useless gifs </li>
<li>30 random google search results </li>
<li>some funny 9gag posts </li>
<li>15 hand picked istock images </li>
<li>some justin bieber fun </li>
<li>more than 10 pinterest pics </li>
<li>one hour of ted videos </li>
<li>some yahoo answers </li>
<li>10 classic youtube videos </li>
<li>plenty of meme templates </li>
<li>so much more!</li>
</ul>
<p><a href="http://internetsurvivalkit.org">Internet Survival Kit</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/internet-survival-kit</link>
<pubDate>Tue, 30 Oct 2012 00:00:00 +0100</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/internet-survival-kit</guid>
</item>
<item>
<title>Iron Man 3</title>
<description><![CDATA[<p>Aus dem Urlaub zurück, aus dem Geburtstag zurück. Ab in den Alltagstrott – aber vorher noch der Iron Man 3 Trailer! April 2013</p>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/5EjG-1U3wqA?theme=light" frameborder="0" allowfullscreen></iframe></div>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/iron-man-3</link>
<pubDate>Tue, 23 Oct 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/iron-man-3</guid>
</item>
<item>
<title>Local IT ninja</title>
<description><![CDATA[<p><img src="http://imgs.xkcd.com/comics/tech_support_cheat_sheet.png" width="500px" border="0" class="img-polaroid"/></img><br />
<br>
still true.</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/local-it-ninja</link>
<pubDate>Tue, 23 Oct 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/local-it-ninja</guid>
</item>
<item>
<title>Reallife Minecraft Analog Display</title>
<description><![CDATA[<p>Okay, klingt bisschen verwirrend. Die koreanische Gruppe <a href="https://www.facebook.com/JONPASANG">Jonpasang</a> hat für Hyundai als eine Installation ein riesiges Display namens <a href="http://www.creativeapplications.net/environment/hyper-matrix-thousands-of-physical-pixels-in-a-180o-vertical-landscape/">“Hyper-Matrix”</a> aus Styroporwürfeln gebaut. Hier erstmal das Video:<br />
<br>
<div class="elastic-video"><iframe src="http://player.vimeo.com/video/46857169" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<br>
Das Making Of hinterher:<br />
<br>
<div class="elastic-video"><iframe src="http://player.vimeo.com/video/48285842" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/reallife-minecraft-analog-display</link>
<pubDate>Mon, 01 Oct 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/reallife-minecraft-analog-display</guid>
</item>
<item>
<title>Bye Bye Feedburner</title>
<description><![CDATA[<p>Wie vielleicht einige schon bei <a href="http://www.heise.de/newsticker/meldung/Google-schaltet-Feedburner-API-ab-1715561.html">Heise.de</a> mitbekommen haben, wird Google wohl in nächster Zeit seinen Dienst Feedburner einstellen. Daher wird mein Blog in Zukunft wieder über http://napcae.wordpress.com/feed/ erreichbar sein.</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/10/bye-bye-feedburner</link>
<pubDate>Mon, 01 Oct 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/10/bye-bye-feedburner</guid>
</item>
<item>
<title>Until The Quiet Comes</title>
<description><![CDATA[<p>Hatte ich irgendwas von <a href="/blog/2012/08/alice-coltrane-prema-fly-first">Flying Lotus’</a> neues Album berichtet? Auf jeden Fall gibt es diesen jetzt anzuhören für Umme im Stream auf <a href="http://www.npr.org/2012/09/23/161299030/first-listen-flying-lotus-until-the-quiet-comes">npr.org</a><br />
<img src="http://flying-lotus.com/wp-content/uploads/2012/09/Group.jpg" width="500px" class="img-polaroid"/><br />
Zum Vorbestellen geht es <a href="http://flying-lotus.com/watch-until-the-quiet-comes-short-film/">hier</a> entlang!</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/09/until-the-quiet-comes</link>
<pubDate>Wed, 26 Sep 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/09/until-the-quiet-comes</guid>
</item>
<item>
<title>BBC Radio One Essentials Mix: Nicolas Jaar</title>
<description><![CDATA[<p>Jaa, ich weiß; ist schon bisschen älter:</p>
<iframe width="100%" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F84724668&color=0088cc&auto_play=false&show_artwork=true"></iframe>
<p>Viele Worte muss man nicht darüber verlieren. Genießt es einfach.</p>
<p>Ich bin jetzt erstmal im Urlaub. Blog steht als länger still.</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/09/bbc-radio-one-essentials-mix-nicolas-jaar</link>
<pubDate>Fri, 07 Sep 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/09/bbc-radio-one-essentials-mix-nicolas-jaar</guid>
</item>
<item>
<title>Shlohmo, L.A., Boiler Room</title>
<description><![CDATA[<p>Nich lang schnacken, Kopfhörer rauf und go! Absolut geiler Hip Hop Mix! :)</p>
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F57976321&color=0088cc&auto_play=false&show_artwork=true"></iframe>
<p>Video gibts auch, findet ihr im Netz. Da gibts nämlich kein Ton zu-.-</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/08/shlohmo-l-a-boiler-room</link>
<pubDate>Thu, 30 Aug 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/08/shlohmo-l-a-boiler-room</guid>
</item>
<item>
<title>“Diese Seiten unterstützen das Leistungsschutzrecht”</title>
<description><![CDATA[<p>Zum Glück steht die Zeit nicht mit drin. Aber dass die Süddeutsche und FAZ mit aufgelistet sind, wundert mich nicht.</p>
<ul>
<li>aachener-zeitung.de </li>
<li>a-beig.de </li>
<li>abendblatt.de </li>
<li>abendzeitung.de </li>
<li>aerztezeitung.de </li>
<li>aller-zeitung.de </li>
<li>allgaeuer-anzeigeblatt.de </li>
<li>allgemeine-zeitung.de </li>
<li>all-in.de </li>
<li>alsfelder-allgemeine.de </li>
<li>an-online.de </li>
<li>art-magazin.de </li>
<li>augsburger-allgemeine.de </li>
<li>autobild.de </li>
<li>azonline.de </li>
<li>badisches-tagblatt.de </li>
<li>badische-zeitung.de </li>
<li>bams.de </li>
<li>barmstedter-zeitung.de </li>
<li>bayerische-staatszeitung.de </li>
<li>bb-live.de </li>
<li>bbv-net.de </li>
<li>berchtesgadener-anzeiger.de </li>
<li>bergedorfer-zeitung.de </li>
<li>bietigheimerzeitung.de </li>
<li>bild.de </li>
<li>bildderfrau.de </li>
<li>bkz-online.de </li>
<li>böhme-zeitung.de </li>
<li>boerse-online.de </li>
<li>borkenerzeitung.de </li>
<li>boyens-zeitungen.de </li>
<li>braunschweiger-zeitung.de </li>
<li>brigitte.de </li>
<li>brv-zeitung.de </li>
<li>bunte.de </li>
<li>burdastyle.de </li>
<li>bz-berlin.de </li>
<li>capital.de </li>
<li>cellesche-zeitung.de </li>
<li>chip.de </li>
<li>cinema.de </li>
<li>cn-online.de </li>
<li>computerbild.de </li>
<li>computeruniverse.net </li>
<li>der-bote.de </li>
<li>derpatriot.de </li>
<li>derwestallgaeuer.de </li>
<li>derwesten.de </li>
<li>dewezet.de </li>
<li>die-glocke.de </li>
<li>dieoberbadische.de </li>
<li>dill.de </li>
<li>dk.online.de </li>
<li>dld.com </li>
<li>dnn-online.de </li>
<li>donau.de </li>
<li>eberbacher-zeitung.de </li>
<li>echo-online.de </li>
<li>eltern.de </li>
<li>eppsteiner-zeitung.de </li>
<li>express.de </li>
<li>ez-online.de </li>
<li>ez-online.de </li>
<li>faz.net </li>
<li>flensborg-avis.de </li>
<li>flz.de </li>
<li>fnp.de </li>
<li>fnweb.de </li>
<li>focus.de </li>
<li>fr-aktuell.de </li>
<li>frankenpost.de </li>
<li>freundin.de </li>
<li>ftd.de </li>
<li>fuldaerzeitung.de </li>
<li>gaeubote.de </li>
<li>gala.de </li>
<li>gandersheimer-kreisblatt.de </li>
<li>ga-online.de </li>
<li>gea.de </li>
<li>geislinger-zeitung.de </li>
<li>gelnhaeuser-tageblatt.de </li>
<li>general-anzeiger-bonn.de </li>
<li>geo.de </li>
<li>giessener-allgemeine.de </li>
<li>giessener-anzeiger.de </li>
<li>gmuender-tagespost.de </li>
<li>gn-online.de </li>
<li>goettinger-tageblatt.de </li>
<li>gofeminin.de </li>
<li>goslarsche-zeitung.de </li>
<li>guterrat.de </li>
<li>haller-kreisblatt.de </li>
<li>hallertagblatt.de </li>
<li>hanauer-anzeiger.de </li>
<li>handelsblatt.com </li>
<li>han-online.de </li>
<li>harke-online.de </li>
<li>haz.de </li>
<li>hdv-direkt.de </li>
<li>hellwegeranzeiger.de </li>
<li>hersbrucker-zeitung.de </li>
<li>hersfelder-zeitung.de </li>
<li>heute.de </li>
<li>hildesheimer-allgemeine.de </li>
<li>hna.de </li>
<li>hnp-online.de </li>
<li>hofer-anzeiger.de </li>
<li>hofheimer-zeitung.de </li>
<li>hz-online.de </li>
<li>idowa.de </li>
<li>ikz-online.de </li>
<li>impulse.de </li>
<li>infranken.de </li>
<li>infranken.de </li>
<li>instyle.de </li>
<li>ivz-online.de </li>
<li>jolie.de </li>
<li>juedische-Allgemeine.de </li>
<li>kn-online.de </li>
<li>ksta.de </li>
<li>kwz.de </li>
<li>landes-zeitung.de </li>
<li>landeszeitung.de </li>
<li>leonberger-kreiszeitung.de </li>
<li>lesmads.de </li>
<li>ln-online.de </li>
<li>lr-online.de </li>
<li>ludwigsburger-kreiszeitung.de </li>
<li>lvz-online.de </li>
<li>lz-online.de </li>
<li>maedchen.de </li>
<li>maerkischeallgemeine.de </li>
<li>main-echo.de </li>
<li>mainpost.de </li>
<li>main-spitze.de </li>
<li>maintaltagesanzeiger.de </li>
<li>marbacher-zeitung.de </li>
<li>memmingen-online.de </li>
<li>merkur-online.de </li>
<li>mittelhessen.de </li>
<li>mopo.de </li>
<li>morgenpost.de </li>
<li>morgenweb.de </li>
<li>moz.de </li>
<li>mt-news.de </li>
<li>mt-online.de </li>
<li>muehlacker-tagblatt.de </li>
<li>muenstersche-zeitung.de </li>
<li>murrhardter-zeitung.de </li>
<li>mv-online.de </li>
<li>nachrichten.de </li>
<li>nationalgeographic.de </li>
<li>ndz.de </li>
<li>neon.de </li>
<li>neue-oz.de </li>
<li>neuepresse.de </li>
<li>nez.de </li>
<li>nnn.de </li>
<li>nn-online.de </li>
<li>nordbayerischer-kurier.de </li>
<li>nordkurier.de </li>
<li>nordsee-zeitung.de </li>
<li>np-coburg.de </li>
<li>nq-online.de </li>
<li>nrz.de </li>
<li>ntz.de </li>
<li>nw-news.de </li>
<li>nwz-online.de </li>
<li>nz-online.de </li>
<li>onmeda.de </li>
<li>on-online.de </li>
<li>op-marburg.de </li>
<li>osterholzer-kreisblatt.de </li>
<li>ostsee-zeitung.de </li>
<li>ovb-online.de </li>
<li>ov-online.de </li>
<li>oz.ehrenklau.de </li>
<li>oz-online.de </li>
<li>paz-online.de </li>
<li>pegnitz-zeitung.de </li>
<li>pfaelzischer-merkur.de </li>
<li>pm-magazin.de </li>
<li>pz-news.de </li>
<li>rems-zeitung.de </li>
<li>rga-online.de </li>
<li>rheiderland.de </li>
<li>rnz.de </li>
<li>rp-online.de </li>
<li>ruhrNachrichten.de </li>
<li>rundschau-online.de </li>
<li>saarbruecker-zeitung.de </li>
<li>schaumburger-zeitung.de </li>
<li>schifferstadter-tagblatt.de </li>
<li>schoener-wohnen.de </li>
<li>schwabacher-tagblatt.de </li>
<li>schwaebische.de </li>
<li>schwaebische-post.de </li>
<li>schwarzwaelder-bote.de </li>
<li>seesener-beobachter.de </li>
<li>segeberger-zeitung.de </li>
<li>selber-tagblatt.de </li>
<li>shz.de </li>
<li>siegener-zeitung.de </li>
<li>solinger-tageblatt.de </li>
<li>stern.de </li>
<li>stimme.de </li>
<li>stuttgarter-nachrichten.de </li>
<li>stuttgarter-zeitung.de </li>
<li>sueddeutsche.de </li>
<li>suedkurier.de </li>
<li>suedwest-aktiv.de </li>
<li>svz.de </li>
<li>swp.de </li>
<li>szbz.de </li>
<li>tagblatt.de </li>
<li>tageblatt.de </li>
<li>tagesschau.de </li>
<li>tah.de </li>
<li>tauber-zeitung.de </li>
<li>teckbote.de </li>
<li>torgauerzeitung.com </li>
<li>trostberger-tagblatt.de </li>
<li>tz-online.de </li>
<li>uena.de </li>
<li>usinger.anzeiger.net </li>
<li>verlag-dreisbach.de </li>
<li>view.stern.de </li>
<li>vkz.de </li>
<li>volksfreund.de </li>
<li>volksstimme.de </li>
<li>vwd.com </li>
<li>waiblinger-kreiszeitung.de </li>
<li>wa-online.de </li>
<li>waz.de </li>
<li>waz-online.de </li>
<li>wdr.de </li>
<li>welt.de </li>
<li>werra-rundschau.de </li>
<li>weser-kurier.de </li>
<li>westfaelische-rundschau.de </li>
<li>westfalen-blatt.de </li>
<li>westfalenpost.de </li>
<li>westline.de </li>
<li>westline.de/ahlener-zeitung </li>
<li>westline.de/mz </li>
<li>westline.de/wn </li>
<li>westline.de/zb </li>
<li>wetterauer-zeitung.de </li>
<li>wiesbadener-kurier.de </li>
<li>wiesbadener-tagblatt.de </li>
<li>wlz-fz.de </li>
<li>wnoz.de </li>
<li>wz-net.de </li>
<li>wz-newsline.de </li>
<li>wzonline.de </li>
<li>yuno-magazin.de </li>
<li>zak.de </li>
<li>zevener-zeitung.de </li>
<li>zollernalbkurier.de</li>
</ul>
<p>Für alle die sich noch einmal informieren wollen, ein guter Bericht vom elektrischen Reporter</p>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/ph3XfZvpIZo?theme=light" frameborder="0" allowfullscreen></iframe></div>
<p><br>
via <a href="http://opalkatze.wordpress.com/2012/08/30/diese-seiten-unterstutzen-das-leistungsschutzrecht/">Opalkatze</a></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/08/diese-seiten-unterstutzen-das-leistungsschutzrecht</link>
<pubDate>Thu, 30 Aug 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/08/diese-seiten-unterstutzen-das-leistungsschutzrecht</guid>
</item>
<item>
<title>Bombe in München</title>
<description><![CDATA[<p>Des Sommerlochs wegen. Sieht aber auch spektakulär aus!<br />
<div class="elastic-video"><iframe src="http://player.vimeo.com/video/48399328" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div></p>
]]></description>
<link>http://napcaesmind.de/blog/2012/08/bombe-in-munchen</link>
<pubDate>Wed, 29 Aug 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/08/bombe-in-munchen</guid>
</item>
<item>
<title>“Cookie Monster Batman Chats With Commissioner Gordon”</title>
<description><![CDATA[<p>Ich war gestern im Kino und hab das Ende der Trilogie gesehen(dachte ich ;)</p>
<p><a href="http://www.youtube.com/user/utubelor">Einer</a> auf YouTube hat die letzte Szene von The Dark Knight mit dem Cookie Monster gedubbt. Batman unterhält sich jetzt mit der Stimme vom Cookie Monster mit Commissioner Gordon :D</p>
<div class="elastic-video"><iframe width="420" height="315" src="//www.youtube.com/embed/7enjABApKWE?theme=light" frameborder="0" allowfullscreen></iframe></div>
]]></description>
<link>http://napcaesmind.de/blog/2012/08/cookie-monster-batman-chats-with-commissioner-gordon</link>
<pubDate>Fri, 24 Aug 2012 00:00:00 +0200</pubDate>
<guid>http://napcaesmind.de/blog/2012/08/cookie-monster-batman-chats-with-commissioner-gordon</guid>
</item>
<item>
<title>Essen & Trinken am Computer…</title>
<description><![CDATA[<p><img src="http://napcae.files.wordpress.com/2012/08/logitech-k310-straight-down.jpg" width="500" class="img-polaroid"/></p>
<p>…ist ab sofort erlaubt! Vorausgesetzt ihr holt euch die neue Logitech Tastatur, die könnt ihr nämlich waschen! Ja, richtig gehört, die könnt ihr mal richtig ins Wasser tauchen. Das heißt, sollte es unter euch welche geben, die regelmäßig am Schreibtisch essen und wo auch mal was daneben kippt – für euch naht Rettung.<br />
<br>
<div class="elastic-video"><iframe width="560" height="315" src="//www.youtube.com/embed/_H_DFeMZHng?theme=light" frameborder="0" allowfullscreen></iframe></div>
<br><br />
Und mit wasserdicht meint Logitech nicht spritzwasserfest sondern wirklich wasserdicht! Die Tastatur lässt sich bis zu 30 cm unter Wasser halten, den USB Stecker sollte man dabei aber nicht unter Wasser tauchen. Nach acht Stunden an der Luft ist das Teil dann getrocknet. Es gibt dafür sogar extra Löcher, damit das Wasser ablaufen kann.</p>
<p>Für 40$ gehört sie euch <img src='http://198.211.112.164/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://napcae.files.wordpress.com/2012/08/logitech-k310-wasser-nichts-anhaben-bild-logitech-15787.jpg" class="img-polaroid" /></p>
<p>Warum da niemand vorher drauf gekommen ist..</p>
]]></description>
<link>http://napcaesmind.de/blog/2012/08/essen-trinken-am-comuter</link>
<pubDate>Thu, 23 Aug 2012 00:00:00 +0200</pubDate>