forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sites.yml
2900 lines (2899 loc) · 84.4 KB
/
sites.yml
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
- title: ReactJS
main_url: "https://reactjs.org/"
url: "https://reactjs.org/"
source_url: "https://github.com/reactjs/reactjs.org"
featured: true
categories:
- Web Development
- Featured
- title: Stitch Fix
main_url: "https://www.stitchfix.com/"
url: "https://www.stitchfix.com/"
description: >
Stitch Fix is an online styling service that delivers a truly personalized
shopping experience.
categories:
- eCommerce
- Fashion
- Featured
featured: true
- title: Airbnb Engineering & Data Science
description: >
Creative engineers and data scientists building a world where you can belong
anywhere
main_url: "https://airbnb.io/"
url: "https://airbnb.io/"
categories:
- Blog
- Gallery
- Featured
featured: true
- title: Impossible Foods
main_url: "https://impossiblefoods.com/"
url: "https://impossiblefoods.com/"
categories:
- Food
- Featured
featured: true
- title: Braun
description: >
Braun offers high performance hair removal and hair care products, including dryers, straighteners, shavers, and more.
main_url: "https://ca.braun.com/en-ca"
url: "https://ca.braun.com/en-ca"
categories:
- eCommerce
- Featured
featured: true
- title: NYC Pride 2019 | WorldPride NYC | Stonewall50
main_url: "https://2019-worldpride-stonewall50.nycpride.org/"
url: "https://2019-worldpride-stonewall50.nycpride.org/"
featured: true
description: >-
Join us in 2019 for NYC Pride, as we welcome WorldPride and mark the 50th
Anniversary of the Stonewall Uprising and a half-century of LGBTQ+
liberation.
categories:
- Education
- Marketing
- Nonprofit
- Featured
built_by: Canvas United
built_by_url: "https://www.canvasunited.com/"
- title: The State of European Tech
main_url: "https://2017.stateofeuropeantech.com/"
url: "https://2017.stateofeuropeantech.com/"
featured: true
categories:
- Technology
- Featured
built_by: Studio Lovelock
built_by_url: "http://www.studiolovelock.com/"
- title: Hopper
main_url: "https://www.hopper.com/"
url: "https://www.hopper.com/"
built_by: Narative
built_by_url: "https://www.narative.co/"
featured: true
categories:
- Technology
- App
- Featured
- title: Cajun Bowfishing
main_url: "https://cajunbowfishing.com/"
url: "https://cajunbowfishing.com/"
featured: true
categories:
- eCommerce
- Sports
- Featured
built_by: Escalade Sports
built_by_url: "https://www.escaladesports.com/"
- title: GM Capital One
description: |
Introducing the new online experience for your GM Rewards Credit Card
main_url: "https://gm.capitalone.com/"
url: "https://gm.capitalone.com/"
categories:
- Credit Card
- Featured
featured: true
- title: Life Without Barriers | Foster Care
main_url: "https://www.lwb.org.au/foster-care"
url: "https://www.lwb.org.au/foster-care"
featured: true
description: >-
We are urgently seeking foster carers all across Australia. Can you open
your heart and your home to a child in need? There are different types of
foster care that can suit you. We offer training and 24/7 support.
categories:
- Nonprofit
- Education
- Documentation
- Marketing
- Featured
built_by: LWB Digital Team
built_by_url: "https://twitter.com/LWBAustralia"
- title: Figma
main_url: "https://www.figma.com/"
url: "https://www.figma.com/"
featured: true
categories:
- Marketing
- Design
- Featured
built_by: Corey Ward
built_by_url: "http://www.coreyward.me/"
- title: Bejamas - JAM Experts for hire
main_url: "https://bejamas.io/"
url: "https://bejamas.io/"
featured: true
description: >-
We help agencies and companies with JAMStack tools. This includes web
development using Static Site Generators, Headless CMS, CI / CD and CDN
setup.
categories:
- Technology
- Web Development
- Agency
- Marketing
- Featured
built_by: Bejamas
built_by_url: "https://bejamas.io/"
- title: The State of JavaScript
description: >
Data from over 20,000 developers, asking them questions on topics ranging
from front-end frameworks and state management, to build tools and testing
libraries.
main_url: "https://stateofjs.com/"
url: "https://stateofjs.com/"
source_url: "https://github.com/StateOfJS/StateOfJS"
categories:
- Data
- JavaScript
- Featured
built_by: StateOfJS
built_by_url: "https://github.com/StateOfJS/StateOfJS/graphs/contributors"
featured: true
- title: DesignSystems.com
main_url: "https://www.designsystems.com/"
url: "https://www.designsystems.com/"
description: |
A resource for learning, creating and evangelizing design systems.
categories:
- Design
- Blog
- Technology
- Featured
built_by: Corey Ward
built_by_url: "http://www.coreyward.me/"
featured: true
- title: Timely
main_url: "https://timelyapp.com/"
url: "https://timelyapp.com/"
description: |
Fully automatic time tracking. For those who trade in time.
categories:
- Productivity
- Featured
built_by: Timm Stokke
built_by_url: "https://timm.stokke.me"
featured: true
- title: Snap Kit
main_url: "https://kit.snapchat.com/"
url: "https://kit.snapchat.com/"
description: >
Snap Kit lets developers integrate some of Snapchat’s best features across
platforms.
categories:
- Technology
- Documentation
- Featured
featured: true
- title: SendGrid
main_url: "https://sendgrid.com/docs/"
url: "https://sendgrid.com/docs/"
description: >
SendGrid delivers your transactional and marketing emails through the
world's largest cloud-based email delivery platform.
categories:
- API
- Technology
- Documentation
- Featured
featured: true
- title: KNW Photography
main_url: "https://www.knw.io/"
url: "https://www.knw.io/galleries/"
featured: true
description: >
Digital portfolio for San Francisco Bay Area photographer Kirsten Wiemer.
categories:
- Photography
- Portfolio
- Featured
built_by: Ryan Wiemer
built_by_url: "https://www.ryanwiemer.com/"
- title: NEON
main_url: "http://neonrated.com/"
url: "http://neonrated.com/"
featured: false
categories:
- Gallery
- Cinema
- title: Slite
main_url: "https://slite.com/"
url: "https://slite.com/"
featured: false
categories:
- Marketing
- Technology
- title: GraphCMS
main_url: "https://graphcms.com/"
url: "https://graphcms.com/"
featured: false
categories:
- Marketing
- Technology
- title: Bottender Docs
main_url: "https://bottender.js.org/"
url: "https://bottender.js.org/"
source_url: "https://github.com/bottenderjs/bottenderjs.github.io"
featured: false
categories:
- Documentation
- Web Development
- Open Source
- title: Nike - Just Do It
main_url: "https://justdoit.nike.com/"
url: "https://justdoit.nike.com/"
featured: true
categories:
- eCommerce
- Featured
- title: AirBnB Cereal
main_url: "https://airbnb.design/cereal"
url: "https://airbnb.design/cereal"
featured: false
categories:
- Marketing
- Design
- title: Cardiogram
main_url: "https://cardiogr.am/"
url: "https://cardiogr.am/"
featured: false
categories:
- Marketing
- Technology
- title: Etcetera Design
main_url: "https://etcetera.design/"
url: "https://etcetera.design/"
source_url: "https://github.com/etceteradesign/website"
featured: false
categories:
- Portfolio
- title: Hack Club
main_url: "https://hackclub.com/"
url: "https://hackclub.com/"
source_url: "https://github.com/hackclub/site"
featured: false
categories:
- Education
- Web Development
- title: Matthias Jordan Portfolio
main_url: "https://iammatthias.com/"
url: "https://iammatthias.com/"
source_url: "https://github.com/iammatthias/net"
description: >-
Photography portfolio and blog built using Contentful + Netlify + Gatsby V2.
built_by: Matthias Jordan
built_by_url: https://github.com/iammatthias
featured: false
categories:
- Photography
- Portfolio
- title: Investment Calculator
main_url: "https://investmentcalculator.io/"
url: "https://investmentcalculator.io/"
featured: false
categories:
- Education
- Finance
- title: CSS Grid Playground by MozillaDev
main_url: "https://mozilladevelopers.github.io/playground/"
url: "https://mozilladevelopers.github.io/playground/"
source_url: "https://github.com/MozillaDevelopers/playground"
featured: false
categories:
- Education
- Web Development
- title: Piotr Fedorczyk Portfolio
built_by: Piotr Fedorczyk
built_by_url: "https://piotrf.pl"
categories:
- Portfolio
- Web Development
description: >-
Portfolio of Piotr Fedorczyk, a digital product designer and full-stack developer specializing in shaping, designing and building news and tools for news.
featured: false
main_url: "https://piotrf.pl/"
url: "https://piotrf.pl/"
- title: unrealcpp
main_url: "https://unrealcpp.com/"
url: "https://unrealcpp.com/"
source_url: "https://github.com/Harrison1/unrealcpp-com"
featured: false
categories:
- Blog
- Web Development
- title: Andy Slezak
main_url: "https://www.aslezak.com/"
url: "https://www.aslezak.com/"
source_url: "https://github.com/amslezak"
featured: false
categories:
- Web Development
- Portfolio
- title: Deliveroo.Design
main_url: "https://www.deliveroo.design/"
url: "https://www.deliveroo.design/"
featured: false
categories:
- Food
- Marketing
- title: Dona Rita
main_url: "https://www.donarita.co.uk/"
url: "https://www.donarita.co.uk/"
source_url: "https://github.com/peduarte/dona-rita-website"
featured: false
categories:
- Food
- Marketing
- title: Fröhlich ∧ Frei
main_url: "https://www.froehlichundfrei.de/"
url: "https://www.froehlichundfrei.de/"
featured: false
categories:
- Web Development
- Blog
- Open Source
- title: How to GraphQL
main_url: "https://www.howtographql.com/"
url: "https://www.howtographql.com/"
source_url: "https://github.com/howtographql/howtographql"
featured: false
categories:
- Documentation
- Web Development
- Open Source
- title: OnCallogy
main_url: "https://www.oncallogy.com/"
url: "https://www.oncallogy.com/"
featured: false
categories:
- Marketing
- Healthcare
- title: Ryan Wiemer's Portfolio
main_url: "https://www.ryanwiemer.com/"
url: "https://www.ryanwiemer.com/knw-photography/"
source_url: "https://github.com/ryanwiemer/rw"
featured: false
description: >
Digital portfolio for Oakland, CA based account manager Ryan Wiemer.
categories:
- Portfolio
- Web Development
- Design
built_by: Ryan Wiemer
built_by_url: "https://www.ryanwiemer.com/"
- title: Ventura Digitalagentur Köln
main_url: "https://www.ventura-digital.de/"
url: "https://www.ventura-digital.de/"
featured: false
built_by: Ventura Digitalagentur
categories:
- Agency
- Marketing
- Featured
- title: Azer Koçulu
main_url: "http://azer.bike/"
url: "http://azer.bike/photography"
featured: false
categories:
- Portfolio
- Photography
- Web Development
- title: Damir.io
main_url: "http://damir.io/"
url: "http://damir.io/"
source_url: "https://github.com/dvzrd/gatsby-sfiction"
featured: false
categories:
- Fiction
- title: Digital Psychology
main_url: "http://digitalpsychology.io/"
url: "http://digitalpsychology.io/"
source_url: "https://github.com/danistefanovic/digitalpsychology.io"
featured: false
categories:
- Education
- Library
- title: GRANDstack
main_url: "http://grandstack.io/"
url: "http://grandstack.io/"
featured: false
categories:
- Open Source
- Web Development
- title: Théâtres Parisiens
main_url: "http://theatres-parisiens.fr/"
url: "http://theatres-parisiens.fr/"
source_url: "https://github.com/phacks/theatres-parisiens"
featured: false
categories:
- Education
- Entertainment
- title: William Owen UK Portfolio / Blog
main_url: "http://william-owen.co.uk/"
url: "http://william-owen.co.uk/"
featured: false
description: >-
Over 20 years experience delivering customer-facing websites, internet-based
solutions and creative visual design for a wide range of companies and
organisations.
categories:
- Portfolio
- Blog
built_by: William Owen
built_by_url: "https://twitter.com/twilowen"
- title: A4 纸网
main_url: "http://www.a4z.cn/"
url: "http://www.a4z.cn/price"
source_url: "https://github.com/hiooyUI/hiooyui.github.io"
featured: false
categories:
- eCommerce
- title: Steve Meredith's Portfolio
main_url: "http://www.stevemeredith.com/"
url: "http://www.stevemeredith.com/"
featured: false
categories:
- Portfolio
- title: Sourcegraph
main_url: "https://about.sourcegraph.com/"
url: "https://about.sourcegraph.com/"
featured: false
categories:
- Web Development
- title: API Platform
main_url: "https://api-platform.com/"
url: "https://api-platform.com/"
source_url: "https://github.com/api-platform/website"
featured: false
categories:
- Documentation
- Web Development
- Open Source
- Library
- title: Artivest
main_url: "https://artivest.co/"
url: "https://artivest.co/what-we-do/for-advisors-and-investors/"
featured: false
categories:
- Marketing
- Blog
- Documentation
- Finance
- title: The Audacious Project
main_url: "https://audaciousproject.org/"
url: "https://audaciousproject.org/"
featured: false
categories:
- Nonprofit
- title: Dustin Schau's Blog
main_url: "https://blog.dustinschau.com/"
url: "https://blog.dustinschau.com/"
source_url: "https://github.com/dschau/blog"
featured: false
categories:
- Blog
- Web Development
- title: FloydHub's Blog
main_url: "https://blog.floydhub.com/"
url: "https://blog.floydhub.com/"
featured: false
categories:
- Technology
- Blog
- title: iContract Blog
main_url: "https://blog.icontract.co.uk/"
url: "http://blog.icontract.co.uk/"
featured: false
categories:
- Blog
- title: BRIIM
main_url: "https://bri.im/"
url: "https://bri.im/"
featured: false
description: >-
BRIIM is a movement to enable JavaScript enthusiasts and web developers in
machine learning. Learn about artificial intelligence and data science, two
fields which are governed by machine learning, in JavaScript. Take it right
to your browser with WebGL.
categories:
- Education
- Web Development
- Technology
- title: Caddy Smells Like Trees
main_url: "https://caddysmellsliketrees.ru/"
url: "https://caddysmellsliketrees.ru/"
source_url: "https://github.com/podabed/caddysmellsliketrees.github.io"
featured: false
description: >-
We play soul-searching songs for every day. They are merging in our forests
in such a way that it is difficult to separate them from each other, and
between them bellow bold deer poems.
categories:
- Music
- title: Calpa's Blog
main_url: "https://calpa.me/"
url: "https://calpa.me/"
source_url: "https://github.com/calpa/blog"
featured: false
categories:
- Blog
- Web Development
- title: Chocolate Free
main_url: "https://chocolate-free.com/"
url: "https://chocolate-free.com/"
source_url: "https://github.com/Khaledgarbaya/chocolate-free-website"
featured: false
description: "A full time foodie \U0001F60D a forever Parisian \"patisserie\" lover and \U0001F382 \U0001F369 \U0001F370 \U0001F36A explorer and finally an under construction #foodblogger #foodblog"
categories:
- Blog
- Food
- title: Code Bushi
main_url: "https://codebushi.com/"
url: "https://codebushi.com/"
featured: false
description: >-
Web development resources, trends, & techniques to elevate your coding
journey.
categories:
- Web Development
- Open Source
- Blog
built_by: Hunter Chang
built_by_url: "https://hunterchang.com/"
- title: Daniel Hollcraft
main_url: "https://danielhollcraft.com/"
url: "https://danielhollcraft.com/"
source_url: "https://github.com/danielbh/danielhollcraft.com"
featured: false
categories:
- Web Development
- Blog
- Portfolio
- title: Darren Britton's Portfolio
main_url: "https://darrenbritton.com/"
url: "https://darrenbritton.com/"
source_url: "https://github.com/darrenbritton/darrenbritton.github.io"
featured: false
categories:
- Web Development
- Portfolio
- title: Dave Lindberg Marketing & Design
url: "https://davelindberg.com/"
main_url: "https://davelindberg.com/"
source_url: "https://github.com/Dave-Lindberg/dl-gatsby"
featured: false
description: >-
My work revolves around solving problems for people in business, using
integrated design and marketing strategies to improve sales, increase brand
engagement, generate leads and achieve goals.
categories:
- Design
- Featured
- Marketing
- SEO
- Portfolio
- title: Design Systems Weekly
main_url: "https://designsystems.email/"
url: "https://designsystems.email/"
featured: false
categories:
- Education
- Web Development
- title: Dalbinaco's Website
main_url: "https://dlbn.co/en/"
url: "https://dlbn.co/en/"
source_url: "https://github.com/dalbinaco/dlbn.co"
featured: false
categories:
- Portfolio
- Web Development
- title: mParticle's Documentation
main_url: "https://docs.mparticle.com/"
url: "https://docs.mparticle.com/"
featured: false
categories:
- Web Development
- Documentation
- title: Doopoll
main_url: "https://doopoll.co/"
url: "https://doopoll.co/"
featured: false
categories:
- Marketing
- Technology
- title: ERC dEX
main_url: "https://ercdex.com/"
url: "https://ercdex.com/aqueduct"
featured: false
categories:
- Marketing
- title: Fabian Schultz' Portfolio
main_url: "https://fabianschultz.com/"
url: "https://fabianschultz.com/"
source_url: "https://github.com/fabe/site"
featured: false
description: >-
Hello, I’m Fabian — a product designer and developer based in Potsdam,
Germany. I’ve been working both as a product designer and frontend developer
for over 5 years now. I particularly enjoy working with companies that try
to meet broad and unique user needs.
categories:
- Portfolio
- Web Development
built_by: Fabian Schultz
built_by_url: "https://fabianschultz.com/"
- title: Formidable
main_url: "https://formidable.com/"
url: "https://formidable.com/"
featured: false
categories:
- Web Development
- Agency
- Open Source
- title: CalState House Manager
description: >
Home service membership that offers proactive and on-demand maintenance for
homeowners
main_url: "https://housemanager.calstate.aaa.com/"
url: "https://housemanager.calstate.aaa.com/"
categories:
- Insurance
- title: Gatsby Manor
main_url: "https://gatsbymanor.com/"
url: "https://gatsbymanor.com/themes"
featured: false
categories:
- Web Development
- title: The freeCodeCamp Guide
main_url: "https://guide.freecodecamp.org/"
url: "https://guide.freecodecamp.org/"
source_url: "https://github.com/freeCodeCamp/guide"
featured: false
categories:
- Web Development
- Documentation
- title: High School Hackathons
main_url: "https://hackathons.hackclub.com/"
url: "https://hackathons.hackclub.com/"
source_url: "https://github.com/hackclub/hackathons"
featured: false
categories:
- Education
- Web Development
- title: Hapticmedia
main_url: "https://hapticmedia.fr/en/"
url: "https://hapticmedia.fr/en/"
featured: false
categories:
- Agency
- title: heml.io
main_url: "https://heml.io/"
url: "https://heml.io/"
source_url: "https://github.com/SparkPost/heml.io"
featured: false
categories:
- Documentation
- Web Development
- Open Source
- title: Juliette Pretot's Portfolio
main_url: "https://juliette.sh/"
url: "https://juliette.sh/"
featured: false
categories:
- Web Development
- Portfolio
- Blog
- title: Kris Hedstrom's Portfolio
main_url: "https://k-create.com/"
url: "https://k-create.com/portfolio/"
source_url: "https://github.com/kristofferh/kristoffer"
featured: false
description: >-
Hey. I’m Kris. I’m an interactive designer / developer. I grew up in Umeå,
in northern Sweden, but I now live in Brooklyn, NY. I am currently enjoying
a hybrid Art Director + Lead Product Engineer role at a small startup called
Nomad Health. Before that, I was a Product (Engineering) Manager at Tumblr.
Before that, I worked at agencies. Before that, I was a baby. I like to
design things, and then I like to build those things. I occasionally take on
freelance projects. Feel free to get in touch if you have an interesting
project that you want to collaborate on. Or if you just want to say hello,
that’s cool too.
categories:
- Portfolio
built_by: Kris Hedstrom
built_by_url: "https://k-create.com/"
- title: knpw.rs
main_url: "https://knpw.rs/"
url: "https://knpw.rs/"
source_url: "https://github.com/knpwrs/knpw.rs"
featured: false
categories:
- Blog
- Web Development
- title: Kostas Bariotis' Blog
main_url: "https://kostasbariotis.com/"
url: "https://kostasbariotis.com/"
source_url: "https://github.com/kbariotis/kostasbariotis.com"
featured: false
categories:
- Blog
- Portfolio
- Web Development
- title: LaserTime Clinic
main_url: "https://lasertime.ru/"
url: "https://lasertime.ru/"
source_url: "https://github.com/oleglegun/lasertime"
featured: false
categories:
- Marketing
- title: Jason Lengstorf
main_url: "https://lengstorf.com"
url: "https://lengstorf.com"
source_url: "https://github.com/jlengstorf/lengstorf.com"
featured: false
categories:
- Blog
built_by: Jason Lengstorf
built_by_url: "https://github.com/jlengstorf"
- title: Mannequin.io
main_url: "https://mannequin.io/"
url: "https://mannequin.io/"
source_url: "https://github.com/LastCallMedia/Mannequin/tree/master/site"
featured: false
categories:
- Open Source
- Web Development
- Documentation
- title: manu.ninja
main_url: "https://manu.ninja/"
url: "https://manu.ninja/"
source_url: "https://github.com/Lorti/manu.ninja"
featured: false
description: >-
manu.ninja is the personal blog of Manuel Wieser, where he talks about
front-end development, games and digital art
categories:
- Blog
- Technology
- Web Development
- title: Fabric
main_url: "https://meetfabric.com/"
url: "https://meetfabric.com/"
featured: false
categories:
- Marketing
- Insurance
- title: Nexit
main_url: "https://nexit.sk/"
url: "https://nexit.sk/references"
featured: false
categories:
- Web Development
- title: Nortcast
main_url: "https://nortcast.com/"
url: "https://nortcast.com/"
featured: false
categories:
- Technology
- Entertainment
- Podcast
- title: openFDA
main_url: "https://open.fda.gov/"
url: "https://open.fda.gov/"
source_url: "https://github.com/FDA/open.fda.gov"
featured: false
categories:
- Government
- Open Source
- Web Development
- title: NYC Planning Labs (New York City Department of City Planning)
main_url: "https://planninglabs.nyc/"
url: "https://planninglabs.nyc/about/"
source_url: "https://github.com/NYCPlanning/"
featured: false
description: >-
We work with New York City's Urban Planners to deliver impactful, modern
technology tools.
categories:
- Open Source
- Government
- title: Pravdomil
main_url: "https://pravdomil.com/"
url: "https://pravdomil.com/"
source_url: "https://github.com/pravdomil/pravdomil.com"
featured: false
description: >-
I’ve been working both as a product designer and frontend developer for over
5 years now. I particularly enjoy working with companies that try to meet
broad and unique user needs.
categories:
- Portfolio
- title: Preston Richey Portfolio / Blog
main_url: "https://prestonrichey.com/"
url: "https://prestonrichey.com/"
source_url: "https://github.com/prichey/prestonrichey.com"
featured: false
categories:
- Web Development
- Portfolio
- Blog
- title: Landing page of Put.io
main_url: "https://put.io/"
url: "https://put.io/"
featured: false
categories:
- eCommerce
- Technology
- title: The Rick and Morty API
main_url: "https://rickandmortyapi.com/"
url: "https://rickandmortyapi.com/"
built_by: Axel Fuhrmann
built_by_url: "https://axelfuhrmann.com/"
featured: false
categories:
- Web Development
- Entertainment
- Documentation
- Open Source
- API
- title: Santa Compañía Creativa
main_url: "https://santacc.es/"
url: "https://santacc.es/"
source_url: "https://github.com/DesarrolloWebSantaCC/santacc-web"
featured: false
categories:
- Agency
- title: Sean Coker's Blog
main_url: "https://sean.is/"
url: "https://sean.is/"
featured: false
categories:
- Blog
- Portfolio
- Web Development
- title: Segment's Blog
main_url: "https://segment.com/blog/"
url: "https://segment.com/blog/"
featured: false
categories:
- Web Development
- Blog
- title: Several Levels
main_url: "https://severallevels.io/"
url: "https://severallevels.io/"
source_url: "https://github.com/Harrison1/several-levels"
featured: false
categories:
- Agency
- Web Development
- title: Simply
main_url: "https://simply.co.za/"
url: "https://simply.co.za/"
featured: false
categories:
- Marketing
- Insurance
- title: Storybook
main_url: "https://storybook.js.org/"
url: "https://storybook.js.org/"
source_url: "https://github.com/storybooks/storybook"
featured: false
categories:
- Web Development
- Open Source
- title: Vibert Thio's Portfolio
main_url: "https://vibertthio.com/portfolio/"
url: "https://vibertthio.com/portfolio/projects/"
source_url: "https://github.com/vibertthio/portfolio"
featured: false
categories:
- Portfolio
- Web Development
- title: VisitGemer
main_url: "https://visitgemer.sk/"
url: "https://visitgemer.sk/"
featured: false
categories:
- Marketing
- title: Beach Hut Poole
main_url: "https://www.beachhutpoole.co.uk/"
url: "https://www.beachhutpoole.co.uk/"
featured: false
categories:
- Travel
- Marketing
- title: Bricolage.io
main_url: "https://www.bricolage.io/"
url: "https://www.bricolage.io/"
source_url: "https://github.com/KyleAMathews/blog"
featured: false
categories:
- Blog
- title: Charles Pinnix Website
main_url: "https://www.charlespinnix.com/"
url: "https://www.charlespinnix.com/"
featured: false
description: >-
I’m a senior front end engineer with 8 years of experience building websites
and web applications. I’m interested in leading creative, multidisciplinary
engineering teams. I’m a creative technologist, merging photography, art,
and design into engineering and visa versa. I take a pragmatic,
product-oriented approach to development, allowing me to see the big picture
and ensuring quality products are completed on time. I have a passion for
modern front end JavaScript frameworks such as React and Vue, and I have
substantial experience on the back end with an interest in Node and
container based deployment with Docker and AWS.
categories:
- Portfolio
- Web Development
- title: Charlie Harrington's Blog
main_url: "https://www.charlieharrington.com/"
url: "https://www.charlieharrington.com/"
source_url: "https://github.com/whatrocks/blog"
featured: false
categories:
- Blog
- Web Development
- Music
- title: Developer Ecosystem
main_url: "https://www.developerecosystem.com/"
url: "https://www.developerecosystem.com/"
featured: false
categories:
- Blog
- Web Development
- title: Gabriel Adorf's Portfolio
main_url: "https://www.gabrieladorf.com/"
url: "https://www.gabrieladorf.com/"
source_url: "https://github.com/gabdorf/gabriel-adorf-portfolio"
featured: false
categories:
- Portfolio
- Web Development
- title: greglobinski.com
main_url: "https://www.greglobinski.com/"
url: "https://www.greglobinski.com/"
source_url: "https://github.com/greglobinski/www.greglobinski.com"
featured: false
categories:
- Portfolio
- Web Development
- title: I am Putra
main_url: "https://www.iamputra.com/"
url: "https://www.iamputra.com/"
featured: false
categories:
- Portfolio
- Web Development
- Blog
- title: In Sowerby Bridge
main_url: "https://www.insowerbybridge.co.uk/"
url: "https://www.insowerbybridge.co.uk/"
featured: false
categories:
- Marketing
- Government
- title: JavaScript Stuff