-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
2174 lines (2174 loc) · 87.3 KB
/
package.json
File metadata and controls
2174 lines (2174 loc) · 87.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "made-in-croatia",
"description": "A list of neat projects made in Croatia",
"keywords": [
"made",
"in",
"croatia",
"a",
"list",
"of",
"neat",
"projects"
],
"license": "MIT",
"version": "1.0.9",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"index.d.ts",
"package-lock.json",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IonicaBizau/made-in-croatia.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-croatia/issues"
},
"homepage": "https://github.com/IonicaBizau/made-in-croatia#readme",
"blah": {
"title": "Made in Croatia",
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[C#](#c-1)",
"[CSS](#css)",
"[C](undefined)",
"[C++](#c-2)",
"[ActionScript](#actionscript)",
"[CoffeeScript](#coffeescript)",
"[Go](#go)",
"[Haskell](#haskell)",
"[Objective-C](#objective-c)",
"[Perl](#perl)",
"[PHP](#php)",
"[Python](#python)",
"[Ruby](#ruby)",
"[Scala](#scala)",
"[Shell](#shell)",
"[Swift](#swift)",
"[TeX](#tex)"
]
},
{
"h3": "JavaScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"254",
"[@zeljkoprsa](https://github.com/zeljkoprsa)/[**Magento-Boilerplate**](https://github.com/zeljkoprsa/Magento-Boilerplate)",
"Magento Theme Package based on HTML5 Bolierplate by Paul Irish coupled with CSS3PIE by 327 Creative LLC",
"[:arrow_upper_right:](http://zeljkoprsa.com/magento-boilerplate-with-css3pie/ )"
],
[
"105",
"[@silvenon](https://github.com/silvenon)/[**generator-wbp**](https://github.com/silvenon/generator-wbp)",
"Scaffold a modern workflow for developing web apps and sites",
""
],
[
"54",
"[@mkozjak](https://github.com/mkozjak)/[**node-telnet-client**](https://github.com/mkozjak/node-telnet-client)",
"A simple telnet client for node.js",
""
],
[
"34",
"[@zappan](https://github.com/zappan)/[**fulljs**](https://github.com/zappan/fulljs)",
"Backbone.js application example backed by Node.js REST API and MongoDB",
""
],
[
"23",
"[@zappan](https://github.com/zappan)/[**Hello-Backbone-Node-…**](https://github.com/zappan/Hello-Backbone-Node-Sinatra-Mongo)",
"Application base for a Backbone.js application backed by Sinatra or Node.js API and MongoDB",
""
],
[
"17",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2FirstApp**](https://github.com/Gajotres/Ionic2FirstApp)",
"This is my first Ionic 2 application",
""
],
[
"13",
"[@dpskvn](https://github.com/dpskvn)/[**ntropy.js**](https://github.com/dpskvn/ntropy.js)",
"A random generator (string and number)",
"[:arrow_upper_right:](http://www.dinopaskvan.com/ntropy.js/)"
],
[
"13",
"[@silvenon](https://github.com/silvenon)/[**testing-react-and-re…**](https://github.com/silvenon/testing-react-and-redux)",
"Code from my blog series.",
"[:arrow_upper_right:](http://silvenon.com/testing-react-and-redux)"
],
[
"12",
"[@Gajotres](https://github.com/Gajotres)/[**IonicGeolocationDemo**](https://github.com/Gajotres/IonicGeolocationDemo)",
"This is Ionic Framework Google Maps demo application",
""
],
[
"11",
"[@zappan](https://github.com/zappan)/[**Orchard.Theme.TheOth…**](https://github.com/zappan/Orchard.Theme.TheOtherSide)",
"\"The Other Side\" theme for the Orchard CMS",
"[:arrow_upper_right:](http://www.orchardproject.net/gallery/List/Themes/Orchard.Theme.TheOtherSide)"
],
[
"10",
"[@dpskvn](https://github.com/dpskvn)/[**express-sse**](https://github.com/dpskvn/express-sse)",
"An Express middleware for quick'n'easy server-sent events.",
"[:arrow_upper_right:](https://npmjs.org/package/express-sse)"
],
[
"10",
"[@silvenon](https://github.com/silvenon)/[**jszg-selenium**](https://github.com/silvenon/jszg-selenium)",
"A meetup demo: Node.js Selenium testing workflow",
""
],
[
"8",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2GoogleMapsExam…**](https://github.com/Gajotres/Ionic2GoogleMapsExample)",
"This is Ionic2 + Google Maps example",
""
],
[
"8",
"[@pkoretic](https://github.com/pkoretic)/[**koa-static-server**](https://github.com/pkoretic/koa-static-server)",
"Static file serving middleware for koa with directory, rewrite and index support",
""
],
[
"8",
"[@Gajotres](https://github.com/Gajotres)/[**IonicCarouselDemo**](https://github.com/Gajotres/IonicCarouselDemo)",
"This is repository holds a Ionic carousel demo",
""
],
[
"8",
"[@Gajotres](https://github.com/Gajotres)/[**IonicNativeAnimation…**](https://github.com/Gajotres/IonicNativeAnimationsDemo)",
"This is a demo of Ionic native animations",
""
],
[
"7",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2RESTHttpExampl…**](https://github.com/Gajotres/Ionic2RESTHttpExample)",
"This Example will show you how to make a REST HTTP call with Ionic 2",
""
],
[
"7",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2FormValidation**](https://github.com/Gajotres/Ionic2FormValidation)",
"",
""
],
[
"6",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2FirebaseOAuthE…**](https://github.com/Gajotres/Ionic2FirebaseOAuthExample)",
"",
""
],
[
"6",
"[@iskugor](https://github.com/iskugor)/[**ZenTi**](https://github.com/iskugor/ZenTi)",
"OOP framework for Titanum mobile framework",
""
],
[
"5",
"[@psyburn](https://github.com/psyburn)/[**backbone.listview**](https://github.com/psyburn/backbone.listview)",
"A generic list view for Backbone.js applications.",
""
],
[
"5",
"[@mkozjak](https://github.com/mkozjak)/[**koa-cache-lite**](https://github.com/mkozjak/koa-cache-lite)",
"Zero-dependency koa router cache",
""
],
[
"5",
"[@Gajotres](https://github.com/Gajotres)/[**IonicNativeAudioDemo**](https://github.com/Gajotres/IonicNativeAudioDemo)",
"",
""
],
[
"5",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2AuthorizationE…**](https://github.com/Gajotres/Ionic2AuthorizationExample)",
"",
""
],
[
"5",
"[@zappan](https://github.com/zappan)/[**node-marionette-boil…**](https://github.com/zappan/node-marionette-boilerplate)",
"",
""
],
[
"4",
"[@msval](https://github.com/msval)/[**hellocassandrainnode…**](https://github.com/msval/hellocassandrainnodejs)",
"Hello world for cassandra database in node.js",
""
],
[
"3",
"[@silvenon](https://github.com/silvenon)/[**zepto-module-demo**](https://github.com/silvenon/zepto-module-demo)",
"There are only upsides to converting Zepto into modules",
""
],
[
"3",
"[@dpskvn](https://github.com/dpskvn)/[**mikulas.js**](https://github.com/dpskvn/mikulas.js)",
"A Simple JS Clock Lib",
"[:arrow_upper_right:](http://www.dinopaskvan.com/mikulas.js/)"
],
[
"3",
"[@silvenon](https://github.com/silvenon)/[**jszg-webpack**](https://github.com/silvenon/jszg-webpack)",
"A meetup demo: Unpacking Webpack",
""
],
[
"3",
"[@pkoretic](https://github.com/pkoretic)/[**json_rpc**](https://github.com/pkoretic/json_rpc)",
"Fast and lightweight persistent promise based JSON RPC 2.0 client implementation over TCP and Unix socket",
""
],
[
"3",
"[@ibudiselic](https://github.com/ibudiselic)/[**structure.js**](https://github.com/ibudiselic/structure.js)",
"JavaScript library of useful data structures",
""
],
[
"3",
"[@Gajotres](https://github.com/Gajotres)/[**IonicGoogleMapsExamp…**](https://github.com/Gajotres/IonicGoogleMapsExample)",
"",
"[:arrow_upper_right:](http://www.gajotres.net)"
],
[
"2",
"[@silvenon](https://github.com/silvenon)/[**cbt-tunnel**](https://github.com/silvenon/cbt-tunnel)",
"Create a Local Connection for the CrossBrowserTesting app",
"[:arrow_upper_right:](http://crossbrowsertesting.com/faq/how-create-local-connection-command-line)"
],
[
"2",
"[@msval](https://github.com/msval)/[**canvasoilpumpjack**](https://github.com/msval/canvasoilpumpjack)",
"HTML5 Canvas Oil Pump Jack",
""
],
[
"2",
"[@dpskvn](https://github.com/dpskvn)/[**simple-hooks-events**](https://github.com/dpskvn/simple-hooks-events)",
"A simple library for Hooks",
"[:arrow_upper_right:](https://www.npmjs.org/package/simple-hooks-events)"
],
[
"2",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2Internationali…**](https://github.com/Gajotres/Ionic2InternationalizationExample)",
"Ionic2InternationalizationExample",
""
],
[
"2",
"[@perpaer](https://github.com/perpaer)/[**perpaer**](https://github.com/perpaer/perpaer)",
"portfolio of mine",
""
],
[
"2",
"[@Gajotres](https://github.com/Gajotres)/[**Ionic2ShareDataExamp…**](https://github.com/Gajotres/Ionic2ShareDataExample)",
"Ionic 2 Share Data Example",
""
],
[
"2",
"[@mabasic](https://github.com/mabasic)/[**flasknotes**](https://github.com/mabasic/flasknotes)",
"Technology showcase for flask, sqlalchemy, backbone, jade templates, bootstrap and sqlite",
""
],
[
"2",
"[@aerkalov](https://github.com/aerkalov)/[**ebook-web-reader**](https://github.com/aerkalov/ebook-web-reader)",
"E-Book Web Reader. Created for Booktype books but can be used separately to show static or books in EPUB format.",
"[:arrow_upper_right:](https://github.com/aerkalov/ebook-web-reader/wiki)"
],
[
"2",
"[@Gajotres](https://github.com/Gajotres)/[**IonicMotionDetection…**](https://github.com/Gajotres/IonicMotionDetectionDemo)",
"This is a demo for ngCordova + Ionic Motion Detection",
""
],
[
"2",
"[@Gajotres](https://github.com/Gajotres)/[**IonicAdMobDemo**](https://github.com/Gajotres/IonicAdMobDemo)",
"This is Ionic Framework AdMob demo application",
""
],
[
"2",
"[@zappan](https://github.com/zappan)/[**mean-boilerplate**](https://github.com/zappan/mean-boilerplate)",
"MEAN stack boilerplate with build procedures in place",
""
]
]
}
},
{
"h3": "Java #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"905",
"[@dmilicic](https://github.com/dmilicic)/[**Android-Clean-Boiler…**](https://github.com/dmilicic/Android-Clean-Boilerplate)",
"This is starter template for writing Android apps using Clean architecture",
""
],
[
"245",
"[@dmilicic](https://github.com/dmilicic)/[**android-clean-sample…**](https://github.com/dmilicic/android-clean-sample-app)",
"A sample app that showcases our Clean architecture approach to build Android applications.",
""
],
[
"63",
"[@rkovacevic](https://github.com/rkovacevic)/[**JSFBootstrap**](https://github.com/rkovacevic/JSFBootstrap)",
"JBoss JSF 2 webapp archetype + Twitter Bootstrap",
"[:arrow_upper_right:](http://rkovacevic.github.io/)"
],
[
"13",
"[@lpandzic](https://github.com/lpandzic)/[**junit-bdd**](https://github.com/lpandzic/junit-bdd)",
"",
""
],
[
"9",
"[@ilx](https://github.com/ilx)/[**m2e-querydsl**](https://github.com/ilx/m2e-querydsl)",
"m2e configurer for querydsl ",
"[:arrow_upper_right:](http://ilx.github.com/m2e-querydsl/)"
],
[
"7",
"[@codingdojopula](https://github.com/codingdojopula)/[**gameOfLife**](https://github.com/codingdojopula/gameOfLife)",
"",
""
],
[
"5",
"[@mstipanov](https://github.com/mstipanov)/[**niocommunicator**](https://github.com/mstipanov/niocommunicator)",
"Java Nio Communicator",
""
],
[
"3",
"[@mstipanov](https://github.com/mstipanov)/[**nioinvoker**](https://github.com/mstipanov/nioinvoker)",
"Spring Framework RMI NIO Invoker",
""
],
[
"3",
"[@ilx](https://github.com/ilx)/[**m2e-annotations**](https://github.com/ilx/m2e-annotations)",
"m2e configurer for annotation processors (apt)",
"[:arrow_upper_right:](http://dl.dropbox.com/u/4367605/m2e-annotations/org.maven.ide.eclipse.annotations.feature-0.0.1-SNAPSHOT-site.zip)"
],
[
"2",
"[@mrPjer](https://github.com/mrPjer)/[**KSET.org-for-Android**](https://github.com/mrPjer/KSET.org-for-Android)",
"A native Android client for Klub Studenata Elektrotehnike (KSET)'s webpage",
"[:arrow_upper_right:](http://www.kset.org)"
],
[
"2",
"[@jmarkovic](https://github.com/jmarkovic)/[**SupportAnnotationExa…**](https://github.com/jmarkovic/SupportAnnotationExamples)",
"Examples for many available annotations in Support Annotation package, complete with comments and javadoc explaining how to use them and when.",
""
],
[
"2",
"[@dmilicic](https://github.com/dmilicic)/[**Android-Bluetooth-Sc…**](https://github.com/dmilicic/Android-Bluetooth-Scanner)",
"This is an open source bluetooth scanner for Android. It serves me as a boilerplate for building apps that interact with Bluetooth devices.",
""
],
[
"2",
"[@KarloKnezevic](https://github.com/KarloKnezevic)/[**FuzzyControlSystem**](https://github.com/KarloKnezevic/FuzzyControlSystem)",
"Fuzzy, Evolutionary and Neuro-computing. Fuzzy Control Ship System.",
""
],
[
"2",
"[@rkovacevic](https://github.com/rkovacevic)/[**ClasspathUtil**](https://github.com/rkovacevic/ClasspathUtil)",
"Utility methods for searching classes in the Java classpath.",
""
]
]
}
},
{
"h3": "C# #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"153",
"[@dajuric](https://github.com/dajuric)/[**dot-imaging**](https://github.com/dajuric/dot-imaging)",
"Minimalistic .NET imaging portable platform",
""
],
[
"139",
"[@dajuric](https://github.com/dajuric)/[**accord-net-extension…**](https://github.com/dajuric/accord-net-extensions)",
"Advanced image processing and computer vision algorithms made as fluent extensions and built for portability",
""
],
[
"69",
"[@anakic](https://github.com/anakic)/[**Jot**](https://github.com/anakic/Jot)",
"Jot is a library for persisting and applying application data (window locations and sizes, config settings, last entered data e.g. username etc.) in a consistend developer-friendly way.",
"[:arrow_upper_right:](http://www.codeproject.com/Articles/475498/Easier-NET-settings)"
],
[
"16",
"[@ShendoXT](https://github.com/ShendoXT)/[**memcardrex**](https://github.com/ShendoXT/memcardrex)",
"Advanced PlayStation Memory Card editor",
""
],
[
"10",
"[@dajuric](https://github.com/dajuric)/[**more-collections**](https://github.com/dajuric/more-collections)",
"Provides a set of portable collections installable as source files via NuGet.",
""
],
[
"10",
"[@holisticware-admin](https://github.com/holisticware-admin)/[**MonoVersal.AForgeNET**](https://github.com/holisticware-admin/MonoVersal.AForgeNET)",
"Monoversal (universal) port of AForge.NET library to Windows Phone, Mono for Android and MonoTouch",
""
],
[
"9",
"[@moljac](https://github.com/moljac)/[**MonoMobile.Dialog**](https://github.com/moljac/MonoMobile.Dialog)",
"MonoTouch.Dialog and MonoDroid.Dialog merged",
""
],
[
"8",
"[@moljac](https://github.com/moljac)/[**MonoMobile.Google.GD…**](https://github.com/moljac/MonoMobile.Google.GData)",
"Google.GData port for mobile platforms",
""
],
[
"8",
"[@cartman300](https://github.com/cartman300)/[**SFMLTextBuffer**](https://github.com/cartman300/SFMLTextBuffer)",
"TextBuffers for SFML",
""
],
[
"8",
"[@spideyfusion](https://github.com/spideyfusion)/[**akiba**](https://github.com/spideyfusion/akiba)",
"A small utility for adjusting the resolution and framerate in AKIBA'S TRIP.",
""
],
[
"7",
"[@cartman300](https://github.com/cartman300)/[**gluac**](https://github.com/cartman300/gluac)",
"GMod lua equivalent of luac",
""
],
[
"7",
"[@cartman300](https://github.com/cartman300)/[**Hackery**](https://github.com/cartman300/Hackery)",
"Making the .NET runtime do stuff it's not even supposed to do!",
""
],
[
"7",
"[@filipkristo](https://github.com/filipkristo)/[**LocalPasswords**](https://github.com/filipkristo/LocalPasswords)",
"Windows 10 UWP password manager",
""
],
[
"6",
"[@tpetrina](https://github.com/tpetrina)/[**wp8-helpers**](https://github.com/tpetrina/wp8-helpers)",
"Helper classes and asemblies for Windows Phone 8",
""
],
[
"6",
"[@cartman300](https://github.com/cartman300)/[**Peeper**](https://github.com/cartman300/Peeper)",
"A screen recording software that doesn't spy on you (probably)!",
""
],
[
"6",
"[@moljac](https://github.com/moljac)/[**Samples.Xamarin.Form…**](https://github.com/moljac/Samples.Xamarin.Forms)",
"Samples.Xamarin.Forms",
""
],
[
"5",
"[@anakic](https://github.com/anakic)/[**Thingie.Tracking**](https://github.com/anakic/Thingie.Tracking)",
"A library for persisting and applying object settings (i.e. window locations and sizes, user preferences, settings...). An alternative approach to using .settings and .config files.",
"[:arrow_upper_right:](http://www.codeproject.com/Articles/475498/Easier-NET-settings)"
],
[
"5",
"[@dsoronda](https://github.com/dsoronda)/[**AspNet.Identity.Dapp…**](https://github.com/dsoronda/AspNet.Identity.Dapper)",
"AspNet.Identity implemented using Dapper micro ORM",
""
],
[
"5",
"[@tpetrina](https://github.com/tpetrina)/[**FastSharp**](https://github.com/tpetrina/FastSharp)",
"A new interactive C# editor designed for quick prototyping in mind.",
""
],
[
"4",
"[@moljac](https://github.com/moljac)/[**Xamarin.UberTesters**](https://github.com/moljac/Xamarin.UberTesters)",
"Xamarin.UberTesters SDK bindings + upload APi",
""
],
[
"3",
"[@longspear](https://github.com/longspear)/[**blaze-server**](https://github.com/longspear/blaze-server)",
"Battlefield 3 LAN emulator",
""
],
[
"3",
"[@moljac](https://github.com/moljac)/[**System.Diagnostics**](https://github.com/moljac/System.Diagnostics)",
"System.Diagnostics when missing ... (some MT and MA projects)",
""
],
[
"3",
"[@khorvat](https://github.com/khorvat)/[**DIPracticeLayeredArc…**](https://github.com/khorvat/DIPracticeLayeredArchitecture)",
"Layered Architecture - Dependency Injection in Practice",
""
],
[
"3",
"[@moljac](https://github.com/moljac)/[**MonoMobile.SharpSNMP**](https://github.com/moljac/MonoMobile.SharpSNMP)",
"SharpSNMP port for MonoMobile (MonoTOuch and MonoForAndroid)",
""
],
[
"3",
"[@moljac](https://github.com/moljac)/[**MonoVersalSharpSeria…**](https://github.com/moljac/MonoVersalSharpSerializer)",
"SharpSerializer ports to MonoForAndroid, MonoTouch, WindowsPhone",
""
],
[
"3",
"[@cartman300](https://github.com/cartman300)/[**RuntimePInvoke**](https://github.com/cartman300/RuntimePInvoke)",
"PInvoke at runtime for .NET",
""
],
[
"3",
"[@cartman300](https://github.com/cartman300)/[**gmsv_gsharp_win32**](https://github.com/cartman300/gmsv_gsharp_win32)",
"Garry's Mod pure C# binary module proof of concept.",
""
],
[
"3",
"[@moljac](https://github.com/moljac)/[**HolisticWare.IDE**](https://github.com/moljac/HolisticWare.IDE)",
"HolisticWare tools (item and project templates, code snippets/templates) for Visual Studio and Xamarin Studio",
""
],
[
"2",
"[@vjekob](https://github.com/vjekob)/[**NAV-Assembly-Resolve…**](https://github.com/vjekob/NAV-Assembly-Resolver)",
"Assembly Resolver utility for Microsoft Dynamics NAV",
""
],
[
"2",
"[@gboduljak](https://github.com/gboduljak)/[**Android-ToolkitV2**](https://github.com/gboduljak/Android-ToolkitV2)",
"Android Toolkit is an app for an Android device managment and modification. It has built in ADB Tools, Fastboot Tools and custom recovery flasher and much more. There is also support for remote ADB control. Version V2 is being written in MVVM for perfomance, architecture and code improvement .",
""
],
[
"2",
"[@cartman300](https://github.com/cartman300)/[**NotFuckingMinecraft**](https://github.com/cartman300/NotFuckingMinecraft)",
"Voxel engine thingy done in C# and OpenTK and stuff.",
""
],
[
"2",
"[@tpetrina](https://github.com/tpetrina)/[**ImagingApps**](https://github.com/tpetrina/ImagingApps)",
"Applications that use Nokia Imaging SDK and/or work with images",
""
],
[
"2",
"[@cartman300](https://github.com/cartman300)/[**Lua.NET**](https://github.com/cartman300/Lua.NET)",
"Lua(JIT) for .NET using P/Invoke",
""
],
[
"2",
"[@moljac](https://github.com/moljac)/[**MonoTouch.Samples**](https://github.com/moljac/MonoTouch.Samples)",
"MonoTouch Samples",
""
],
[
"2",
"[@tpetrina](https://github.com/tpetrina)/[**wp-helpers**](https://github.com/tpetrina/wp-helpers)",
"Collection of various helpers for Windows Phone",
""
]
]
}
},
{
"h3": "CSS #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"64",
"[@marioloncarek](https://github.com/marioloncarek)/[**megamenu-js**](https://github.com/marioloncarek/megamenu-js)",
"Last responsive megamenu you'll ever need",
""
],
[
"7",
"[@marioloncarek](https://github.com/marioloncarek)/[**responsive-overlay-m…**](https://github.com/marioloncarek/responsive-overlay-menu)",
"Framework for making responsive overlay menus",
""
]
]
}
},
{
"h3": "C #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"54",
"[@loboris](https://github.com/loboris)/[**OrangePI-Kernel**](https://github.com/loboris/OrangePI-Kernel)",
"",
""
],
[
"35",
"[@LorDClockaN](https://github.com/LorDClockaN)/[**LorDmodUE**](https://github.com/LorDClockaN/LorDmodUE)",
"CM7 Ace kernel 2.6.35 from official source (by Cyanogenmod team) patched to extreme",
""
],
[
"10",
"[@loboris](https://github.com/loboris)/[**MICO**](https://github.com/loboris/MICO)",
"",
""
],
[
"6",
"[@dmarion](https://github.com/dmarion)/[**freebsd-armv6**](https://github.com/dmarion/freebsd-armv6)",
"FreeBSD/arm on ARMv6/ARMv7",
""
],
[
"4",
"[@loboris](https://github.com/loboris)/[**RePhone_on_Linux**](https://github.com/loboris/RePhone_on_Linux)",
"RePhone develpment on Linux with Eclipse",
""
],
[
"3",
"[@LorDClockaN](https://github.com/LorDClockaN)/[**LorDNeo_2639**](https://github.com/LorDClockaN/LorDNeo_2639)",
"HTC OneX kernel for Sense",
""
],
[
"2",
"[@LorDClockaN](https://github.com/LorDClockaN)/[**LorDmodSaga**](https://github.com/LorDClockaN/LorDmodSaga)",
"Desire S kernel",
""
],
[
"2",
"[@fergy](https://github.com/fergy)/[**iPhone_kernel_26**](https://github.com/fergy/iPhone_kernel_26)",
"",
""
],
[
"2",
"[@fergy](https://github.com/fergy)/[**kernel_htc_mtk**](https://github.com/fergy/kernel_htc_mtk)",
"",
""
],
[
"2",
"[@dmarion](https://github.com/dmarion)/[**xnu**](https://github.com/dmarion/xnu)",
"Apple Darwin xnu Kernel",
"[:arrow_upper_right:](http://www.opensource.apple.com/)"
],
[
"2",
"[@dmarion](https://github.com/dmarion)/[**flash32w**](https://github.com/dmarion/flash32w)",
"Flash tool for STM32W based boards",
""
]
]
}
},
{
"h3": "C++ #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"10",
"[@antrad](https://github.com/antrad)/[**If_Quake_2_Was_2D**](https://github.com/antrad/If_Quake_2_Was_2D)",
"A Quake 2D demo I made in 2012 using MUG engine",
""
],
[
"4",
"[@kicho](https://github.com/kicho)/[**Cataclysm**](https://github.com/kicho/Cataclysm)",
" TEST - MaNGOS repo supporting Cataclysm Expansion (4.0.3-13329)",
""
],
[
"4",
"[@krofna](https://github.com/krofna)/[**Warrior-of-Dreamworl…**](https://github.com/krofna/Warrior-of-Dreamworld)",
"Warrior of Dreamworld is 2D Massivly Multiplayer Online Role Playing Game with Real-time combat",
""
],
[
"3",
"[@kicho](https://github.com/kicho)/[**mangos**](https://github.com/kicho/mangos)",
"Basically my test repo playground containing various custom fixes",
""
],
[
"2",
"[@kicho](https://github.com/kicho)/[**ScriptDev2**](https://github.com/kicho/ScriptDev2)",
"SD2 modified to work along with my \"mangos\" repo (github.com/kicho/mangos)",
""
],
[
"2",
"[@khrvati](https://github.com/khrvati)/[**nao-object-gesture**](https://github.com/khrvati/nao-object-gesture)",
"",
""
],
[
"2",
"[@srdanrasic](https://github.com/srdanrasic)/[**OpenCLWrapper**](https://github.com/srdanrasic/OpenCLWrapper)",
"A simple OpenCL Wrapper created for a seminar project.",
""
],
[
"2",
"[@krofna](https://github.com/krofna)/[**Warrior-of-Dreamworl…**](https://github.com/krofna/Warrior-of-Dreamworld-r3)",
"",
""
]
]
}
},
{
"h3": "ActionScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"55",
"[@justpinegames](https://github.com/justpinegames)/[**QuadtreeSprite-Exten…**](https://github.com/justpinegames/QuadtreeSprite-Extension)",
"QuadtreeSprite extensions for Starling. Enables efficient handling of large number of children DisplayObjects.",
""
],
[
"15",
"[@Vj3k0](https://github.com/Vj3k0)/[**robotlegs-bender-exa…**](https://github.com/Vj3k0/robotlegs-bender-example-SARS-integration)",
"S(tarling), A(way3D), R(obotlegs 2), S(ignalCommandMap extension) integration example",
""
],
[
"10",
"[@isBatak](https://github.com/isBatak)/[**LocaleManager**](https://github.com/isBatak/LocaleManager)",
"",
""
],
[
"7",
"[@justpinegames](https://github.com/justpinegames)/[**Modi**](https://github.com/justpinegames/Modi)",
"AS3 MVC model library for defining application data with serialization and observing.",
""
],
[
"3",
"[@Vj3k0](https://github.com/Vj3k0)/[**robotlegs-extensions…**](https://github.com/Vj3k0/robotlegs-extensions-starling)",
"A set of extensions for Robotlegs 2 to support usage with the Starling framework.",
""
]
]
}
},
{
"h3": "CoffeeScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3",
"[@srolija](https://github.com/srolija)/[**node-passkit**](https://github.com/srolija/node-passkit)",
"Passbook passes with PassKit (http://www.passkit.com) API made easy",
""
]
]
}
},
{
"h3": "Go #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"35",
"[@minus5](https://github.com/minus5)/[**gofreetds**](https://github.com/minus5/gofreetds)",
"Go Sql Server database driver.",
""
],
[
"8",
"[@mkasner](https://github.com/mkasner)/[**butler**](https://github.com/mkasner/butler)",
"Execute commands through SSH in Golang",
""
],
[
"3",
"[@stratoberry](https://github.com/stratoberry)/[**go-gpsd**](https://github.com/stratoberry/go-gpsd)",
"GPSD client for Go.",
""
],
[
"2",
"[@vedranvuk](https://github.com/vedranvuk)/[**strings**](https://github.com/vedranvuk/strings)",
"Additional string parsing functions for golang",
""
],
[
"2",
"[@mkasner](https://github.com/mkasner)/[**drops**](https://github.com/mkasner/drops)",
"Write HTML5 applications in Golang",
""
]
]
}
},
{
"h3": "Haskell #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"12",
"[@jsnajder](https://github.com/jsnajder)/[**genprog**](https://github.com/jsnajder/genprog)",
"Genetic programming library",
""
],
[
"2",
"[@jsnajder](https://github.com/jsnajder)/[**hofm**](https://github.com/jsnajder/hofm)",
"Higher-order functional morphology",
""
],
[
"2",
"[@vjeranc](https://github.com/vjeranc)/[**moan**](https://github.com/vjeranc/moan)",
"Language-agnostic analyzer for positional morphosyntactic tags",
""
],
[
"2",
"[@vjeranc](https://github.com/vjeranc)/[**concraft-hr**](https://github.com/vjeranc/concraft-hr)",
"A part-of-speech tagger for Croatian based on the concraft library.",
""
]
]
}
},
{
"h3": "Objective-C #"
},
{
"table": {
"headers": [
":star2:",
"Name",