-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
1548 lines (1196 loc) · 97 KB
/
atom.xml
File metadata and controls
1548 lines (1196 loc) · 97 KB
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>Daniel Puglisi</title>
<link href="http://danielpuglisi.com/atom.xml" rel="self"/>
<link href="http://danielpuglisi.com/"/>
<updated>2013-03-11T20:25:59+01:00</updated>
<id>http://danielpuglisi.com</id>
<author>
<name>Daniel Puglisi</name>
</author>
<entry>
<title>A Rails Girls Map</title>
<link href="http://danielpuglisi.com/articles/2013/03/11/a-rails-girls-map.html"/>
<updated>2013-03-11T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2013/03/11/a-rails-girls-map</id>
<content type="html"><p><a href="https://twitter.com/abelar_s">@abelar_s</a> has created a Google map with locations of previous and future Rails Girls events, Basel is also already on that map :)</p>
<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps/ms?ie=UTF8&amp;msa=0&amp;msid=210067024639216766075.0004d77dc3ae4f6138b16&amp;t=m&amp;ll=27.683528,25.3125&amp;spn=150.062038,298.828125&amp;z=1&amp;output=embed"></iframe>
<p>Pretty cool stuff :)</p>
</content>
</entry>
<entry>
<title>I'm looking for Participants for a Rails Girls Intro video</title>
<link href="http://danielpuglisi.com/articles/2013/02/28/participants-for-a-rails-girls-intro.html"/>
<updated>2013-02-28T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2013/02/28/participants-for-a-rails-girls-intro</id>
<content type="html"><p>As you might know, I&rsquo;m helping organizing the <a href="http://railsgirls.com/basel">Rails Girls Basel</a> event which will take place on the 5th and 6th april this year.</p>
<p>To promote the event, we want to create a promo video and I had the idea to include several interviews from previous Rails Girls attendees/coaches from all over the world.
So if you&rsquo;re a former Rails Girls participant and would like to help me, here is what you can do:</p>
<ul>
<li>Record a video of yourself with the length of 30 &ndash; 60 seconds (it can be longer if you want to ;)</li>
<li>Talk about the following topics in your video [&ldquo;Why you are interested in programming?&rdquo;, &ldquo;What do you like about programming?&rdquo;, &ldquo;How is programming/tech related to your life?&rdquo;, &ldquo;How has programming/tech changed your life?&rdquo;, &ldquo;What do you think about the Rails Girls Event?&rdquo;, &ldquo;What else do you want to say?&rdquo;]</li>
<li>Upload the whole thing to a server/dropbox</li>
<li>Add a text file with your full name, Twitter handle and the city/country you live in</li>
<li>Send me a link to the package, so I can download the whole thing, to this <a href="mailto:daniel@codegestalt.com">address</a></li>
</ul>
<p>I would really appreciate your help and of course, you will be named in the credits.
Additionally if I can collect enough material, I&rsquo;ll try to create a general Rails Girls intro video which can be played on events all over the world :)</p>
<p>I&rsquo;m awaiting your email, cheers &hearts;</p>
</content>
</entry>
<entry>
<title>Beautify your Chrome's New Tab with FancyTab</title>
<link href="http://danielpuglisi.com/articles/2013/01/31/beautify-your-chromes-new-tab-with-fancytab.html"/>
<updated>2013-01-31T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2013/01/31/beautify-your-chromes-new-tab-with-fancytab</id>
<content type="html"><p>I had some spare time yesterday and decided to update and customize one of my favourite Chrome Extensions called VisivoTab.
What it does is, it just beautifies your Chrome&rsquo;s New Tab with a background image from flickr. I&rsquo;ve updated that extension according
to the latest Chrome guidelines and customized it with my own flickr pictures.</p>
<p>You can download it <a href="https://chrome.google.com/webstore/detail/fancytab/nijnkhgjogmbghnbnfandncgdinihhab?hl=en">here</a>.
Give it a try and rate it (with 5 stars ;). Enjoy &hearts;</p>
</content>
</entry>
<entry>
<title>Rails Girls Basel</title>
<link href="http://danielpuglisi.com/articles/2013/01/25/rails-girls-basel.html"/>
<updated>2013-01-25T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2013/01/25/rails-girls-basel</id>
<content type="html"><p><img src="/images/posts/rails-girls-basel.jpg" alt="Rails Girls is coming to Basel, 5. - 6. April 2013!" /></p>
<p>Have you always wondered how to design and create
a homepage with your own hands?
Or maybe you had this fancy business idea
but didn&rsquo;t knew (or hadn&rsquo;t the money)
to realize your online presence?</p>
<p>Well then maybe Rails Girls is something for you. On the 5th and 6th April we will
unite at the mitte unternehmen and teach you how you can develop your very own
web applications. So, if you&rsquo;re a girl (sorry guys), have a MacBook/Laptop and
the drive to learn how to programm join us on <a href="https://www.facebook.com/RailsGirlsSwitzerland">Facebook</a> and stay tuned.
We&rsquo;ll release the application form in the next few days.</p>
<p>Cheers.</p>
</content>
</entry>
<entry>
<title>The Hobby Fund</title>
<link href="http://danielpuglisi.com/articles/2013/01/02/the-hobby-fund.html"/>
<updated>2013-01-02T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2013/01/02/the-hobby-fund</id>
<content type="html"><p>Happy new year everyone. To ring in the new year with you, I want to share a new technique of mine. It is called <strong>The Hobby Fund</strong>.</p>
<p>Everyone of us has its own hobbies which one loves to practice.
We love to spend money on it and don&rsquo;t regret most of our decision we make in favour for our hobby.
Altough, for some of us things can get very expensive.
In particular when your hobby is called photography or something similar expensive where you can sell your house and still
don&rsquo;t have enough money to fulfill all of your dreams.</p>
<p>This is where The Hobby Fund kicks in.
The idea behind it is to save money from activites you practice during the week
and need more than bare willpower to do them. For instance workout or eating heahlty.
Everytime you do such an activity you can pay out yourself a certain amount of money which you have settled in the beginning.</p>
<p>For example, my list of activities/goals looks like this:</p>
<ul>
<li>Workout / 10$</li>
<li>Read for 30minutes / 3$ (once per day)</li>
<li>Drink more water / 1$ per liter (max. 2 liter per day)</li>
<li>Write a usable blog post / 10$</li>
<li>Don&rsquo;t smoke / 7$ (only if not smoked any cigarettes 24/7)</li>
<li>Slow carb / 1$ per meal</li>
</ul>
<p>If I would do any these tasks in the list above I could save up to 142$ each week.
Of course not anyone can afford to save 142$ per week and the goal isn&rsquo;t to do anything which is on the list.
Just pick a few goals and after every time you finished something, write it down. A good aim is to earn 50-80$ every week. At least for me.
Find a good combination for each task and reward and don&rsquo;t over- or undervalue single activities/goals.</p>
<p>This way you can save up a lot of money until the end of the month, which you then can spend on your favourite hobbies.
At the same time you boost your productivity for things you wouldn&rsquo;t even do otherwise.</p>
<p>Try it out for a month, spend your saved money on your hobbies and then
decide to continue with this techique or if a better place for it would be your trunk.
Or maybe you will continue with it, but instead of The Hobby Fund, you are going to put that <em>earned</em> money into your savings.
That decision is up to you.</p>
</content>
</entry>
<entry>
<title>Fuck You, Startup Yoda</title>
<link href="http://danielpuglisi.com/articles/2012/12/12/fuck-you-startup-yoda.html"/>
<updated>2012-12-12T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/12/12/fuck-you-startup-yoda</id>
<content type="html"><p>Micah Baldwin:</p>
<blockquote><p>The voices that bring real value are often not folks with tens of thousands of twitter followers or facebook subscribers. They are true operators, the silent killers who write with a pent up requirement to share their search with fellow entrepreneurs. They understand, perhaps unknowingly, that they are learning through the collective unconscious of the startup ecosystem by participating, rather than being a sound bite.</p></blockquote>
<p>I have nothing to add. Just read it.</p>
</content>
</entry>
<entry>
<title>Foldify</title>
<link href="http://danielpuglisi.com/articles/2012/12/10/foldify.html"/>
<updated>2012-12-10T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/12/10/foldify</id>
<content type="html"><iframe src="http://player.vimeo.com/video/54479185?title=0&amp;byline=0&amp;portrait=0&amp;badge=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>Hello Winter</title>
<link href="http://danielpuglisi.com/articles/2012/12/02/hello-winter.html"/>
<updated>2012-12-02T02:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/12/02/hello-winter</id>
<content type="html"><p><a href="http://500px.com/photo/19655303"><img src="http://pcdn.500px.net/19655303/e14ca45c1f4dc6f9ef090f6c1aabc4ee7d80dc2c/4.jpg" alt="Winter is here by Daniel Puglisi (danielpuglisi)) on 500px.com" border="0" style="margin: 0 0 5px 0;"></a></p>
</content>
</entry>
<entry>
<title>Portico Quartet</title>
<link href="http://danielpuglisi.com/articles/2012/12/02/portico-quartet.html"/>
<updated>2012-12-02T01:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/12/02/portico-quartet</id>
<content type="html"><iframe src="https://embed.spotify.com/?uri=spotify:album:2Y83b1uzgf5pDfQHdFKgjm" class="spotify" frameborder="0" allowtransparency="true"></iframe>
</content>
</entry>
<entry>
<title>Freelancember 2012</title>
<link href="http://danielpuglisi.com/articles/2012/12/02/freelancember-2012.html"/>
<updated>2012-12-02T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/12/02/freelancember-2012</id>
<content type="html"><p><img src="/images/posts/freelancember.jpg" alt="Freelancember" /></p>
<p>An Advent Calendar for Web Designers and Freelancer. Worth to check out.</p>
</content>
</entry>
<entry>
<title>The Stranger - Lord Huron</title>
<link href="http://danielpuglisi.com/articles/2012/11/26/the-stranger---lord-huron.html"/>
<updated>2012-11-26T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/26/the-stranger---lord-huron</id>
<content type="html"><iframe src="https://embed.spotify.com/?uri=spotify:track:3XjsdEun6XcO2Gs4lJCueH" class="spotify" frameborder="0" allowtransparency="true"></iframe>
</content>
</entry>
<entry>
<title>5 essential productivity tips</title>
<link href="http://danielpuglisi.com/articles/2012/11/12/5-essential-productivity-tips.html"/>
<updated>2012-11-12T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/12/5-essential-productivity-tips</id>
<content type="html"><p>Working independently and on a machine which is connected to the internet that
provides hours of procrastination-encouraging stuff isn&rsquo;t always that easy. Sometimes
you just drift off of that new line of code you wanted to implement, just because
someone tweeted about this new fancy piece of Apple device he or she just bought.
Several minutes later, you often don&rsquo;t even remember how you ended up watching that
youtube video in which unicorns and monkeys playing chess together.</p>
<p>Sounds familiar? Now don&rsquo;t be afraid, I&rsquo;m here to help you. I&rsquo;ve 5 essentials tips for you
on how you can prevent yourself from falling into this situation again.</p>
<h3>1. Turn off vibration on your mobile phone</h3>
<p>This one saved me a lot of time. Turn off vibration for the
most disturbing features/apps your phone possesses. In my case
I&rsquo;ve disabled vibration for the following apps on my iPhone:</p>
<ul>
<li>SMS</li>
<li>WhatsApp (I even disabled all notifications because of some group conversation I&rsquo;m in)</li>
<li>Mail</li>
<li>Twitter</li>
<li>Facebook</li>
<li>Foursquare</li>
<li>Instagram</li>
</ul>
<p>I haven&rsquo;t disabled vibration when someone is calling me. When I don&rsquo;t want to be
disturbed by a phone call I put my iPhone into the <strong>Do not disturb</strong> mode. If your
phone doesn&rsquo;t have such a feature you can, of course, disable the vibration for
the calling feature too.</p>
<h3>2. The rule of three</h3>
<p>The rule of three is one of my creations which helped me a lot lately. The basic idea
behind it is to have only three applications open at a time.
When I&rsquo;m developing I only use a Terminal (iTerm) a Browser (Google Chrome) and a
music application (Spotify). Whereas the music application isn&rsquo;t work related but
has its own purpose (more about this in tip #3).
I know this isn&rsquo;t possible for every use case and if you need four applications,
go along with four.</p>
<p>The value of doing this goes beyond the number of open applications. It helps you
to recognize which apps are supporting your workflow and which apps don&rsquo;t. Since
I&rsquo;m using this approach, I never got interrupted by a new Tweet or Chat message.</p>
<h3>3. Wear headphones and listen to music</h3>
<p>Wearing headphones can improve your productivity in two ways.</p>
<p>The first one is that people who are in the same room as you
(e.g. when you&rsquo;re working at a startup or in a coworking office)
don&rsquo;t just walk up to you and disturb you. The fact that you&rsquo;re
wearing headphones can be a sign that you are concentrating and don&rsquo;t want to be
interrupted. Unfortunately there are a lot of old school companies out there which
think you should not be listening to music on both ears, because if someone wants
to ask you a question from the other side of the room, you don&rsquo;t hear them.
I think this is bullshit but you&rsquo;ll have to arrange it with the people you&rsquo;re
working with.</p>
<p>The second improvement is the music itself. Music can put you in a certain way of
consciousness which improves your concentration and speed on what you&rsquo;re working on
right now. I don&rsquo;t know if this is true for you,
but for me this effect only appears when I&rsquo;m listening to music which has no
lyrics or vocals in it (there are of course a few exceptions).
Because of this I&rsquo;ve created a <a href="http://danielpuglisi.com/articles/2012/10/31/wiring-in.html">playlist</a> which I&rsquo;m listening to when I&rsquo;m programming
or writing blog articles (like this one).
But when you&rsquo;re listening to music while working, be sure that your music application (Spotify, iTunes or whatever) isn&rsquo;t disturbing you.
Hit the play button and then hide it somewhere where it doesn&rsquo;t come into your way.</p>
<p>Another improvement here is,
that you don&rsquo;t have to listen to music you don&rsquo;t like (because you&rsquo;re wearing headphones).
Create your own playlist and if you want to, share it in the comments below.</p>
<h3>4. Write a Todo list</h3>
<p>Todo lists are essential to keep your productivity on a certain level.
This tip assumes, that you&rsquo;re already using Todo lists and aim to improve the use of it.
If you never used a Todo list before, here is a short
<a href="http://codegestalt.com/fistbump/2012/04/04/four-productivity-hacks-you-should-use">introduction</a> (the chapter <strong>Set weekly and daily goals</strong> is what you&rsquo;re looking for).</p>
<p>After some time using Todo lists, you might find yourself not doing it on a daily basis anymore or maybe you just want to improve them a little bit more.
This list should bring you a step closer to your goal:</p>
<ul>
<li>Wrting Tasks down should be easy. You can only achieve this goal with the right collection of tools.
I&rsquo;ve used Evernote a long time for my Todo lists but
in the end it wasn&rsquo;t the best tool for writing down tasks and checking them, because it took to long.
At the moment I&rsquo;m using good ol' pen and paper. I&rsquo;ve buyed a moleskin notebook and always carry it with me when I&rsquo;m working.
Maybe pen and paper isn&rsquo;t the best solution for you, but what I want to say is, try different tools and find out what best fits you.</li>
<li>Write everything down what you have done through the day even if it&rsquo;s not on the list. This approach is called the ToDone list. More <a href="http://codegestalt.com/fistbump/2012/08/20/the-todone-list">here</a>.</li>
<li>Mark the three most important tasks of the day and do them right at the beginning of the day.
Try to do these three tasks before the half time of your working day (normally lunch). If
these three tasks need more time, split them into multiple tasks until you manage to do them before lunch.
This will help you to improve your time management and to
evaluate which tasks need a certain amount of time.</li>
</ul>
<h3>5. Be disciplined</h3>
<p>The last and most important lesson I want to give you in these 5 tips is about habits.
All these tips above will be useless (not necessarily applicable for tip #1 and #3) for you if you&rsquo;re not going
to use them on a regular basis. Which means every day. If you do them every day you can manage to build
up habits and the good thing about habits is, that you can&rsquo;t delete them. So once you have achieved to build
up your habits for writing Todo lists or checking how many applications are running on your computer before starting to work
you will manage to improve your productivity like never before. But from nothing comes nothing. So you need to discipline yourself.
If you don&rsquo;t have any problems with discipline and don&rsquo;t need any help for that. Bravo. You can stop reading now,
because you will apply these previous 4 tips without any problem. But if not, go on.</p>
<p>Building up habits isn&rsquo;t always that easy and to minimize the range of failure I&rsquo;m going to introduce to you <a href="http://lifehacker.com/281626/jerry-seinfelds-productivity-secret">Jerry Seinfeld&rsquo;s Productivity Secret</a>.
It is called <strong>Don&rsquo;t break the chain!</strong>. The idea behind it is to create a list of certain tasks you&rsquo;re going to repeat on a daily basis. My list for example looks like this:</p>
<ul>
<li>Draw something</li>
<li>Shoot at least one usable picture</li>
<li>Programming</li>
<li>Read for 30 minutes</li>
<li>etc.</li>
</ul>
<p>Now what do you have to do with this list? Easy, you can do it the ol' school way and print out a huge calendar for every task and put in a big red cross on every day you&rsquo;ve done a
specific task. If you don&rsquo;t like to print out that much paper, there are also a few applications out there to achieve the same result. E.g. <a href="http://dontbreakthechain.com/">Don&rsquo;t break the chain</a>
is a simple web application which lets you mark the specific days you worked on a task. My humble self is using <a href="http://chains.cc/">chains.cc</a>. It has a fancy design
and they also have an iOS app.</p>
<p>If you&rsquo;re going to use this method it can (and I believe it will) help you to stay focused on the tips above and many other things for a long time and hopefully
you will build up habits in the end.</p>
<h3>TL;DR</h3>
<p>So let&rsquo;s recap these 5 tips in a short list:</p>
<ul>
<li>Turn off vibration for distracting apps on your mobile phone</li>
<li>Try to have only three running applications at a time while you&rsquo;re working</li>
<li>Wear headphones and listen to music which helps you concentrating</li>
<li>Write todo lists and complete the three main tasks until lunch</li>
<li>Do these 4 tips above every day, motivate yourself with a technique like <strong>Don&rsquo;t break the chains</strong></li>
</ul>
<p>That&rsquo;s it. Try this tips out and if you&rsquo;ve any additional tips or do things differently please let me know in the comments. Constructive critic is very welcome. Thank you.</p>
</content>
</entry>
<entry>
<title>The 4-Hour Chef Trailer</title>
<link href="http://danielpuglisi.com/articles/2012/11/08/the-4-hour-chef-trailer.html"/>
<updated>2012-11-08T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/08/the-4-hour-chef-trailer</id>
<content type="html"><iframe class="youtube" src="http://www.youtube.com/embed/Jdbd0k7BZ4s" frameborder="0" allowfullscreen></iframe>
<p>Oooh yes. After reading <strong>The 4-Hour Workweek</strong> and <strong>The 4-Hour Body</strong> I can&rsquo;t wait to get this one into my hands.
Looks like the next bestseller to me Tim ;)</p>
</content>
</entry>
<entry>
<title>Rails Girls Zurich</title>
<link href="http://danielpuglisi.com/articles/2012/11/07/rails-girls-zurich.html"/>
<updated>2012-11-07T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/07/rails-girls-zurich</id>
<content type="html"><iframe src="http://player.vimeo.com/video/53032561?title=0&amp;byline=0&amp;portrait=0&amp;badge=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>Why Google Went Offline Today and a Bit about How the Internet Works</title>
<link href="http://danielpuglisi.com/articles/2012/11/06/why-google-went-offline-today-and-a-bit-about-how-the-internet-works.html"/>
<updated>2012-11-06T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/06/why-google-went-offline-today-and-a-bit-about-how-the-internet-works</id>
<content type="html"><p>Tom Paseka:</p>
<blockquote><p>Situations like this are referred to in the industry as &ldquo;route leakage&rdquo;, as the route has &ldquo;leaked&rdquo; past normal paths. This isn&rsquo;t an unprecedented event. Google previously suffered a similar outage when Pakistan was allegedly trying to censor a video on YouTube and the National ISP of Pakistan null routed the service&rsquo;s IP addresses. Unfortunately, they leaked the null route externally. Pakistan Telecom&rsquo;s upstream provider, PCCW, trusted what Pakistan Telecom&rsquo;s was sending them and the routes spread across the Internet. The effect was YouTube was knocked offline for around 2 hours.</p></blockquote>
<p>Interesting post which shows how the Internet works. At least a part of it.</p>
</content>
</entry>
<entry>
<title>How you can help to get more women into tech</title>
<link href="http://danielpuglisi.com/articles/2012/11/03/how-you-can-help-to-get-more-women-into-tech.html"/>
<updated>2012-11-03T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/03/how-you-can-help-to-get-more-women-into-tech</id>
<content type="html"><p>Feyyaz Alingan:</p>
<blockquote><p>Here at codegestalt we often think about how we could get more people into Rails and programming in general. Online coding courses such as codecademy are basically non-existent in German speaking countries (it would make sense to take the course in English since the programming language uses English vocabulary anyway, but to some people it can still feel like another barrier to entry). So it makes sense to think about ways to solve that problem.</p>
<p>We came up with two solutions (actually just one, and the other came to us.):</p>
<ul>
<li>Talking about our daily life, our programming and startup experience</li>
<li>Supporting Rails Girls in Zurich</li>
</ul>
</blockquote>
<p>We need more women in tech. That&rsquo;s for sure. Women think about certain things in a whole different way than men. So we lose a lot
of knowledge, ideas and creativity because there aren&rsquo;t enough women around. This is bad and we need to fix that.</p>
<p>The idea behind the article above is very simple, but it isn&rsquo;t always that easy to get women into tech. One cool thing is, we all can help.
Everyone who works in tech has the possibility to pursuave their female friends
(yes, nerds also have women as friends, especially Ruby developers ;D) and introduce
them to the cool world of coding and creating.</p>
<p>So next time there is a Rails Girls event or something similar near you, share it with your friends, tell everyone about it
and try to get them onboard. And if there isn&rsquo;t any such event, why no start hosting it by yourself?</p>
</content>
</entry>
<entry>
<title>Friday Hug at RailsGirls Zurich</title>
<link href="http://danielpuglisi.com/articles/2012/11/02/friday-hug-at-railsgirls-zurich.html"/>
<updated>2012-11-02T01:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/02/friday-hug-at-railsgirls-zurich</id>
<content type="html"><p><img src="/images/posts/friday-hug-rails-girls-zurich.jpg" alt="Friday Hug at RailsGirls Zurich" /></p>
</content>
</entry>
<entry>
<title>You waste a lot of time at work</title>
<link href="http://danielpuglisi.com/articles/2012/11/02/you-waste-a-lot-of-time-at-work.html"/>
<updated>2012-11-02T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/02/you-waste-a-lot-of-time-at-work</id>
<content type="html"><p><img src="/images/posts/you-waste-a-lot-of-time-at-work.jpg" alt="You wast a lot of time at work" /></p>
<blockquote><p>Just because you&rsquo;re at work doesn&rsquo;t mean you&rsquo;re getting work done.</p></blockquote>
</content>
</entry>
<entry>
<title>I hate developing SharePoint (a rant)</title>
<link href="http://danielpuglisi.com/articles/2012/11/01/i-hate-developing-sharepoint-a-rant.html"/>
<updated>2012-11-01T02:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/01/i-hate-developing-sharepoint-a-rant</id>
<content type="html"><p>Adrian O'Connor:</p>
<blockquote><p>Why is SharePoint so awful? Because it makes great developers average. Take an ordinarily amazing developer — the kind of person that can take your idea and create a beautiful prototype in 30 minutes. Give them SharePoint and watch them wilt. I’ve never seen anybody do anything amazing with SharePoint. I’ve never seen a SharePoint project and thought ‘well, that was quicker than expected’. That’s not all though. SharePoint is one big deception, and that gets my goat. Managers have been lured in by marketing promises of massive ROI, huge time and cost savings, baked-in-functionality and endless other dreams of hollow buzzwords. It’s all bullshit. Every last word.</p></blockquote>
<p>Finally a .NET developer who thinks SharePoint is bullshit and doesn&rsquo;t step back from saying it out loud.</p>
</content>
</entry>
<entry>
<title>One Minute Wonder</title>
<link href="http://danielpuglisi.com/articles/2012/11/01/one-minute-wonder.html"/>
<updated>2012-11-01T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/11/01/one-minute-wonder</id>
<content type="html"><iframe src="http://player.vimeo.com/video/50980092?title=0&amp;byline=0&amp;portrait=0&amp;badge=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><strong>One Minute Wonder</strong> is a series of one minute video portraits of different people around the world. Artists, entrepreneurs, designers, rain-makers and other professions
are giving the world a little insight in their own life and world. I really like the idea behind it and I thought about doing this kind of short documentations on my own in
Switzerland. We&rsquo;ll see.</p>
</content>
</entry>
<entry>
<title>Wiring in</title>
<link href="http://danielpuglisi.com/articles/2012/10/31/wiring-in.html"/>
<updated>2012-10-31T00:00:00+01:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/31/wiring-in</id>
<content type="html"><p><span class="center">
<strong>My personal coding soundtrack for getting into the tunnel</strong>
</span></p>
<iframe src="https://embed.spotify.com/?uri=spotify:user:116689447:playlist:4xRzOhDR2TIX61XnIPWKH8" class="spotify" frameborder="0" allowtransparency="true"></iframe>
</content>
</entry>
<entry>
<title>Free Learn Faster Bootcamp</title>
<link href="http://danielpuglisi.com/articles/2012/10/24/free-learn-faster-bootcamp.html"/>
<updated>2012-10-24T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/24/free-learn-faster-bootcamp</id>
<content type="html"><p>Scott H Young:</p>
<blockquote><p>Here’s a brief outline of a few of the ideas I’m going to share for free over the next seven days:</p>
<ul>
<li>The exact time management system I used to complete the MIT Challenge</li>
<li>How to get through hundreds of pages of reading, without losing focus</li>
<li>Which note-taking technique you should use (and which common one you should never use)</li>
<li>The technique to boost your memory, so you remember content years after the class was taught</li>
<li>How to always have confidence before taking any exam</li>
</ul>
<p>Again this is completely FREE, but only to people on the email list.</p></blockquote>
<p>Deal.</p>
</content>
</entry>
<entry>
<title>What I learned while live-tweeting a friend's funeral</title>
<link href="http://danielpuglisi.com/articles/2012/10/23/what-i-learned-while-live-tweeting-a-friends-funeral.html"/>
<updated>2012-10-23T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/23/what-i-learned-while-live-tweeting-a-friends-funeral</id>
<content type="html"><p>Mathew Ingram:</p>
<blockquote><p>Some said that the reporter was being disrespectful of the family in that case, even though he had been invited to the ceremony by the family themselves, and did nothing to interrupt the proceedings. As I wrote on my personal blog at the time, I couldn’t really see any reason why live-tweeting should be forbidden, provided journalists were allowed to be present in the first place. How was doing this any different from taking notes in a notepad and then writing a blog post or news article later? Provided it didn’t disturb anyone, I didn’t see the problem them and I still don’t now.</p></blockquote>
</content>
</entry>
<entry>
<title>How to be Sociable When You Don't Feel Like It</title>
<link href="http://danielpuglisi.com/articles/2012/10/22/how-to-be-sociable-when-you-dont-feel-like-it.html"/>
<updated>2012-10-22T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/22/how-to-be-sociable-when-you-dont-feel-like-it</id>
<content type="html"><p>Thorin Klosowski:</p>
<blockquote><p>One of the best ways to deal with small talk is to turn it into an actual conversation. You can do this pretty easily by mentioning small details until something sticks, or even just by learning the right questions to ask. If you&rsquo;re struggling to think of questions questions, the FORD technique (family, occupation, recreation, dreams) is a simple way to come up with interesting topics.</p></blockquote>
</content>
</entry>
<entry>
<title>A quick redesign in under one hour</title>
<link href="http://danielpuglisi.com/articles/2012/10/22/a-quick-redesign-in-under-one-hour.html"/>
<updated>2012-10-22T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/22/a-quick-redesign-in-under-one-hour</id>
<content type="html"><p>I just redesigned my blog in under one hour. The changes contain simplier design,
bigger headlines and more possibilites to format single elements like I want to
(Plus my face isn&rsquo;t watching you on every single page).</p>
<p>What do you think about the new design? Do you like it? What do you not like?
Questions about questions. Let me know in the comments.</p>
<div class="center big">
With &hearts; from Daniel
</div>
</content>
</entry>
<entry>
<title>About a bad sequel and Microsoft cereals</title>
<link href="http://danielpuglisi.com/articles/2012/10/21/about-a-worst-sequel-and-microsoft-cereals.html"/>
<updated>2012-10-21T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/21/about-a-worst-sequel-and-microsoft-cereals</id>
<content type="html"><p>4 years ago I was pleasantly surprised after I&rsquo;ve watched that random movie I&rsquo;d buyed from my local DVD supplier.
90 minutes full of action and a plot which was unexpected intense and gripping. Where I live, they call this movie 96 hours.
The world maybe better knows it under the name of <strong>Taken</strong>.</p>
<p>This week I saw the sequel. And believe me when I say that this film is one of the worst productions Hollywood came up with this year.
The dialogues are poor, the action scenes are lame and the whole plot is filled with weird shit which is going on. Like an untrained girl
throwing grenades through Istanbul or a revenge seeking father who doesn&rsquo;t care about that his son was a female trader.</p>
<p>But lets talk about the good things: Liam Neeson is still a good actor and he did a good job. At least that good as you can get it out of the script.
Because he can&rsquo;t do anything about a bad written story or the weird movements of the camera man, he&rsquo;s just an actor.
So he is innocent when you start thinking that he can kill people by simply grabbing them into the face.
Maybe Luc Besson thought Chuck Norris is looking for a replacment?</p>
<p>So the conclusion for you is: <strong>Don&rsquo;t watch Taken 2</strong>. Go watch <strong>Looper</strong> or <strong>Savages</strong>.
I haven&rsquo;t seen them yet, but I&rsquo;m one hundred percent sure that these movies aren&rsquo;t the same waste of time as Taken 2 was.</p>
<p>But</p>
<iframe class="youtube" src="http://www.youtube.com/embed/rk9WHasIZk0" frameborder="0" allowfullscreen></iframe>
<p>about bad sequels.</p>
<p>One week ago I secretly <a href="http://danielpuglisi.com/articles/2012/10/10/html5-fullscreen-api-attack.html">ranted</a> about Microsoft.
One day later I got a present from <a href="https://twitter.com/yve_cab">@yve_cab</a>, Microsoft cereals:</p>
<p><img src="/images/posts/ms-cereals-01.jpg" alt="Bild 1" /></p>
<p><img src="/images/posts/ms-cereals-02.jpg" alt="Bild 2" /></p>
<p><img src="/images/posts/ms-cereals-03.jpg" alt="Bild 3" /></p>
<p>What comes around, goes around. Good move there broham :D</p>
<p>I haven&rsquo;t tried them yet but they do look tasty.
Maybe Microsoft should left the Software industry behind and start selling cereals as their main focus.</p>
</content>
</entry>
<entry>
<title>Bored? Here are some new recommendations for you</title>
<link href="http://danielpuglisi.com/articles/2012/10/21/bored-here-are-some-new-recommendations-for-you.html"/>
<updated>2012-10-21T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/21/bored-here-are-some-new-recommendations-for-you</id>
<content type="html"><p>Hey, sup?</p>
<p>Nothing to do today?</p>
<p>What about watching a good movie?</p>
<p>No idea what you should watch?</p>
<p>Hmm maybe you want to watch a Drama? Comedy? Action or Horror film?</p>
<p>Really? Ok, then maybe I got something for you&hellip; let me check&hellip;</p>
<p>Ahhha, yap found it. I found a lot of stuff. <a href="http://danielpuglisi.com/recommendations.html">Check this out</a>.</p>
<p>Big isn&rsquo;t it?</p>
<p>Mhm, yap.</p>
<p>Sure, no problem. Have fun.</p>
</content>
</entry>
<entry>
<title>typecast</title>
<link href="http://danielpuglisi.com/articles/2012/10/19/typecast.html"/>
<updated>2012-10-19T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/19/typecast</id>
<content type="html"><p><img src="/images/posts/typecast.jpg" alt="typecast - create better web typography with less hassle" /></p>
<p>Looks interesting. I&rsquo;ve registered for the beta, hopefully I&rsquo;ll get an invite in the next few days.</p>
</content>
</entry>
<entry>
<title>Surprising Your Customers</title>
<link href="http://danielpuglisi.com/articles/2012/10/18/suprising-your-customers.html"/>
<updated>2012-10-18T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/18/surprising-your-customers</id>
<content type="html"><p>Chase Clemons:</p>
<blockquote><p>My little cousin decided to dress up as Woody from Toy Story for Halloween this year. After finding the perfect version of that costume from the Disney Store, his mom had it shipped to the office since we didn’t know exactly what time it would arrive in the day. When it got here, the words “Love – Andy” was written in marker on the outside by someone from the Disney Store team.</p></blockquote>
<p>Cool idea.</p>
</content>
</entry>
<entry>
<title>Django Unchained Trailer Nr. 2</title>
<link href="http://danielpuglisi.com/articles/2012/10/15/django-unchained-trailer-nr-2.html"/>
<updated>2012-10-15T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/15/django-unchained-trailer-nr-2</id>
<content type="html"><iframe class="youtube" src="http://www.youtube.com/embed/-sbCLChLcFM" frameborder="0" allowfullscreen></iframe>
</content>
</entry>
<entry>
<title>What if money was no object?</title>
<link href="http://danielpuglisi.com/articles/2012/10/11/what-if-money-was-no-object.html"/>
<updated>2012-10-11T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/11/what-if-money-was-no-object</id>
<content type="html"><iframe class="youtube" src="http://www.youtube.com/embed/siu6JYqOZ0g" frameborder="0" allowfullscreen></iframe>
<p>Amazing&hellip;</p>
</content>
</entry>
<entry>
<title>Drawing Things with Box-Shadow</title>
<link href="http://danielpuglisi.com/articles/2012/10/10/drawing-things-with-box-shadow.html"/>
<updated>2012-10-10T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/10/drawing-things-with-box-shadow</id>
<content type="html"><p>Joshua Hibbert:</p>
<blockquote><p>This is a neat little trick that I stumbled upon when playing around with a CSS experiment a few months ago. Basically, by using multiple box-shadows, you can draw complex images with only a single element. As you may know, I’m a big fan of semantic markup, and I really don’t like using extra elements just for styling, so I was very happy with this discovery!</p></blockquote>
<p>Nice trick!</p>
</content>
</entry>
<entry>
<title>HTML5 Fullscreen API Attack</title>
<link href="http://danielpuglisi.com/articles/2012/10/10/html5-fullscreen-api-attack.html"/>
<updated>2012-10-10T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/10/html5-fullscreen-api-attack</id>
<content type="html"><p>Feross Aboukhadijeh:</p>
<blockquote><p>Links are the bread and butter of the web. People click links all day long — people are pretty trained to think that clicking a link on the web is safe. Saavy users may check the link’s destination in the status bar before clicking, however, in this case it won’t do them any good.</p></blockquote>
<p>Additional security tips:</p>
<ul>
<li>Don&rsquo;t use Internet Explorer, download a better browser <a href="https://www.google.com/intl/en/chrome/browser/">here</a></li>
<li>Don&rsquo;t use Windows, download or buy a better OS <a href="http://www.ubuntu.com/">here</a> or <a href="http://www.apple.com/osx/">here</a></li>
<li>Don&rsquo;t use Microsoft products at all, they are shitty anyway</li>
<li>Don&rsquo;t listen to people who say &ldquo;people who say Microsoft is shit have no idea&rdquo;</li>
<li>Read <a href="http://www.vanwensveen.nl/rants/microsoft/IhateMS_1.html">this</a> article and share it with your friends</li>
</ul>
<p><strong>By the way</strong>: I don&rsquo;t like Microsoft</p>
</content>
</entry>
<entry>
<title>Automating with convention: Introducing sub</title>
<link href="http://danielpuglisi.com/articles/2012/10/09/automating-with-convention-introducing-sub.html"/>
<updated>2012-10-09T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/09/automating-with-convention-introducing-sub</id>
<content type="html"><p>Nick:</p>
<blockquote><p>When I started my on-call shifts, we had pretty little in the way of automation for day-to-day issues. Tasks like SSH’ing into our cluster, starting a Rails console, or doing a deep search through our gigantic mail directories, were either shelved away in someone’s bashrc, history log, or just ingrained into someone’s memory. This pain was also felt by a few other of my fellow programmers, and we started cobbling together a Git repo simply named “37s shell scripts”.</p></blockquote>
<p>We had something similiar in mind for our Codegestalt environment and <strong><a href="https://github.com/37signals/sub">sub</a></strong>
looks like a good solution to start instead of doing everything from scratch.</p>
</content>
</entry>
<entry>
<title>Busy hustling</title>
<link href="http://danielpuglisi.com/articles/2012/10/08/busy-hustling.html"/>
<updated>2012-10-08T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/08/busy-hustling</id>
<content type="html"><p>Yo folks, sorry I haven&rsquo;t provided you with any new material the last days.
I was busy working with my G&rsquo;s on <a href="http://bridgetalks.ch">Bridge</a>. We held our first
Event and it was <strong>f**king</strong> awesome (Don&rsquo;t know why I censor fuck). Check out the link
in the title for a really awesome talk you should watch. Additionally I&rsquo;m working
on two new product ideas which I may share with you guys as soon as they take shape.
Until then, I keep hustling and you should too.</p>
<p><strong>Note:</strong> Grammar Nazi may not approve but you know what?</p>
<p><img src="http://24.media.tumblr.com/tumblr_mah7frKwHW1qzsj6so1_400.gif" alt="I dont fucking care" /></p>
</content>
</entry>
<entry>
<title>Sight</title>
<link href="http://danielpuglisi.com/articles/2012/10/02/sight.html"/>
<updated>2012-10-02T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/10/02/sight</id>
<content type="html"><iframe src="http://player.vimeo.com/video/46304267?title=0&amp;byline=0&amp;portrait=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>Brace yourself, Megabox is coming</title>
<link href="http://danielpuglisi.com/articles/2012/09/26/brace-yourself-megabox-is-coming.html"/>
<updated>2012-09-26T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/26/brace-yourself-megabox-is-coming</id>
<content type="html"><iframe class="youtube" src="http://www.youtube.com/embed/Kw04ckfO-yA" frameborder="0" allowfullscreen></iframe>
</content>
</entry>
<entry>
<title>Linus Torvalds goes off on Linux and Git</title>
<link href="http://danielpuglisi.com/articles/2012/09/26/linus-torvalds-goes-off-on-linux-and-git.html"/>
<updated>2012-09-26T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/26/linus-torvalds-goes-off-on-linux-and-git</id>
<content type="html"><p>Linus Torvalds:</p>
<blockquote><p>The first Git For Dummies and Git Visual Quickstart books are going to be out in a couple of months, and that is the beginning of the end as far as I’m concerned. Those books mean the end of git expertise and github reputation as reliable indicators of geek status. Once a technology is adopted by the masses the extreme geeks find something more esoteric. Look at what happened to Ruby on Rails. The people stumbling their way through Rails to-do list tutorials have never even heard of DHH.</p></blockquote>
</content>
</entry>
<entry>
<title>Oculus Rift</title>
<link href="http://danielpuglisi.com/articles/2012/09/25/oculus-rift.html"/>
<updated>2012-09-25T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/25/oculus-rift</id>
<content type="html"><iframe src="http://player.vimeo.com/video/49294325?title=0&amp;byline=0&amp;portrait=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>Recommendations</title>
<link href="http://danielpuglisi.com/articles/2012/09/24/recommendations.html"/>
<updated>2012-09-24T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/24/recommendations</id>
<content type="html"><p>Some weird definition of <strong>sharing is caring</strong>:</p>
<blockquote><p>When you have something (usually food) and your friend wants some, its common to use this phrase.</p>
<p>*le you eating pizza while friend walks up*<br/>
Them: Can I have some?<br/>
You: No.<br/>
Them: Sharing is caring!<br/>
You: I don&rsquo;t care.</p></blockquote>
<p>Anyway, today I want to share some of my favourite movies and TV Series with you. Check out <a href="/recommendations.html">this</a>.
The list is sorted by Imdb ratings. Maybe I will add some books another day, but not now. If you have some stuff you want
me to check out, please drop me a line.</p>
<p>Thanks and enjoy &hearts;</p>
</content>
</entry>
<entry>
<title>It’s Not All Doom And Gloom On The Web</title>
<link href="http://danielpuglisi.com/articles/2012/09/24/its-not-all-doom-and-gloom-on-the-web.html"/>
<updated>2012-09-24T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/24/its-not-all-doom-and-gloom-on-the-web</id>
<content type="html"><p>Christian Heilmann:</p>
<blockquote><p>How do we win back the hearts and minds of developers? I think we need to create new products and take different approaches than we have in the past. We should focus on making things easier for people, not striving for purity and delivering like we have in the past. We need to leave our comfort zone, because that is when the magic happens.</p></blockquote>
</content>
</entry>
<entry>
<title>Paris vs New York</title>
<link href="http://danielpuglisi.com/articles/2012/09/19/paris-vs-new-york.html"/>
<updated>2012-09-19T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/19/paris-vs-new-york</id>
<content type="html"><iframe src="http://player.vimeo.com/video/49545320?title=0&amp;byline=0&amp;portrait=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>How Barack Obama Gets Things Done</title>
<link href="http://danielpuglisi.com/articles/2012/09/18/how-barack-obama-gets-things-done.html"/>
<updated>2012-09-18T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/18/how-barack-obama-gets-things-done</id>
<content type="html"><p>Barack Obama:</p>
<blockquote><p>I don&rsquo;t want to make decisions about what I&rsquo;m eating or wearing, because I have too many other decisions to make.</p></blockquote>
<p>An interesting insight which shows how Mister Obama is getting his things done.</p>
</content>
</entry>
<entry>
<title>Bridge - We build connections</title>
<link href="http://danielpuglisi.com/articles/2012/09/18/bridge.html"/>
<updated>2012-09-18T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/18/bridge</id>
<content type="html"><p>I&rsquo;m happy to announce, that the first Bridge event will take place at the 3rd october at the mitte enterprise in Basel.
For this occasion we&rsquo;ve updated the <a href="http://bridgetalks.ch">Bridge page</a> to give you a little insight of the venue
and the first speakers which will attend at the 3rd october.</p>
<p>The idea behind Bridge is to get people from different industries together and let them discover new and exciting stuff.
We will start at 7pm and each talk will take about 20 minutes. After the talks you will get the chance to get in touch
with the speakers and the other attendees to discuss the main topics or other stuff. Or maybe you will just let the evening wind
down with a refreshing <a href="http://www.unser-bier.ch/"><strong>Unser Bier</strong></a> at the mitte bar. It&rsquo;s your call.</p>
<p>Anyway. We would be happy to see you at the 3rd october. And if you have a second, please tell your friends about Bridge. We
love you &hearts;</p>
</content>
</entry>
<entry>
<title>Programming, Motherfucker. Do you speak it?</title>
<link href="http://danielpuglisi.com/articles/2012/09/17/programming-motherfucker-do-you-speak-it.html"/>
<updated>2012-09-17T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/17/programming-motherfucker-do-you-speak-it</id>
<content type="html"><p>Me:</p>
<blockquote><p>If you are honest, most of the time you already know what&rsquo;s best for your clients.
The thing that really needs time is to convince them to use the best solution.
Because most of the clients don&rsquo;t know what they want or need.</p></blockquote>
<p>I wrote a new article on our company blog <a href="http://codegestalt.com/fistbump/2012/09/17/programming-motherfucker">The Exploding Fistbump</a>.
Check it out.</p>
</content>
</entry>
<entry>
<title>Daughter</title>
<link href="http://danielpuglisi.com/articles/2012/09/11/daughter.html"/>
<updated>2012-09-11T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/11/daughter</id>
<content type="html"><p>Dear lovely people of the world. I have to tell you something. I love listening to music.
Without music, my life wouldn&rsquo;t be the same, I wouldn&rsquo;t be the same. I listening to a lot of music
and that means I listening to many different artists, to many different lyrics,
to many different tunes and to many different genres. And once in a while I stumble across something special,
something that I like from the first few seconds on, something that moves me, something that doesn&rsquo;t let
me sleep and I need to listen to it before I can dive into the land of dreams.</p>
<p>This week I found such a gem. The band is called <strong>Daughter</strong>. I can&rsquo;t get enough of the beautiful
and strong melodies, the soft and lovely voice and the stunning and dramatic lyrics.</p>
<p>But enough from me. The best thing I can do right now is to show you a live session from their song <strong>Youth</strong>.
Turn up the volume. Eliminate all background noises. Press play on the video below. Enter full screen mode. Enjoy.</p>
<iframe src="http://player.vimeo.com/video/32900076?byline=0&amp;portrait=0" class="vimeo" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</content>
</entry>
<entry>
<title>Programming Languages Influence Network Graph</title>
<link href="http://danielpuglisi.com/articles/2012/09/10/programming-languages-influence-network-graph.html"/>
<updated>2012-09-10T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/10/programming-languages-influence-network-graph</id>
<content type="html"><p><img src="/images/posts/programming-languages-influence-network-graph-ruby.jpg" alt="Which programming languages influenced ruby and were influenced by ruby" /></p>
<p>Ramiro Gómez created a graph which shows the different influences of programming languages.
In the image above, you can see how Ruby was influenced (red lines) by Python or C++ and influenced (blue lines)
languages like CoffeeScript or Windows PowerShell.</p>
</content>
</entry>
<entry>
<title>Sky isn't the limit</title>
<link href="http://danielpuglisi.com/articles/2012/09/09/sky-isnt-the-limit.html"/>
<updated>2012-09-09T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/09/sky-isnt-the-limit</id>
<content type="html"><p><a href="http://500px.com/photo/13519609"><img src="http://pcdn.500px.net/13519609/ff7a79a93b6255defcb1f115b5ee50c24fc99061/4.jpg" alt="Sky isn't the limit by Daniel Puglisi (danielpuglisi) on 500px.com" border="0" style="margin: 0 0 5px 0;"></a><br/><font><a href="http://500px.com/photo/13519609">Sky isn&rsquo;t the limit</a> by <a href="http://500px.com/danielpuglisi">Daniel Puglisi</a></font></p>
</content>
</entry>
<entry>
<title>Developing Shopify Themes in your favourite environment</title>
<link href="http://danielpuglisi.com/articles/2012/09/07/developing-shopify-themes-in-your-favourite-environment.html"/>
<updated>2012-09-07T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/07/developing-shopify-themes-with-your-favourite-environment</id>
<content type="html"><p><strong>TL;DR: I hate it when I can&rsquo;t develop code in my favourite environment. So I found this glorious gem
called <a href="https://github.com/Shopify/shopify_theme">shopify_theme</a>
which automatically syncs shopify themes to your connected shop.</strong></p>
<p>I&rsquo;ve been lately working on a <a href="http://shopify.com">Shopify</a> store and the client who I work for
wishes a customized desgin which looks like their original website. I had to find out, that
this process wasn&rsquo;t that compatible with my expectation how to develop code
and Shopify&rsquo;s integrated webeditor.</p>
<p>Truth to be told, Shopify&rsquo;s online editor sucks (to be fair, every webeditor sucks when you wan&rsquo;t
to develop code with it). So I was looking for another solution. Shopify promotes that you can
develop templates with their <a href="http://wiki.shopify.com/Shopify_Textmate_Bundle">Textmate Bundle</a>.
Hmm no thank you&hellip; I didn&rsquo;t wanted to install Textmate only for developing one template.</p>
<p>Then there was this <a href="http://wiki.shopify.com/Theme_Sync_App">OSX App</a> which
I got recommended from the Shopify Support. You can download &amp; upload your themes with it but
the performance is terrible. Also a no go.</p>
<p>The final solution I came up with and using right now is this remarkably gem called
<a href="https://github.com/Shopify/shopify_theme">shopify_theme</a> from Shopify itself.
It can watch for changes on theme files and if it detects something, it automatically
syncs the files to the shop. I just ask myself why they don&rsquo;t list this gem anywhere.
Maybe I haven&rsquo;t searched enough.</p>
<p>Anyway. This is how I like to work. Thank you Shopify.</p>
</content>
</entry>
<entry>
<title>Hansel and Gretel: Witch Hunters</title>
<link href="http://danielpuglisi.com/articles/2012/09/06/hansel-and-gretel-witch-hunters.html"/>
<updated>2012-09-06T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/06/hansel-and-gretel-witch-hunters</id>
<content type="html"><iframe class="youtube" src="http://www.youtube.com/embed/u910f05Sjtw" frameborder="0" allowfullscreen></iframe>
<p>w00t!</p>
</content>
</entry>
<entry>
<title>A quote from freshfey</title>
<link href="http://danielpuglisi.com/articles/2012/09/05/a-quote-from-freshfey.html"/>
<updated>2012-09-05T02:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/05/a-quote-from-freshfey</id>
<content type="html">
</content>
</entry>
<entry>
<title>Song of the Week: Red Dawn Rising - Birdy Nam Nam</title>
<link href="http://danielpuglisi.com/articles/2012/09/05/song-of-the-week-red-dawn-rising---birdy-nam-nam.html"/>
<updated>2012-09-05T01:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/05/song-of-the-week-red-dawn-rising---birdy-nam-nam</id>
<content type="html"><iframe src="https://embed.spotify.com/?uri=spotify:track:4LIuTkElFDA3U8mUcCSxET" class="spotify" frameborder="0" allowtransparency="true"></iframe>
<p>Birdy Nam Nam, concert, Switzerland, Basel, Kaserne, 27. October, are you coming too?</p>
<p><a href="http://www.kaserne-basel.ch/Musik/Birdy_Nam_Nam/Birdy_Nam_Nam_2012-1">Some infos</a>.</p>
</content>
</entry>
<entry>
<title>How we keep GitHub fast</title>
<link href="http://danielpuglisi.com/articles/2012/09/05/how-we-keep-github-fast.html"/>
<updated>2012-09-05T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/09/05/how-we-keep-github-fast</id>
<content type="html"><p><img src="https://a248.e.akamai.net/camo.github.com/367fe330bc1ad4431b2a5a3448d21bc59743fc7e/687474703a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031322f6b656570696e672d6769746875622d666173742f6d697373696f6e2d636f6e74726f6c2e706e67" alt="GitHub staff mode" /></p>
<p>An exclusive look into how GitHub is working and how they are keeping things together. This is so cool.</p>
</content>
</entry>
<entry>
<title>Passive Income Strategies For Web Designers</title>
<link href="http://danielpuglisi.com/articles/2012/08/30/passive-income-strategies-for-web-designers.html"/>
<updated>2012-08-30T00:00:00+02:00</updated>
<id>http://danielpuglisi.com/articles/2012/08/30/passive-income-strategies-for-web-designers</id>
<content type="html"><p>Sacha Greif:</p>
<blockquote><p>Finding ways to earn passive income is a growing concern among many freelance designers. I’ve always loved client work, but I have to admit that the pressure of juggling multiple bosses and constant deadlines eventually started to wear me down.</p></blockquote>
<p>Sacha Greif summarizes his experiences with passive income as a web developer.
He made money in different areas like designing <strong>Themes</strong>,
selling <strong>Icons and Vectors</strong>, writing <strong>Books</strong> or building <strong>Products</strong>.</p>
</content>
</entry>