-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
2910 lines (2059 loc) · 142 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[yield the dog]]></title>
<link href="http://yieldthedog.github.com/atom.xml" rel="self"/>
<link href="http://yieldthedog.github.com/"/>
<updated>2013-12-05T22:47:09+01:00</updated>
<id>http://yieldthedog.github.com/</id>
<author>
<name><![CDATA[yield the dog]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Interesting Thingys 74]]></title>
<link href="http://yieldthedog.github.com/blog/2013/12/05/interesting-thingys-74/"/>
<updated>2013-12-05T22:51:00+01:00</updated>
<id>http://yieldthedog.github.com/blog/2013/12/05/interesting-thingys-74</id>
<content type="html"><![CDATA[<p>This week we present you a small list of valuable thingys. Read on…</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="https://github.com/yeoman/grunt-bower-requirejs">yeoman/grunt-bower-requirejs</a></strong>
<small>Grunt task - Automagically wire-up installed Bower components into your RequireJS config </small></li>
<li><strong><a href="https://github.com/loadfive/Knwl.js">loadfive/Knwl.js</a></strong>
<small>Find dates, times, emails, phone numbers, links, reading time, even the emotion of the text, or check if it’s spam. Knwl.js makes it possible to scan through large amounts of text for data that may be of interest.</small></li>
<li><strong><a href="http://namuol.github.io/cheet.js/">cheet.js - easy easter eggs (konami code, etc) for your site</a></strong>
<small>easy easter eggs (konami code, etc) for your site. </small></li>
<li><strong><a href="https://github.com/wearefractal/wifi-location">wearefractal/wifi-location</a></strong>
<small>Triangulate your WiFi signal to guess geolocation</small></li>
<li><strong><a href="http://resumablejs.com/">Resumable.js, JavaScript magic for simultaneous, stable and resumable uploads</a></strong>
<small>It’s a JavaScript library providing multiple simultaneous, stable and resumable uploads via the HTML5 File API.</small></li>
</ul>
<h2>HTML5</h2>
<ul>
<li><strong><a href="http://perfectionkills.com/exploring-canvas-drawing-techniques/">Perfection kills » Exploring canvas drawing techniques</a></strong>
<small>uncountable different techniques to draw lines on a canvas</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="http://tympanus.net/codrops/2013/11/27/svg-icons-ftw/">SVG Icons FTW | Codrops</a></strong>
<small>Despite the growing popularity of SVG, its time around and excellent browser support, we have a lack of good vector icon approaches. It’s time to fill this gap and use SVG as icons in our web projects.</small></li>
<li><strong><a href="http://www.html5rocks.com/en/tutorials/developertools/mobile/">Chrome DevTools for Mobile: Screencast and Emulation - HTML5 Rocks</a></strong>
<small>Developing for mobile should be just as easy as it is developing for desktop.</small></li>
</ul>
<h2>Mobile Development</h2>
<ul>
<li><strong><a href="https://github.com/MobileChromeApps/mobile-chrome-apps">MobileChromeApps/mobile-chrome-apps</a></strong>
<small>Chrome apps on Android and iOS</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="http://pgre.st/">PgREST: Node.js in the Database</a></strong>
<small>JSON Document Store</small></li>
<li><strong><a href="https://github.com/node-app/Nodelike">node-app/Nodelike</a></strong>
<small>Node.js-compatible Framework for iOS http://nodeapp.org</small></li>
<li><strong><a href="https://github.com/substack/still-alive">substack/still-alive</a></strong>
<small>the “still alive” song from portal in honor of scalenpm.org reaching its goal</small></li>
<li><strong><a href="https://github.com/Voxer/sse4_crc32">Voxer/sse4_crc32</a></strong>
<small>SSE4.2-based hardware accelerated CRC32 calculator</small></li>
</ul>
<h2>Linux</h2>
<ul>
<li><strong><a href="https://github.com/steeve/boot2docker">steeve/boot2docker</a></strong>
<small>boot2docker is a lightweight Linux distribution based on Tiny Core Linux made specifically to run Docker containers. It runs completely from RAM, weights ~38mb and boots in ~5-6s (YMMV).</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="https://github.com/execat/bookmarks">execat/bookmarks</a></strong>
<small>A list of interesting open source projects.</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href=’mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm’>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 73]]></title>
<link href="http://yieldthedog.github.com/blog/2013/11/28/interesting-thingys-73/"/>
<updated>2013-11-28T21:45:00+01:00</updated>
<id>http://yieldthedog.github.com/blog/2013/11/28/interesting-thingys-73</id>
<content type="html"><![CDATA[<p>It’s overwhelming how many thingys have gathered in just one week. Go on and dig through them…</p>
<!-- More -->
<h2>Featured</h2>
<ul>
<li><strong><a href="https://scalenpm.org/">Help scale the npm registry - donate | scalenpm.org</a></strong>
<small>Most webdevs are using npm in their daily life. Now it’s time to give back</small></li>
</ul>
<h2>JavaScript</h2>
<ul>
<li><strong><a href="http://atmb4u.github.io/AutoJS/">AutoJS by atmb4u</a></strong>
<small>AutoJS is a library to continuously autocomplete textarea based on a standard dictionary.</small></li>
<li><strong><a href="https://medium.com/p/f8ae57e2cec3">Minimizing initialization time in AngularJS — Medium</a></strong>
<small>Preloading templates and RESTful resources</small></li>
<li><strong><a href="http://code.mendhak.com/angular-performance/">AngularJS - Perceived Performance by mendhak</a></strong>
<small>What you can do to enhance perceived performance on a single page app</small></li>
<li><strong><a href="http://blog.mgechev.com/2013/10/01/angularjs-partials-lazy-prefetching-strategy-weighted-directed-graph/">Lazy prefetching of AngularJS partials | Minko Gechev’s blog</a></strong>
<small>prefetch resources to enable fast apps</small></li>
<li><strong><a href="https://github.com/timoxley/polyfill-webcomponents">timoxley/polyfill-webcomponents</a></strong>
<small>Browserify-compatible web-component polyfills, courtesy of Polymer</small></li>
<li><strong><a href="https://github.com/mathiasbynens/tpyo">mathiasbynens/tpyo</a></strong>
<small>A small script that enables you to make typos in JavaScript property names. Powered by ES6 proxies Levenshtein string distance.</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="http://codepen.io/i0z/pen/mFLCw">Zero lines JS game - CodePen</a></strong>
<small>only css</small></li>
</ul>
<h2>HTML5</h2>
<ul>
<li><strong><a href="http://david.li/waves/">Ocean Wave Simulation</a></strong>
<small>in webgl</small></li>
<li><strong><a href="https://hacks.mozilla.org/2013/11/introducing-the-whiteboard-drum-webrtc-and-web-audio-api-magic/">Introducing the Whiteboard Drum</a></strong>
<small>WebRTC and Web Audio API magic</small></li>
<li><strong><a href="http://html5doctor.com/responsive-images-end-of-year-report/">Responsive images – end of year report | HTML5 Doctor</a></strong>
<small>Opera’s Bruce Lawson looks at some of the progress made and decisions yet to come in the world of responsive images.</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="https://github.com/component/drop-anywhere">component/drop-anywhere</a></strong>
<small>Drag and drop a file anywhere to upload</small></li>
<li><strong><a href="http://www.icenium.com/blog/icenium-team-blog/2013/11/21/what-exactly-is.....-the-300ms-click-delay">What Exactly Is….. The 300ms Click Delay</a></strong>
<small>Where it came from and what you can do about it</small></li>
<li><strong><a href="http://bgrins.github.io/devtools-snippets/">DevTools Snippets</a></strong>
<small>A collection of helpful snippets to use inside of browser devtools</small></li>
<li><strong><a href="http://www.thecssninja.com/javascript/pointer-events-60fps">60fps scrolling using pointer-events: none | The CSS Ninja - All things CSS, JavaScript</a></strong>
<small>just disable pointer events and scrolling gets better</small></li>
<li><strong><a href="http://snazzymaps.com/">Snazzy Maps</a></strong>
<small>Free Styles for Google Maps</small></li>
<li><strong><a href="http://browserify.org/articles">browserify articles</a></strong>
<small>new articles on browserify</small></li>
<li><strong><a href="http://oreillynet.com/pub/e/2969?cmp=ex-prog-webcast-info-webcast_peter_newsletter">Fluent Online Conference: Beyond JavaScript and HTML5</a></strong>
<small>Free online webcast: Learn about front-end frameworks, designing for performance other emerging technologies of the Web Platform</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="https://github.com/dominictarr/npmd">dominictarr/npmd</a></strong>
<small>distributed npm client. npmd is an alternative npm client that uses leveldb and local replication to improve performance by eliminating unnecessary network round-trips. </small></li>
<li><strong><a href="https://github.com/Raynos/http-framework">Raynos/http-framework</a></strong>
<small>A web framework based purely on require(‘http’)</small></li>
<li><strong><a href="https://github.com/rvagg/dnt">rvagg/dnt</a></strong>
<small>Use Docker to test code against multiple versions of Node.js simultaneously</small></li>
<li><strong><a href="https://github.com/nodejitsu/godot">nodejitsu/godot</a></strong>
<small>Godot is a streaming real-time event processor based on Riemann written in Node.js</small></li>
<li><strong><a href="http://www.nearform.com/nodecrunch/how-node-js-has-revolutionized-the-mailonline#.UpehrtFDvUe">How nodejs has revolutionised the mailonline</a></strong>
<small>Clifton Cunningham, CTO talks about the stack @ mailonline</small></li>
<li><strong><a href="http://www.youtube.com/watch?v=41oDDTRWjIQ">▶ Julian Gruber: Level Me up Scotty! - YouTube</a></strong>
<small>With all the innovation happening in the “Node.js” database land, and thanks to “npm”, we can create a simple, realtime and persistent browser chat application in just a few lines of code, without using any frameworks. Watch Julian Gruber live code it!</small></li>
<li><strong><a href="https://github.com/deoxxa/npmrc">deoxxa/npmrc</a></strong>
<small>Switch between different .npmrc files with ease and grace.</small></li>
<li><strong><a href="https://github.com/goinstant/secure-filters">goinstant/secure-filters</a></strong>
<small>Anti-XSS Security Filters for EJS and More</small></li>
</ul>
<h2>Go</h2>
<ul>
<li><strong><a href="http://thechangelog.com/on-go-web-application-ecosystem/">On Go’s Web Application Ecosystem - The Changelog</a></strong>
<small>What do you use when writing a webapp in Go</small></li>
</ul>
<h2>Tools</h2>
<ul>
<li><strong><a href="http://jagt.github.io/clumsy/">clumsy, an utility for simulating broken network for Windows Vista / Windows 7 and above</a></strong>
<small>clumsy makes your network condition on Windows significantly worse, but in a managed and interactive manner.</small></li>
<li><strong><a href="http://blog.docker.io/2013/11/docker-0-7-docker-now-runs-on-any-linux-distribution/">Docker 0.7</a></strong>
<small>With a nice feature list: Feature 1: Standard Linux support Feature 2: Storage drivers Feature 3: Offline transfer Feature 4: Links Feature 5: Container naming Feature 6: Advanced port redirects Feature 7: Quality </small></li>
</ul>
<h2>Security</h2>
<ul>
<li><strong><a href="https://www.usenix.org/conference/lisa13/os-x-hardening-securing-large-global-mac-fleet">OS X Hardening: Securing a Large Global Mac Fleet | USENIX</a></strong>
<small>OS X security is evolving: defenses are improving with each OS release but the days of “Macs don’t get malware” are gone. </small></li>
</ul>
<h2>Watching</h2>
<ul>
<li><strong><a href="http://2013.cascadiajs.com/speakers/henrik-joreteg">CascadiaJS 2013 Talks - Making WebRTC awesome</a></strong>
<small>A 20 minute look at WebRTC’s promises, challenges, and future from Henrik Joreteg.</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="https://github.com/belluzj/cosmic-sans-neue">belluzj/cosmic-sans-neue</a></strong>
<small>A font family with a great monospaced variant for programmers.</small></li>
</ul>
<h2>R</h2>
<ul>
<li><strong><a href="http://adv-r.had.co.nz/">Welcome · Advanced R.</a></strong>
<small>This is the in-progress book site for “Advanced R development”. The book is designed primarily for R users who want to improve their programming skills and understanding of the language.</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href=’mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm’>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 72]]></title>
<link href="http://yieldthedog.github.com/blog/2013/11/22/interesting-thingys-72/"/>
<updated>2013-11-22T22:31:00+01:00</updated>
<id>http://yieldthedog.github.com/blog/2013/11/22/interesting-thingys-72</id>
<content type="html"><![CDATA[<p>Again we have collected a fine collection of great thingys for you. Go check them out.</p>
<!-- More -->
<h2>FEATURED</h2>
<ul>
<li><strong><a href="https://github.com/thomaspeklak/orchestrator">Orchestrator</a></strong>
<small>My new pet project for last two weeks. Orchestrator can keep browser windows in sync by propagating scroll, location and interaction events to all connected browsers. Check out the video.</small></li>
</ul>
<h2>JavaScript</h2>
<ul>
<li><strong><a href="http://tobyho.com/2013/11/05/jsdiff-for-comparing-text/">JSDiff for Comparing Text</a></strong>
<small>JSDiff is an implementing of text comparison in Javascript, it is used in Mocha to implement colored diffs, and it’s fairly easy to use.</small></li>
<li><strong><a href="https://github.com/prettymuchbryce/easystarjs">prettymuchbryce/easystarjs</a></strong>
<small>easystar.js is an asynchronous A* pathfinding API written in Javascript for use in your HTML5 games and interactive projects. The goal of this project is to make it easy and fast to implement performance conscious pathfinding.</small></li>
<li><strong><a href="http://bgrins.github.io/videoconverter.js/">videoconverter.js - Convert Videos In Your Web Browser</a></strong>
<small>FFMpeg in JavaScript</small></li>
<li><strong><a href="http://scotch.io/tutorials/javascript/submitting-ajax-forms-the-angularjs-way">Submitting AJAX Forms: The AngularJS Way ♥ Scotch</a></strong>
<small>Comparison between jquery and angular form submit</small></li>
<li><strong><a href="http://clojurescriptkoans.com/">ClojureScript Koans</a></strong>
<small>The ClojureScript koans walk you along the path of enlightenment to learning ClojureScript. You will explore the mysteries of the ClojureScript language through a series of interactive exercises in your web browser.</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="https://github.com/addyosmani/grunt-uncss">addyosmani/grunt-uncss</a></strong>
<small>A grunt task for removing unused CSS from your project builds</small></li>
</ul>
<h2>HTML5</h2>
<ul>
<li><strong><a href="http://www.html5rocks.com/en/tutorials/forms/html5forms/">Making Forms Fabulous with HTML5 - HTML5 Rocks</a></strong>
<small>Overview of the current state of forms</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="http://substack.net/task_automation_with_npm_run">task automation with npm run</a></strong>
<small>as an alternative to grunt</small></li>
</ul>
<h2>Mobile Webdevelopment</h2>
<ul>
<li><strong><a href="https://github.com/DickvdBrink/jsHybugger">DickvdBrink/jsHybugger</a></strong>
<small>Javascript Debugger for Android http://www.jshybugger.org</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="https://github.com/mcavage/node-fast">mcavage/node-fast</a></strong>
<small>Streaming JSON RPC over TCP</small></li>
<li><strong><a href="https://github.com/visionmedia/node-ratelimiter">visionmedia/node-ratelimiter</a></strong>
<small>Abstract rate limiter for nodejs</small></li>
<li><strong><a href="https://github.com/jeresig/node-stream-playground">jeresig/node-stream-playground</a></strong>
<small>Explore Node.js streams with an interactive playground. http://nodestreams.com/</small></li>
<li><strong><a href="http://nodestreams.com/">Node.js Stream Playground</a></strong>
<small>Learn how to use node.js streams</small></li>
<li><strong><a href="https://github.com/feross/native-buffer-browserify">feross/native-buffer-browserify</a></strong>
<small>The buffer module from node.js, but for browsers.</small></li>
<li><strong><a href="https://github.com/sidorares/ni">sidorares/ni</a></strong>
<small>script to simplify node-inspector debugger workflow</small></li>
<li><strong><a href="https://github.com/MatthewMueller/nom">MatthewMueller/nom</a></strong>
<small>Dead simple site scrapper for Node.js</small></li>
<li><strong><a href="http://strongloop.com/strongblog/whats-new-in-node-js-v0-12-cluster-round-robin-load-balancing/">StrongLoop | What’s New in Node.js v0.12: Cluster Round-Robin Load Balancing</a></strong>
<small> Node core committers Ben Noordhuis and Bert Belder have started a series looking at the new features slated for inclusion in v0.12 of Node. </small></li>
<li><strong><a href="http://npmjs.eu/">npmjs.eu - European npm mirror</a></strong>
<small>Hi! I’m the European npm mirror. I’m based in Hetzner’s datacenter in Germany.</small></li>
</ul>
<h2>Go</h2>
<ul>
<li><strong><a href="https://github.com/codegangsta/martini">codegangsta/martini</a></strong>
<small>Martini is a powerful package for quickly writing modular web applications/services in Golang.</small></li>
<li><strong><a href="https://github.com/codegangsta/cli">codegangsta/cli</a></strong>
<small>A small package for building command line apps in Go</small></li>
<li><strong><a href="https://github.com/jinzhu/now">jinzhu/now</a></strong>
<small>Now is a time toolkit for golang</small></li>
</ul>
<h2>Browsers</h2>
<ul>
<li><strong><a href="http://blog.mariusschulz.com/2013/11/13/advanced-javascript-debugging-with-consoletable">Advanced JavaScript Debugging with console.table()</a></strong>
<small>An intro to console.table</small></li>
</ul>
<h2>Watching</h2>
<ul>
<li><strong><a href="http://2013.cascadiajs.com/videos">CascadiaJS Conference 2013</a></strong>
<small>Lots of videos from the conference are online</small></li>
<li><strong><a href="https://www.youtube.com/watch?v=1aPR43fhIWk">Chrome Dev Summit Live Stream (Day 1) - YouTube</a></strong>
<small>Archive of the live stream</small></li>
</ul>
<h2>Reading</h2>
<ul>
<li><strong><a href="http://info.puppetlabs.com/download-free-continuous-delivery-ebook.html">Continuous Delivery Ebook</a></strong>
<small>Free ebook!</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="https://github.com/h5bp/server-configs-nginx">h5bp/server-configs-nginx</a></strong>
<small>nginx server config on github</small></li>
<li><strong><a href="http://hubreports.yougeezer.co.uk/languages">Languages :: hubReports</a></strong>
<small>The top languages on Github</small></li>
</ul>
<h2>Raspberry Pi</h2>
<ul>
<li><strong><a href="http://resin.io/docker-on-raspberry-pi-in-4-simple-steps/">Docker on Raspberry Pi</a></strong>
<small>in just 4 simple steps</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href='mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm'>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 71]]></title>
<link href="http://yieldthedog.github.com/blog/2013/11/14/interesting-thingys-71/"/>
<updated>2013-11-14T22:01:00+01:00</updated>
<id>http://yieldthedog.github.com/blog/2013/11/14/interesting-thingys-71</id>
<content type="html"><![CDATA[<p>JavaScript is dominating again this issue, but there are other Interesting Thingys, too. Read on…</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="https://github.com/airbnb/javascript">airbnb/javascript</a></strong>
<small>AirBnB’s JavaScript Style Guide </small></li>
<li><strong><a href="http://codetunes.com/2013/little-known-angular-directives/">Little-known directives of Angular.js</a></strong>
<small>a nice collection of valuable directives</small></li>
<li><strong><a href="http://jshint.com/blog/new-in-jshint-oct-2013/">What’s new in JSHint (October, 2013)</a></strong>
<small>and a lookout for v 2.3</small></li>
<li><strong><a href="http://christianheilmann.com/2013/10/31/perpetuating-terrible-javascript-practices/">Perpetuating terrible JavaScript practices | Christian Heilmann</a></strong>
<small>the world is still a bad place</small></li>
<li><strong><a href="https://github.com/wilsonpage/jquery-fastdom">wilsonpage/jquery-fastdom</a></strong>
<small>A jQuery plugin that wraps all DOM APIs with FastDom, preventing layout thrashing. </small></li>
<li><strong><a href="https://www.youtube.com/watch?v=UqTlToUYK1E">▶ Patrick Dubroy: Parsing, Compiling, and Static Metaprogramming – JSConf EU 2013 - YouTube</a></strong>
<small>Learn how to use compilers and parser generators to remove boilerplate, build DSLs, and generally do the impossible.</small></li>
<li><strong><a href="http://addepar.github.io/#/ember-charts/overview">Addepar | Ember Charts</a></strong>
<small>A beautiful and easily extensible chart suite built with D3.js and Ember.js</small></li>
<li><strong><a href="http://blog.angularjs.org/2013/11/angularjs-120-timely-delivery.html">AngularJS 1.2.0: timely-delivery | AngularJS</a></strong>
<small>finally released</small></li>
<li><strong><a href="http://onehungrymind.com/build-sweet-angularjs-photo-slider-pt-2-ngtouch/">Build a Sweet AngularJS Photo Slider Pt 2 with ngTouch | One Hungry MindOne Hungry Mind</a></strong>
<small>nice tutorial</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/">High Performance Animations</a></strong>
<small>Modern browsers can animate four things really cheaply: position, scale, rotation and opacity. If you animate anything else, it’s at your own risk, and the chances are you’re not going to hit a silky smooth 60fps.</small></li>
<li><strong><a href="https://github.com/pattle/simpsons-in-css">pattle/simpsons-in-css</a></strong>
<small>Simpsons characters in pure CSS</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="https://github.com/w3c/webcomponents">w3c/webcomponents</a></strong>
<small>This is the repository in which W3C editor’s drafts of the Web Components specs are maintained.</small></li>
</ul>
<h2>Mobile Development</h2>
<ul>
<li><strong><a href="http://aerogear.org/">AeroGear - Open Source Libraries for Mobile Connectivity</a></strong>
<small>Mobile Connectivity Framework</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="https://github.com/visionmedia/node-actorify">visionmedia/node-actorify</a></strong>
<small>Turn any node.js duplex stream into an actor</small></li>
<li><strong><a href="https://github.com/dominictarr/readme">dominictarr/readme</a></strong>
<small>Retrieve a node module’s readme from the command line, and pipe it into less.</small></li>
</ul>
<h2>Programming</h2>
<ul>
<li><strong><a href="http://billmill.org/bloomfilter-tutorial/">Bloom Filters by Example</a></strong>
<small>A Bloom filter is a data structure designed to tell you, rapidly and memory-efficiently, whether an element is present in a set.</small></li>
</ul>
<h2>Databases</h2>
<ul>
<li><strong><a href="https://github.com/paterson/phosphorus">paterson/phosphorus</a></strong>
<small>Phosphorus is a key store system based on redis</small></li>
</ul>
<h2>Tools</h2>
<ul>
<li><strong><a href="http://www.eclipse.org/orion/">Orion</a></strong>
<small>Cloud based IDE</small></li>
<li><strong><a href="https://github.com/DanMcInerney/LANs.py">DanMcInerney/LANs.py</a></strong>
<small>Capture and inject traffic on LAN</small></li>
<li><strong><a href="https://github.com/progrium/dokku">progrium/dokku</a></strong>
<small>Docker powered mini-Heroku in around 100 lines of Bash</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="http://martinfowler.com/articles/enterpriseREST.html">Enterprise Integration Using REST</a></strong>
<small>Some insights of enterprise rest going beyond todo list REST examples</small></li>
</ul>
<h2>Fun</h2>
<ul>
<li><strong><a href="http://www.wired.com/design/2013/10/15-awesome-looking-viruses-from-the-ms-dos-era/#slideid-296071">Watch 15 Awesome MS-DOS Viruses in Action | Wired Design | Wired.com</a></strong>
<small>the good old days</small></li>
</ul>
<h2>Book</h2>
<ul>
<li><strong><a href="https://leanpub.com/messaging_as_a_programming_model">Messaging as a… by Ralf Westphal [Leanpub PDF/iPad/Kindle]</a></strong>
<small>Mainstream object-oriented programming (OOP) is lacking an essential aspect of the original definition. Messaging simply hasn’t made it into the minds of developers. So this little book is trying to help put messaging back into the OOP picture. You’ll see: Doing “OOP as if you meant it” isn’t that hard. It helps writing cleaner coder and tackling legacy code.</small></li>
</ul>
<h2>.NET security</h2>
<ul>
<li><strong><a href="http://dotnetcodr.com/2013/02/11/introduction-to-claims-based-security-in-net4-5-with-c-part-1/">Introduction to Claims based security in .NET4.5 with C# Part 1: the absolute basics | Exercises in .NET</a></strong>
<small>Claims based security in .NET - well described</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href='mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm'>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 70]]></title>
<link href="http://yieldthedog.github.com/blog/2013/11/07/interesting-thingys-70/"/>
<updated>2013-11-07T21:07:00+01:00</updated>
<id>http://yieldthedog.github.com/blog/2013/11/07/interesting-thingys-70</id>
<content type="html"><![CDATA[<p>We have collected lots of great thingys over the last two weeks. Go check them out…</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="https://github.com/jimhigson/oboe.js">jimhigson/oboe.js</a></strong>
<small>A fresh approach to AJAX that speeds up web applications. Progressive JSON parser with an easy interface so you can use the objects before the http response completes.</small></li>
<li><strong><a href="http://www.ng-newsletter.com/posts/angular-on-mobile.html">The Definitive Guide to Angular on Mobile | ng-newsletter</a></strong>
<small>What to know when going mobile with AngularJS, including section on Cordova</small></li>
<li><strong><a href="https://github.com/adobe-webplatform/Snap.svg">adobe-webplatform/Snap.svg</a></strong>
<small>The JavaScript library for modern SVG graphics. http://snapsvg.io</small></li>
<li><strong><a href="https://github.com/btford/angular-modal">btford/angular-modal</a></strong>
<small>Simple AngularJS service for creating modals</small></li>
<li><strong><a href="https://dvcs.w3.org/hg/streams-api/raw-file/tip/Overview.htm">Streams API</a></strong>
<small>The Streams API Working Draft is out</small></li>
<li><strong><a href="http://open.bekk.no/retire-js-what-you-require-you-must-also-retire">retire.js</a></strong>
<small>Retire.js - identify JavaScript libraries with known vulnerabilities in your application</small></li>
<li><strong><a href="https://moot.it/blog/technology/riotjs-the-1kb-mvp-framework.html">Riot.js — The 1kb client-side MVP framework</a></strong>
<small>Riot.js is a client-side Model-View-Presenter (MVP) framework that weighs less than 1kb. </small></li>
<li><strong><a href="https://github.com/ben-ng/minifyify">ben-ng/minifyify</a></strong>
<small>Minify your browserify bundle without losing the sourcemap</small></li>
<li><strong><a href="https://github.com/mark-rolich/Magnifier.js">mark-rolich/Magnifier.js</a></strong>
<small>Javascript library enabling magnifying glass effect on an images</small></li>
<li><strong><a href="http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html">Make Your Own AngularJS, Part 1: Scopes And Digest</a></strong>
<small>This is a series that tries to teach you Angular by showing you how it is built from the ground up</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="http://www.html5rocks.com/en/tutorials/speed/animated-gifs/">Avoiding Unnecessary Paints: Animated GIF Edition</a></strong>
<small>This article looks at why animated GIFs can cause unnecessary paints to occur, and the remarkably simple fix you can apply.</small></li>
<li><strong><a href="http://thenittygritty.co/toggle-navigation-with-pure-css">Toggle Navigation With Pure CSS – TNG - The Nitty Gritty</a></strong>
<small>This navigation makes use of the so called “Checkbox Hack”.</small></li>
<li><strong><a href="http://www.sketchingwithcss.com/flexbox/">An interactive video intro to flexbox</a></strong>
<small>nice intro to flex box</small></li>
<li><strong><a href="http://coding.smashingmagazine.com/2013/11/05/killer-responsive-layouts-with-css-regions/">Killer Responsive Layouts With CSS Regions | Smashing Coding</a></strong>
<small>Nice introduction to CSS Regions</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="http://tympanus.net/Development/AnimatedCheckboxes/">Animated Checkboxes and Radio Buttons with SVG</a></strong>
<small>Proof-of-concept for adding some fancy “check” animations to form inputs </small></li>
<li><strong><a href="http://www.quirksmode.org/blog/archives/2013/10/preliminary_met.html">Preliminary meta viewport research - QuirksBlog</a></strong>
<small>Nice Article from Peter-Paul Koch about the vieport Metatag.</small></li>
<li><strong><a href="http://www.ng-newsletter.com/posts/serious-angular-seo.html">What you need to know about Angular SEO | ng-newsletter</a></strong>
<small>Search engines, such as Google and Bing are engineered to crawl static web pages, not javascript-heavy, client-side apps. This is typical of a search engine which does not render javascript when the search bot is crawling over web pages.</small></li>
<li><strong><a href="https://github.com/DanWahlin/AngularOverlay">DanWahlin/AngularOverlay</a></strong>
<small>AngularJS directive used to automatically intercept XHR requests and show an overlay and message in a web page.</small></li>
<li><strong><a href="http://raw.densitydesign.org/">Raw</a></strong>
<small>The missing link between spreadsheets and vector graphics.</small></li>
<li><strong><a href="http://www.html5admin.com/">HTML5 ADMIN</a></strong>
<small>HTML5 Admin Template using Bootstrap 3</small></li>
<li><strong><a href="http://www.softwareishard.com/blog/firebug-tips/">Firebug Tips</a></strong>
<small>See a summary of short tips concerning specific Firebug features that do not get such attention they might deserve.</small></li>
<li><strong><a href="http://veldstra.org/2013/10/25/heroku-websocket-performance-test.html">Heroku WebSocket Performance</a></strong>
<small>A test of Heroku’s new websocket support</small></li>
<li><strong><a href="https://github.com/whatwg/streams">whatwg/streams</a></strong>
<small>The streams API provides an interface for creating, composing, and consuming streams of data. These streams are designed to map efficiently to low-level I/O primitives, and allow easy composition with built-in backpressure and buffering.</small></li>
<li><strong><a href="https://plus.google.com/%20RickByers/posts/hdRFYYXSEpA">Changes for WebView-based Android Apps</a></strong>
<small>WebView-based Android apps may experience some touch-related issues in migrating to KitKat . </small></li>
<li><strong><a href="http://blog.thematicmapping.org/2013/11/showing-gps-tracks-in-3d-with-threejs.html">thematic mapping blog: Showing GPS tracks in 3D with three.js and d3.js</a></strong>
<small>show GPS in a 2D space is getting boring, let’s add a dimension</small></li>
<li><strong><a href="http://sarasoueidan.com/blog/css-shapes/index.html">Creating Non-Rectangular Layouts with CSS Shapes</a></strong>
<small>nice demonstration on what you can do with shapes</small></li>
<li><strong><a href="http://www.staticshowdown.com/">Static Showdown: Hackathon for Static Web Apps</a></strong>
<small>The Static Showdown is a worldwide 48 hour hackathon featuring static web apps.</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="http://blog.nodejs.org/2013/10/22/cve-2013-4450-http-server-pipeline-flood-dos/">DoS Vulnerability (fixed in Node v0.8.26 and v0.10.21)</a></strong>
<small>Upgrade, if you haven’t</small></li>
</ul>
<h2>Objective C</h2>
<ul>
<li><strong><a href="https://github.com/chendo/FuzzyAutocompletePlugin">chendo/FuzzyAutocompletePlugin</a></strong>
<small>A Xcode 5 plugin that adds more flexible autocompletion rather than just prefix-matching.</small></li>
</ul>
<h2>Go</h2>
<ul>
<li><strong><a href="https://github.com/quarnster/lime">quarnster/lime</a></strong>
<small>Experimental Sublime Text clone</small></li>
<li><strong><a href="https://github.com/influxdb/influxdb">influxdb/influxdb</a></strong>
<small>Scalable datastore for metrics, events, and real-time analytics</small></li>
</ul>
<h2>Scala</h2>
<ul>
<li><strong><a href="https://github.com/stephenjudkins/pureimage">stephenjudkins/pureimage</a></strong>
<small>puts the “fun” in “functional raster image processing” </small></li>
</ul>
<h2>Browsers</h2>
<ul>
<li><strong><a href="https://www.scirra.com/blog/125/internet-explorer-11-webgl-and-more">Internet Explorer 11: WebGL and more - Scirra.com</a></strong>
<small>A walkthrough of the new and shiny IE11</small></li>
</ul>
<h2>Git</h2>
<ul>
<li><strong><a href="http://pempek.net/articles/2013/10/25/git-commit-impersonation/">Git Commit Impersonation | PEMPEK.NET</a></strong>
<small>The difficulties of committing from a shared account solved by using aliases</small></li>
</ul>
<h2>Tools</h2>
<ul>
<li><strong><a href="http://coding.smashingmagazine.com/2013/10/25/hidden-productivity-secrets-with-alfred/">Hidden Productivity Secrets With Alfred | Smashing Coding</a></strong>
<small>Good developers are always looking for ways to be faster and to automate their workflows.</small></li>
</ul>
<h2>Watching</h2>
<ul>
<li><strong><a href="http://www.youtube.com/watch?v=whGwm0Lky2s">▶ GZIP is not enough! - YouTube</a></strong>
<small>What else can you do?</small></li>
<li><strong><a href="http://www.youtube.com/watch?v=cmZqLzPy0XE">▶ Rendering Without Lumps - YouTube</a></strong>
<small>At O’Reilly’s Velocity conference, Google’s Jake Archibald had a look at how to achieve fast rendering and smooth animation in the browser.</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="https://github.com/PredictionIO/PredictionIO">PredictionIO/PredictionIO</a></strong>
<small>PredictionIO, a machine learning server for software developers and data engineers.</small></li>
</ul>
<h2>iOS</h2>
<ul>
<li><strong><a href="https://github.com/sweetmandm/FontAwesomeTools-iOS">sweetmandm/FontAwesomeTools-iOS</a></strong>
<small>Easily use FontAwesome icons in your iOS projects</small></li>
</ul>
<h2>Vim</h2>
<ul>
<li><strong><a href="https://github.com/bigfish/vim-js-context-coloring">bigfish/vim-js-context-coloring</a></strong>
<small>JavaScript Context Coloring in Vim. Like Crockford suggested</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href='mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm'>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 69]]></title>
<link href="http://yieldthedog.github.com/blog/2013/10/17/interesting-thingys-69/"/>
<updated>2013-10-17T21:51:00+02:00</updated>
<id>http://yieldthedog.github.com/blog/2013/10/17/interesting-thingys-69</id>
<content type="html"><![CDATA[<p>Don’t miss Vyacheslav Egorov’s talk @ lxjs, very entertaining.</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="http://wilsonpage.co.uk/preventing-layout-thrashing/">Preventing ‘layout thrashing’ | Wilson Page</a></strong>
<small>Layout Thrashing is when JavaScript violently writes, then reads, from the DOM, multiple times causing document reflows.</small></li>
<li><strong><a href="http://victorsavkin.com/post/63551894251/functional-refactoring-in-javascript">Functional Refactoring in JavaScript | Victor Savkin on Software Architecture</a></strong>
<small>a nice walkthrough of refactoring a function step by step</small></li>
<li><strong><a href="https://www.youtube.com/watch?v=65-RbBwZQdU">▶ Vyacheslav Egorov - LXJS 2013 - Performance and benchmarking - YouTube</a></strong>
<small>how VMs outsmart performance tests</small></li>
<li><strong><a href="http://www.dropzonejs.com/">Dropzone.js</a></strong>
<small>DropzoneJS is an open source library that provides drag’n’drop file uploads with image previews.</small></li>
<li><strong><a href="https://github.com/ILOVEPIE/Shader.js">ILOVEPIE/Shader.js</a></strong>
<small>A small and compact closure-compiler compatible javascript library for managing shaders.</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="http://css-tricks.com/interview-questions-css/">Interview Questions and Exercises About CSS | CSS-Tricks</a></strong>
<small>If you’re in the position of needing to interview someone about their skill and knowledge about CSS, it can be a little hard to think of things to ask on-the-fly. </small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="http://www.feedthebot.com/pagespeed/prioritize-visible-content.html">How to prioritize visible content for pagespeed</a></strong>
<small>enhance percieved performance</small></li>
<li><strong><a href="http://bradfrost.github.io/this-is-responsive/">This Is Responsive | Tips, Resources and Patterns for Responsive Web Design</a></strong>
<small>a very helpful page!</small></li>
<li><strong><a href="http://t3n.de/magazin/smart-tv-apps-programmieren-232724/">Einführung in die Entwicklung von Smart-TV-Apps » t3n</a></strong>
<small>A german read about how to get into developing SmartTV Apps.</small></li>
<li><strong><a href="http://github.hubspot.com/odometer/docs/welcome/">Odometer — Transition numbers with ease</a></strong>
<small>Beautiful CSS3 Number Transitions</small></li>
<li><strong><a href="http://a.deveria.com/2013/preview-the-new-caniuse-com-features/">Fyrdility » Blog Archive » Preview the new caniuse.com features</a></strong>
<small>the beta has some nice features</small></li>
<li><strong><a href="http://spark.lamplighter.io/post/2013/10/10/creating-a-dynamic-hero-image-using-canvas">Creating a Dynamic Hero Image Using Canvas - Spark: Lamplighter Blog</a></strong>
<small>nice idea</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="http://n0tw0rthy.wordpress.com/2012/01/08/from-java-to-node-js/">From Java to Node.js | n0tw0rthy</a></strong>
<small>rather long</small></li>
<li><strong><a href="http://stackoverflow.com/questions/1884724/what-is-node-js#6782438">What is Node.js? - Stack Overflow</a></strong>
<small>A really long answer</small></li>
<li><strong><a href="http://r.va.gg/2013/10/all-the-levels.html">[r.va.gg] All the levels!</a></strong>
<small>the level ecosystem is growing each day</small></li>
<li><strong><a href="https://github.com/karlwestin/node-gumbo-parser">karlwestin/node-gumbo-parser</a></strong>
<small>Parsing HTML in node using google’s gumbo parser</small></li>
</ul>
<h2>Clojure</h2>
<ul>
<li><strong><a href="https://github.com/tazjin/clojure-basics">tazjin/clojure-basics</a></strong>
<small>A collection of interesting things for people who want to start learning Clojure.</small></li>
</ul>
<h2>Programming</h2>
<ul>
<li><strong><a href="https://github.com/vhf/free-programming-books">vhf/free-programming-books</a></strong>
<small>This list initially was a clone of stackoverflow - List of freely available programming books by George Stocker. </small></li>
</ul>
<h2>Databases</h2>
<ul>
<li><strong><a href="http://tapoueh.org/blog/2013/10/09-ip4r.html">Geolocation with PostgreSQL</a></strong>
<small>a walkthrough of what Postgres can do for you</small></li>
<li><strong><a href="http://ilearnasigoalong.blogspot.co.at/2013/10/efficient-techniques-for-fuzzy-and.html">I learn as I go along: Efficient Techniques for Fuzzy and Partial matching in mongoDB</a></strong>
<small>a number of techniques, in MongoDB, for efficiently finding documents that have a number of similar attributes to a supplied query whilst not being an exact match</small></li>
</ul>
<h2>Editors</h2>
<ul>
<li><strong><a href="https://sublimegit.net/?">SublimeGit</a></strong>
<small>Full-featured Git integration for Sublime Text 2 and 3.</small></li>
</ul>
<h2>Tools</h2>
<ul>
<li><strong><a href="https://github.com/opserver/Opserver">opserver/Opserver</a></strong>
<small>Stack Exchange’s Monitoring System</small></li>
</ul>
<h2>Watching</h2>
<ul>
<li><strong><a href="http://www.youtube.com/playlist?list=PL37ZVnwpeshFs1inQbgYpun1pLsTXXQ-_">JSConf EU 2013 - YouTube</a></strong>
<small>12 videos from jsconf eu</small></li>
<li><strong><a href="http://www.infoq.com/presentations/datomic-functional-database">The Functional Database</a></strong>
<small>Rich Hickey discusses how a functional database can impact the programming model, using Datomic as an example, but the principles apply to other systems using an immutable database.</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="https://github.com/google/gumbo-parser">google/gumbo-parser</a></strong>
<small>A pure-C HTML5 parser.</small></li>
<li><strong><a href="https://github.com/blog/1657-introducing-government-github-com">Introducing government.github.com</a></strong>
<small>Governments at all levels have been using GitHub for some time now to build better, more accessible websites, publish laws and data, and even collaborate on policies themselves.</small></li>
</ul>
<h2>Fun</h2>
<ul>
<li><strong><a href="https://twitter.com/patrickdijusto/status/388313018175483905?refsrc=email">Twitter / patrickdijusto: Cop pulls over Werner Heisenberg, …</a></strong>
<small>no comment</small></li>
<li><strong><a href="http://mario.ign.com/">IGN presents Museum of Mario</a></strong>
<small>An interactive experience exploring the many eras of Mario. Turn on the audio and click around to find hidden interactions!</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href='mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm'>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 68]]></title>
<link href="http://yieldthedog.github.com/blog/2013/10/10/interesting-thingys-68/"/>
<updated>2013-10-10T21:01:00+02:00</updated>
<id>http://yieldthedog.github.com/blog/2013/10/10/interesting-thingys-68</id>
<content type="html"><![CDATA[<p>A frontend centric Interesting Thingys edition.</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="http://www.2ality.com/2013/10/console-api.html">The JavaScript console API</a></strong>
<small>cross browser consoles explained</small></li>
<li><strong><a href="https://github.com/mgechev/angularjs-style-guide">mgechev/angularjs-style-guide</a></strong>
<small>Community-driven set of best practices for AngularJS application development </small></li>
<li><strong><a href="http://www.youtube.com/watch?v=V2Q13hzTGmA">[JSConfUS 2013] Domenic Denicola: Boom, Promises/A Was Born - YouTube</a></strong>
<small>what they are and how they came about</small></li>
</ul>
<h2>CSS</h2>
<ul>
<li><strong><a href="http://blog.teamtreehouse.com/thinking-ahead-css-device-adaptation-with-viewport">CSS Device Adaptation with @viewport</a></strong>
<small>When we need to adjust a device’s browser viewport, the HTML <meta name="viewport"> tag is usually our go-to solution. But the viewport meta tag is surprisingly “non-normative”––it’s not a formal W3C spec, much less a web standard.</small></li>
<li><strong><a href="http://www.planningforaliens.com/blog/2013/10/07/flexbox-first/">Flexbox First</a></strong>
<small>The Flexbox spec is finally stable, but browser support isn’t there yet.</small></li>
<li><strong><a href="http://updates.html5rocks.com/2013/10/Flexbox-layout-isn-t-slow">Flexbox layout isn’t slow - HTML5Rocks Updates</a></strong>
<small>messures the performance of the old model versus the new model</small></li>
</ul>
<h2>HTML5</h2>
<ul>
<li><strong><a href="http://www.html5rocks.com/en/tutorials/webcomponents/yeoman/">Building Web Apps With Yeoman And Polymer - HTML5 Rocks</a></strong>
<small>Scaffold your webapps with modern tooling</small></li>
</ul>
<h2>Web Development</h2>
<ul>
<li><strong><a href="http://4waisenkinder.de/blog/2013/09/28/using-gradient-and-shadows-with-d3-dot-js/">Using SVG gradients and filters with d3.js | 4waisenkinder</a></strong>
<small>How to leverage the powers of gradients and filters to visualize stats</small></li>
<li><strong><a href="https://github.com/collectiveip/prerender">collectiveip/prerender</a></strong>
<small>Node server that uses phantomjs to render a javascript-rendered page as HTML. To be used in conjunction with prerender middleware.</small></li>
</ul>
<h2>Ruby</h2>
<ul>
<li><strong><a href="https://medium.com/p/ba896a142ac">Capistrano Version 3 — Medium</a></strong>
<small>what’s new in the big 3.0 release…</small></li>
</ul>
<h2>Node.js</h2>
<ul>
<li><strong><a href="http://dtrace.org/blogs/dap/2013/10/03/node-js-in-production-runtime-log-snooping/">Dave Pacheco’s Blog » Node.js in production: runtime log snooping</a></strong>
<small>debug messages in production?</small></li>
<li><strong><a href="http://strongloop.com/strongblog/how-to-heap-snapshots/">StrongLoop | How-to: Heap Snapshots and Handling Node.js Memory Leaks</a></strong>
<small>Taking dumps and analyzing them</small></li>
<li><strong><a href="http://blog.ponyfoo.com/2013/09/26/continuous-development-in-nodejs">Continuous Development in Node.js - Pony Foo</a></strong>
<small>automate all the things</small></li>
<li><strong><a href="https://github.com/hij1nx/level-channels">hij1nx/level-channels</a></strong>
<small>A simpler way to selectively stream future or historic changes.</small></li>
</ul>
<h2>Java</h2>
<ul>
<li><strong><a href="http://www.drdobbs.com/jvm/if-java-is-dying-it-sure-looks-awfully-h/240162390/">If Java Is Dying, It Sure Looks Awfully Healthy | Dr Dobb’s</a></strong>
<small>The odd, but popular, assertion that Java is dying can be made only in spite of the evidence, not because of it.</small></li>
</ul>
<h2>Reading</h2>
<ul>
<li><strong><a href="https://engineering.groupon.com/2013/node-js/geekon-i-tier/">I-Tier - Groupon Engineering Blog</a></strong>
<small>Groupon moved their whole App from RoR to Node.js</small></li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li><strong><a href="http://runnable.com/"> Runnable</a></strong>
<small>Full-stack code anyone can run from their browser</small></li>
</ul>
<h2>Your link could be here</h2>
<p>If we missed something special or you just want to promote a site, give us a nudge @ <a href='mailto:%79ieldt%68%65do%67@gmail%2Ec%6Fm'>yieldthedog@gmail.com</a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Interesting Thingys 67]]></title>
<link href="http://yieldthedog.github.com/blog/2013/10/03/interesting-thingys-67/"/>
<updated>2013-10-03T10:00:00+02:00</updated>
<id>http://yieldthedog.github.com/blog/2013/10/03/interesting-thingys-67</id>
<content type="html"><![CDATA[<p>And another round of thingys</p>
<!-- More -->
<h2>JavaScript</h2>
<ul>
<li><strong><a href="http://remysharp.com/2013/09/11/how-i-fixed-an-anonymous-infinite-loop-in-jsbin/">How I fixed an anonymous infinite loop in jsbin</a></strong>
<small>Remy Sharp guides through his adventures</small></li>
<li><strong><a href="http://www.jsdb.io/?sort=trending">JSDB.io - The Database of JavaScript Libraries</a></strong>
<small>The definitive source of the best JavaScript frameworks, plugins, and tools</small></li>
<li><strong><a href="http://angular-gettext.rocketeer.be/">angular-gettext</a></strong>
<small>Super-simple translation support for Angular.JS </small></li>
<li><strong><a href="https://github.com/juliangruber/validimir">juliangruber/validimir</a></strong>
<small>Create validation functions</small></li>
<li><strong><a href="https://github.com/spy-js/spy-js">spy-js/spy-js</a></strong>
<small>spy-js: javascript tracing tool http://spy-js.com</small></li>
</ul>
<h2>CSS</h2>