forked from gitcoinco/kudosbadges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkudos.yaml
3212 lines (3212 loc) · 83.8 KB
/
kudos.yaml
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
- name: Livepeer
description: Livepeer is creating a scalable Platform as a Service for developers who want to add live
or on-demand video to their project.
priceFinney: 100
artist: sriharikapu
platform: gitcoin
numClonesAllowed: 50
tags:
- Livepeer
- p2p
image: Livepeer.svg
- name: Swarm Developer
description: Swarm is a decentralized p2p storage & hosting service running on top of Ethereum blockchain.
Swarm acts as a peer-to-peer storage and servicing solution that has zero downtime, fault-tolerant,
and censorship-resistant, and self-sustaining due to a built-in incentive system.
priceFinney: 100
artist: sriharikapu
platform: gitcoin
numClonesAllowed: 100
tags:
- Swarm
- Ethereum
image: Swarm-dev-min.svg
- name: Swarm Expert
description: Swarm is a decentralized p2p storage & hosting service running on top of Ethereum blockchain.
Swarm acts as a peer-to-peer storage and servicing solution that has zero downtime, fault-tolerant,
and censorship-resistant, and self-sustaining due to a built-in incentive system.
priceFinney: 500
artist: sriharikapu
platform: gitcoin
numClonesAllowed: 20
tags:
- Swarm
- Ethereum
image: SwarmRare-min.svg
- name: Sustainability
description: You are a promoter of Sustainability, Sustainability is the process of maintaining change in a balanced fashion,
in which the exploitation of resources, the direction of investments, the orientation of technological development and
institutional change are all in harmony and enhance both current and future potential to meet human needs and aspirations.
priceFinney: 10
artist: sriharikapu
platform: gitcoin
numClonesAllowed: 1000
tags:
- Sustainability
- Sustainy
image: sustain0.svg
- name: hadoop_admiral
description: You are a Master of MapReduce, a sultan of reliable, distributed, and
scalable computing. Owners of this badge are infamous for their command of distributing
processing of large data sets!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- hadoop
- distributed
- scalable
- data
- common
image: hadoop_admiral.svg
- name: linux_wizard
description: All hail the Linux Penguin! Linux is a force in open source, powering
millions of websites and businesses. Owners of this badge are known for their
mastery of the Linux family of Operating Systems!
priceFinney: 3
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- linux
- open source
- penguin
- OS
- common
image: linux_wizard.svg
- name: gitcoin_genesis
description: The Gitcoin Genesis Badge is the rarest of the Gitcoin team badges. Owners
of this badge contributed to Gitcoin in a meaningful way in the way-back-when.
priceFinney: 1000
artist: mladen
platform: gitcoin
numClonesAllowed: 4
tags:
- gitcoin
- genesis
- rare
image: gitcoin_genesis.svg
- name: javascript_master_scriber
description: Remember the web in the days before javascript? No? Neither can we! Javascript
powers the modern web, top to bottom and we <3 the usage of javascript here at
Gitcoin. Owners of this badge are masters of the asyncronous, event driven, programming
language and specifically, of client side scripting!
priceFinney: 3
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- javascript
- node
- web
- common
image: javascript_master_scriber.svg
- name: infrastructure_ninja
description: Just like every building needs a solid foundation, every website needs
a great infrastructure. Infrastructure Ninjas are rarely seen or heard, but they
are omnipresent -- Quickly tackling the gnarly infrastructure issues that crop
up in the modern web, and ensuring stability, peace, performance, and prosperity
for inhabinants the modern web.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- OS
- infrastructure
- linux
- common
image: infrastructure_ninja.svg
- name: java_doctor
description: Is there anything better than a cup 'o' Joe in the morning? Java can
be written once and run everywhere; so what better tool to BUIDL on in the modern,
blockchain-enabled, web? Owners of the Java Doctor badge are famous for their
mastery of the Java programming language!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- java
- web
- sun
- common
image: java_doctor.svg
- name: do_more_faster
description: Is there anything better than working with someone who can rapidly
iterate? The modern web is built by Agile, and favors experimentation and iteration. Owners
of the Do More Faster badge, well, they DO MORE FASTER!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- do more faster
- iteration
- hypothesis testing
- soft skills
- common
image: do_more_faster.svg
- name: jquery_fixer
description: jQuery is a force in the modern web. By solving compatibilty issues
across browsers, and providing a friendly interface for developing AJAX websites,
jQuery won our <3s. To owners of this badge, thank you for using jQuery to provide
Fixes to all!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 800
tags:
- jquery
- javascript
- web
- MVC
- common
image: jquery_fixer.svg
- name: elixer_mixer
description: Elixer Mixers are known for their alchemy. Just as a chemist combines
fundamental chemical primitives to create potions that are near-magic, an Elixer
Mixer combines functional programming with the Erlang VM to to produce low-latency,
fault tolerant, systems!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 250
tags:
- elixer
- erlang
- functional
- common
image: elixer_mixer.svg
- name: collaboration_machine
description: Is there anything better than working with a collaboration machine? Known
for their communication skills, rapid value delivery, and great attitudes, Collaboration
Machines are a huge asset to the modern programming ecosystem!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- collaboration
- soft skills
image: collaboration_machine.svg
- name: unix_philosophy
description: Owners of this badge 'Write programs that do one thing and do it well';
just like the UNIX OS!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- unix
- build once
- common
- OS
image: unix_philosophy.svg
- name: ruby_gem
description: Is there anyone who knows more about 'gem's than someone who's good
enough at Ruby, to be a 'Gem' themselves? Owners of this badge are known for their
mastery of the Ruby programming language.
priceFinney: 5
artist: mladen
platform: gitcoin
numClonesAllowed: 550
tags:
- rails
- ruby
- common
- web
- MVC
- DRY
image: ruby_gem.svg
- name: angular_royalty
description: AngularJS is a great extension of javsacript, and we love how it lets
us declare dynamic views for our dApps! Owners of this badge are royalty of
the AngularJS programming framework!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- angular
- javascript
- common
- mvc
- web
image: angular_royalty.svg
- name: qa_ninja
description: Rarely heard or seen, the modern QA Ninja is a hyper-efficient finder
and reporter of bugs. Got a number input on an HTML form? They'll find a way
to type 'LIZARD' into it? Buffer overflow somewhere in your dApp? They'll find
it. QA Ninjas make the web bug free, and we salute them!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 700
tags:
- qa
- ninja
- bugs
- common
- bug squasher
image: qa_ninja.svg
- name: code_shipper
description: Know who we LOVE working with? Programmers who are always shipping
code! Always. Be. Shipping.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- shipping
- soft skills
- common
image: code_shipper.svg
- name: drupal_brainiac
description: Want to ship content on the modern web? Drupal is where it's at. The
leading Open Source CMS has provided tons of value to the modern web, and adding
a Drupal Brainiac to your project is a sure fire way to make your CMS fly!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- drupal
- CMS
- web
- common
image: drupal_brainiac.svg
- name: ruby_on_rails_master
description: Can anyone spin up websites faster than a Ruby on Rails Master? Owners
of this badge are legitimately famous for their mastery of MVC website development,
DRY, and use of Active Record.
priceFinney: 4
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- rails
- ruby
- web
- MVC
- common
- DRY
image: ruby_on_rails_master.svg
- name: open_source_freedom_fighter
description: Hey, look -- In the sky, it's a bird. No it's a plane. No it's an
Open Source Freedom Fighter! OSS Freedom Fighters fight for liberty, justice,
and open source code for all!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- oss
- common
- soft skills
image: open_source_freedom_fighter.svg
- name: mega_open_collaborator
description: '"Be open to the point of promiscuity" is one of our favorite points
from the famous essay from Eric Raymond entitled "The Cathedral and the Bazaar". Owners
of this badge embody the principle of Openness from the Cathedral and the Bazaar.'
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- common
- soft skills
- open
image: mega_open_collaborator.svg
- name: problem_solver
description: Is there anything better than working with someone who can rapidly
solve problems? The modern web is built by Agile, and favors experimentation
and iteration. Owners of this badge, well, they SOLVE PROBLEMS!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- common
- soft skills
image: problem_solver.svg
- name: sustainer
description: Open Source Software is fraught with problems with sustainability. Owners
of this badge are fighting to change to tide and to make Open Source Software
sustainable for generations to come!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- common
- sustainer
- open source
image: sustainer.svg
- name: super_juggler
description: Jugglers are known for their joyous attitude and their ability to manage
multiple balls in the air at once. Owners of this badge can contribute meaningfully
to several projects at once and not let a single one drop!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- common
- project management
image: super_juggler.svg
- name: above_and_beyond
description: Owners of this badge are always under-promising and over-delivering. They
go 'above and beyond' for their clients!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- common
- project management
image: above_and_beyond.svg
- name: new_dawn
description: Owners of this badge have completely changed the course of a project
their on, with their skills, organization, tenacity and sheer ability to deliver.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 50
tags:
- common
- soft skills
- momentum
image: new_dawn.svg
- name: design_star
description: Know that feeling early in a project when you're just putting pencil
to paper, figuring out what things are going to look like? Owners of this badge
at Design Stars, delivering tons of value on aesthetics, UX, and otherwise shaping
the very projects they work on!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 350
tags:
- design
- common
- star
- aesthetics
- ux
image: design_star.svg
- name: handyman
description: Its great to have a handy man around your house when your sink, plumbing,
electricity, breaks. Owners of this badge are digital handymen and handywomen. They
fix stuff, and do it with a smile on their face!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 210
tags:
- soft skills
- programmer
- technical
- handyman
image: handyman.svg
- name: handy_woman
description: Its great to have a someone handy around your house when your sink,
plumbing, electricity, breaks. Owners of this badge are digital handymen and
handywomen. They fix stuff, and do it with a smile on their face!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 210
tags:
- soft skills
- programmer
- technical
- handywoman
image: handy_woman.svg
- name: data_savvy
description: Being Data-Driven is an asset in today's world. Owners of this badge
have mastered the abiltiy to gather, cultivate, clean, gain insight, and deliver
value from a dataset
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- data
- graphs
- charts
- common
image: data_savvy.svg
- name: idea_person
description: Idea people create value and warmth with the sheer radiance of their
ideas. They think outside the box, they combine left-brain and right brain. They
deliver value by thinking about things in a new way.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- ideas
- project manager
- product manager
- common
image: idea_person.svg
- name: always_shipping
description: Know who we LOVE working with? Programmers who are always shipping
code! Always. Be. Shipping.
priceFinney: 5
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- shipping
- SHIPL
- soft skils
- common
image: always_shipping.svg
- name: c_sharp_programmer
description: Need someone who uses strong typing, declarative, functional, code? Look
no further than the owners of the C# Blacksmith Kudos!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- c#
- programmer
- common
image: c_sharp_programmer.svg
- name: cleanest_code
description: Want to work with someone who is famous for having squeaky clean code? Look
no further than owners of the 'Cleanest Code' Kudos.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- clean code
- programmer
- soft skills
- common
image: cleanest_code.svg
- name: relase_early_and_often
description: Want to work with someone who RERO (Relase Early and Often)? RERO is
a software development philosophy that emphasizes the importance of early and
frequent releases. This creates a tight feedback looop between devs and testers. Want
someone who releases frequently? Owners of this badge are who you'll want to
talk to!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- iteration
- release early
- RERO
- soft skills
- common
image: release_early_and_often.svg
- name: grow_open_source
description: Owners of this Kudos embody Gitcoin's mission of 'Grow Open Source'
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- mission
- open source
- sustainer
- common
image: grow_open_source.svg
- name: mongo_db_programmer
description: Want someone who can work efficiently with MongoDB? Look no further
than owners of this badge.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- mongodb
- db
- common
image: mongo_db_programmer.svg
- name: navigator
description: Want to work with someone who can navigate through complexity and deliver
on-time, on-scope, and on-budget? Look no further than owneres of this kudos!
priceFinney: 4
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- navigator
- project management
- common
- soft skills
image: direct.svg
- name: fast_turn_around
description: Want someone who ships deliverables quick? Owners of this 'fast turnaround'
kudos are the first place to look!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- fast
- common
- quick
image: fast_turn_around.svg
- name: css_gentle(wo)man
description: CSS is one of the foundations of the modern web. Owners of this badge
are masters of building beautiful, mobile-friendly, products.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- css
- frontend
- common
- html
image: css_gentle(wo)man.svg
- name: night_owl
description: Owners of this badge always seem to be up at night, SHIPling product
to customers.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- night owl
- quirks
image: night_owl.svg
- name: php_superstar
description: PHP -- The og web developers programming language! Know whats cool
about PHP? It's a recursive acronym, "PHP Hypertext Processor". Want a PHP programmer
for your project? Look no further than to owners of this badge!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- php
- programmer
- php6
- php7
image: php_superstar.svg
- name: builder_of_a_better_world
description: Owners of this badge are obsessed with BUIDLing a better world than
what came before them. We salute them for their dedication to making things better.
priceFinney: 10
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- common
- inspiration
image: builder_of_a_better_world.svg
- name: c_debugger
description: Need a programmer for your performant, object oriented, project that
can manage their own memory and manage on-scope and on-budget!? Look no further;
Owners of this badge are renown for their work in the C programming language.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- c
- memory management
- programming
image: c_debugger.svg
- name: redux_programmer
description: Need someone who can deliver value in Redux? Owners of this badge
are renown for their ability to work effciently in Redux.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- redux
- react
image: redux_programmer.svg
- name: ruby_on_rails_machine
description: Can anyone spin up websites faster than a Ruby on Rails hacker? Owners
of this badge are famous for their mastery of MVC website development, DRY, and
use of Active Record.
priceFinney: 5
artist: mladen
platform: gitcoin
numClonesAllowed: 550
tags:
- rails
- common
- ruby
- web
- MVC
- DRY
image: ruby_on_rails_machine.svg
- name: helping_hand
description: Need a helping hand for your project. Start with an owner of this
'Helping Hand' badge!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 50
tags:
- helping hand
- soft skills
- helpful
image: helping_hand.svg
- name: node_js_wizard
description: Remember the bad old days in the web before javascript? Javascript
powers the modern web, top to bottom and we <3 the usage of javascript here at
Gitcoin. Owners of this badge are masters of the asyncronous, event driven, programming
language and specifically, of server side scripting!
priceFinney: 4
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- javascript
- nodeJS
- common
- node
- asyncronous
image: node_js_wizard.svg
- name: c++_scientist
description: Need a programmer for your performant, object oriented, project that
can manage their own memory and manage on-scope and on-budget!? Look no further;
Owners of this badge are renown for their work in the C++ programming language.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- c++
- c
- memory management
- common
- programming
image: c++_scientist.svg
- name: pythonista
description: Pythonistas are loyal users of the Python programming language.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- python
- pythonista
image: pythonista.svg
- name: level_up
description: Owners of this badge are known for their ability to Level Up the teams
and projects they work on
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- soft skills
- common
- programmer
image: level_up.svg
- name: delegation_machine
description: Owners of this badge are known for their ability to clearly articulate
requirements, to work with collaborators of all types, and to product value in
a team atmosphere!
priceFinney: 5
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- delegate
- team
- common
- soft skills
image: delegation_machine.svg
- name: arts_and_farts
description: Need someone who is going to create beautiful designs of any kind? Check
out the owners of the 'Arts and Farts' Kudos.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 100
tags:
- arts
- design
- frontend
- aesthetics
image: arts_and_farts.svg
- name: react_reactor
description: React is a force in the modern web, and so are those who can yield
it. Owners of this badge have demonstrated proficiency in React on a past project.
priceFinney: 3
artist: mladen
platform: gitcoin
numClonesAllowed: 400
tags:
- react
- javascript
- common
- programming
image: react_reactor.svg
- name: html_celebrity
description: Looking for someone who writes clean, standards-compliant, HTML? Look
no further than this HTML Celebrity kudos.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- html
- frontend
- standards-compliant
image: html_celebrity.svg
- name: eye_for_detail
description: Looking for someone who has a great eye for detail? Look no further
than this eye for detail kudos badge.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 50
tags:
- design
- details
- soft skills
image: eye_for_detail.svg
- name: ember_master
description: Ember is a great extension of javsacript, and we love how it lets use
declare dynamic views for our dApps! Owners of this badge are masters of the
Ember programming framework!
priceFinney: 6
artist: mladen
platform: gitcoin
numClonesAllowed: 300
tags:
- ember
- javascript
image: ember_master.svg
- name: flying_pony
description: Flying Ponies take risks, inspire other ponies to think big to achieve
big ideas. We turn lofty ideas into something tangible. We are fearless about
the outcome, sometimes to our own detriment.
priceFinney: 3
artist: mladen
platform: gitcoin
numClonesAllowed: 342
tags:
- pony
- risks
- common
- ideas
- dreamer
image: flying_pony.svg
- name: bee_of_all_trades
description: Are you a cross-pollinator? Do you deliver value in a lot of places
at once? This 'Bee of all trades' badge is for you!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- soft skills
- cross-pollinator
image: bee_of_all_trades.svg
- name: mysql_hero
description: MySQL is a great asset to modern web developers. Looking for someone
who knows MySQL? This badge is for you.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 100
tags:
- mysql
- database
- db
image: mysql_hero.svg
- name: app_dev_all_star
description: Looking for an all star app developer? This badge is for you.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 340
tags:
- app
- common
- web
- programmer
image: app_dev_all_star.svg
- name: go_developer
description: Looking for someone who can Go Go Go and BUIDL in Go? This kudos is
for you.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 200
tags:
- go
- programmer
image: go_developer.svg
- name: product_wizard
description: Looking for someone to put on their product wizard's cap and deliver
massive value to your project? This kudos is for you!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- product
- common
- soft skills
image: product_wizard.svg
- name: business_minded
description: Looking for someone who can deliver the goods from a business side
of things? Look no further than owners of this 'business minded' kudos.
priceFinney: 3
artist: mladen
platform: gitcoin
numClonesAllowed: 340
tags:
- business
- common
- soft skills
image: business_minded.svg
- name: bug_squasher
description: Splat goes the bug! Owners of this badge are proficient at squashing
bugs.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- bugs
- common
- soft skills
image: bug_squasher.svg
- name: shill_ethereum
description: For your friends & family who just love to shill Ethereum
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- ethereum
- shills
image: shill_ethereum.svg
- name: shill_colorado
description: For your friends & family who just love to shill Colorado
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- colorado
- common
- shills
image: shill_colorado.svg
- name: devcon_4
description: For your friends & family who came to Devcon 4 with you.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 500
tags:
- devcon
- ethereum
- common
- shills
image: devcon_4.svg
- name: django_pony
description: Flying Ponies take risks, inspire other ponies to think big to achieve
big ideas. We turn lofty ideas into something tangible. We are fearless about
the outcome, sometimes to our own detriment.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 77
tags:
- django
- programmer
image: django_pony.svg
- name: blockchain_utopia
description: Got a Utopian vision for a blockchain-ized world? This badge is for
you.
priceFinney: 5
artist: mladen
platform: gitcoin
numClonesAllowed: 55
tags:
- soft skills
- vision
- inspiration
image: blockchain_utopia.svg
- name: collaboration_robot
description: Collab Robots push the envelope. They make connections and find ways
to build new ideas. With our powers, we can develop collabs with the smallest
or largest machines.
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 400
tags:
- collboration
- common
- soft skills
image: collaboration_robot.svg
- name: path_finder
description: "Pathfinders are masters of navigation, able to pave ways forward without\
\ hesitation. The amount of trees or woods are no concern - we won\u2019t rest\
\ until the right path has been uncovered."
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 60
tags:
- soft skills
- path
- finder
image: path_finder.svg
- name: to_the_moon
description: This kudos is for users who are taking the ecosystem to the moon!
priceFinney: 2
artist: mladen
platform: gitcoin
numClonesAllowed: 400
tags:
- soft skills
- common
image: climb_the_ladder.svg
- name: gitcoin_sustainer
description: A very special, limited edition, Kudos, for sustainers of Gitcoin.
priceFinney: 10
artist: mladen
platform: gitcoin
numClonesAllowed: 50
tags:
- gitcoin
- mission
- grow open source
image: gitcoin_sustainer.svg
- name: craftsman
description: Know a crafts-man? A craftsperson kudos is a great way to celebrate
the tools we use and the people that use them!
priceFinney: 2
artist: mladen
platform: gitcoin