-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
1754 lines (1754 loc) · 70 KB
/
package.json
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-latvia",
"description": "A list of neat projects made in Latvia",
"keywords": [
"made",
"in",
"latvia",
"a",
"list",
"of",
"neat",
"projects"
],
"license": "MIT",
"version": "1.0.8",
"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",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IonicaBizau/made-in-latvia.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-latvia/issues"
},
"homepage": "https://github.com/IonicaBizau/made-in-latvia#readme",
"blah": {
"title": "Made in Latvia",
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[C#](#c-1)",
"[CSS](#css)",
"[C](undefined)",
"[C++](#c-2)",
"[Go](#go)",
"[Lua](#lua)",
"[PHP](#php)",
"[Python](#python)",
"[R](#r)",
"[Ruby](#ruby)",
"[Shell](#shell)",
"[Swift](#swift)",
"[VimL](#viml)"
]
},
{
"h3": "JavaScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3841",
"[@fancyapps](https://github.com/fancyapps)/[**fancyBox**](https://github.com/fancyapps/fancyBox)",
"fancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages.",
"[:arrow_upper_right:](http://fancyapps.com/fancybox/)"
],
[
"466",
"[@pkrumins](https://github.com/pkrumins)/[**node-lazy**](https://github.com/pkrumins/node-lazy)",
"lazy lists for node.js",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"336",
"[@pkrumins](https://github.com/pkrumins)/[**nodejs-proxy**](https://github.com/pkrumins/nodejs-proxy)",
"A HTTP proxy server written in node.js",
"[:arrow_upper_right:](http://www.catonmat.net/http-proxy-in-nodejs)"
],
[
"173",
"[@dnasir](https://github.com/dnasir)/[**jquery-cascading-dro…**](https://github.com/dnasir/jquery-cascading-dropdown)",
"A simple and lighweight jQuery plugin for cascading dropdown.",
""
],
[
"114",
"[@aivis](https://github.com/aivis)/[**user-stream**](https://github.com/aivis/user-stream)",
"Node.js Twitter user stream module.",
""
],
[
"84",
"[@pkrumins](https://github.com/pkrumins)/[**node-image**](https://github.com/pkrumins/node-image)",
"Unifies node-png, node-jpeg and node-gif (for great good)",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"77",
"[@pkrumins](https://github.com/pkrumins)/[**node-iptables**](https://github.com/pkrumins/node-iptables)",
"basic iptables control via nodejs",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"55",
"[@pkrumins](https://github.com/pkrumins)/[**node-tree-kill**](https://github.com/pkrumins/node-tree-kill)",
"kill trees of processes",
""
],
[
"45",
"[@pkrumins](https://github.com/pkrumins)/[**node-supermarket**](https://github.com/pkrumins/node-supermarket)",
"A key/value store based on sqlite for node.js that actually works.",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"44",
"[@pkrumins](https://github.com/pkrumins)/[**node-jsmin**](https://github.com/pkrumins/node-jsmin)",
"javascript minimizer for node.js",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"41",
"[@pkrumins](https://github.com/pkrumins)/[**node-browser**](https://github.com/pkrumins/node-browser)",
"Provides a Browser for easy web browsing from node.js",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"37",
"[@dnasir](https://github.com/dnasir)/[**angular-dateParser**](https://github.com/dnasir/angular-dateParser)",
"A simple parser that converts date and time strings into Date object",
""
],
[
"19",
"[@intarstudents](https://github.com/intarstudents)/[**keySharky**](https://github.com/intarstudents/keySharky)",
"Add missing keyboard functionality to Grooveshark! ",
"[:arrow_upper_right:](http://keysharky.tldr.lv/)"
],
[
"17",
"[@pkrumins](https://github.com/pkrumins)/[**node-passwd**](https://github.com/pkrumins/node-passwd)",
"Node.js module to manage /etc/passwd",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"15",
"[@pkrumins](https://github.com/pkrumins)/[**social-submitter**](https://github.com/pkrumins/social-submitter)",
"Submit your stories to Reddit, Hacker News, Twitter, Plurk, Identi.ca, Facebook at once!",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"15",
"[@skakri](https://github.com/skakri)/[**photoswipe-rails**](https://github.com/skakri/photoswipe-rails)",
"A gem to add PhotoSwipe to Rails asset pipeline",
""
],
[
"14",
"[@pkrumins](https://github.com/pkrumins)/[**invoice**](https://github.com/pkrumins/invoice)",
"generate pdf invoices from latex via pdflatex",
""
],
[
"12",
"[@pkrumins](https://github.com/pkrumins)/[**supermarket-cart**](https://github.com/pkrumins/supermarket-cart)",
"Connect session store using supermarket",
"[:arrow_upper_right:](http://www.stackvm.com)"
],
[
"11",
"[@dnasir](https://github.com/dnasir)/[**jquery-lazyimage**](https://github.com/dnasir/jquery-lazyimage)",
"A simple and lightweight plugin to lazily load images.",
""
],
[
"10",
"[@popoffka](https://github.com/popoffka)/[**dungeons**](https://github.com/popoffka/dungeons)",
"dungeons is a roguelike game made using HTML5 <canvas> & JavaScript.",
"[:arrow_upper_right:](http://dun.shell.tor.hu)"
],
[
"10",
"[@pkrumins](https://github.com/pkrumins)/[**keyboard**](https://github.com/pkrumins/keyboard)",
"provides english keyboard (used as a widget for browserling)",
""
],
[
"10",
"[@pkrumins](https://github.com/pkrumins)/[**ssh-key-manager**](https://github.com/pkrumins/ssh-key-manager)",
"manage ssh keys on the server side (can be used with ssh-key-widget)",
""
],
[
"6",
"[@aivis](https://github.com/aivis)/[**json-formater**](https://github.com/aivis/json-formater)",
"Node.js JSON data formater / comparator",
""
],
[
"5",
"[@pkrumins](https://github.com/pkrumins)/[**node-number-range**](https://github.com/pkrumins/node-number-range)",
"number ranges",
""
],
[
"4",
"[@ronv](https://github.com/ronv)/[**Typewriter.js**](https://github.com/ronv/Typewriter.js)",
"",
""
],
[
"4",
"[@DavisMiculis](https://github.com/DavisMiculis)/[**jPulse**](https://github.com/DavisMiculis/jPulse)",
"jPulse is a jQuery library that adds \"pulse-like\" effect to selected element.",
""
],
[
"4",
"[@pkrumins](https://github.com/pkrumins)/[**rackspace-tools**](https://github.com/pkrumins/rackspace-tools)",
"some tools to manage rackspace cloud servers",
"[:arrow_upper_right:](http://www.catonmat.net)"
],
[
"3",
"[@EriksRemess](https://github.com/EriksRemess)/[**node-speedtest-mini**](https://github.com/EriksRemess/node-speedtest-mini)",
"Speedtest.net Mini for Node.js",
""
],
[
"3",
"[@EriksRemess](https://github.com/EriksRemess)/[**radiotwitterbot.js**](https://github.com/EriksRemess/radiotwitterbot.js)",
"a simple internet radio twitter bot",
""
],
[
"3",
"[@EriksRemess](https://github.com/EriksRemess)/[**geekit-safari**](https://github.com/EriksRemess/geekit-safari)",
"GeekIt for Safari",
""
],
[
"3",
"[@RuslanZavacky](https://github.com/RuslanZavacky)/[**yesnopuzzle**](https://github.com/RuslanZavacky/yesnopuzzle)",
"Repository for Ember.js Presentation",
""
],
[
"3",
"[@eID-LV](https://github.com/eID-LV)/[**eidtsttom**](https://github.com/eID-LV/eidtsttom)",
"Apache Tomcat based Latvian eID authentication webserver app",
""
],
[
"3",
"[@renarsvilnis](https://github.com/renarsvilnis)/[**fout-b-gone**](https://github.com/renarsvilnis/fout-b-gone)",
"Git repository for foutbgone bower package",
""
],
[
"3",
"[@eID-LV](https://github.com/eID-LV)/[**eidtstapa**](https://github.com/eID-LV/eidtstapa)",
"Apache based Latvian eID authentication webserver app",
""
],
[
"3",
"[@AMekss](https://github.com/AMekss)/[**jquery.quicktip**](https://github.com/AMekss/jquery.quicktip)",
"jQuery plugin for browser's default tooltip text replacement",
""
],
[
"2",
"[@EriksRemess](https://github.com/EriksRemess)/[**Pasaules-pulkstenis**](https://github.com/EriksRemess/Pasaules-pulkstenis)",
"Iztulkots Mac OS X Lion vidžets",
""
],
[
"2",
"[@intarstudents](https://github.com/intarstudents)/[**httpK3y**](https://github.com/intarstudents/httpK3y)",
"Toggle keyboard shortcuts from outside of Firefox or Prism!",
"[:arrow_upper_right:](https://addons.mozilla.org/en-US/firefox/addon/242725/)"
],
[
"2",
"[@popoffka](https://github.com/popoffka)/[**ponydraw**](https://github.com/popoffka/ponydraw)",
"",
""
],
[
"2",
"[@eID-LV](https://github.com/eID-LV)/[**eidtstiis**](https://github.com/eID-LV/eidtstiis)",
"IIS based Latvian eID authentication webserver app",
""
],
[
"2",
"[@intarstudents](https://github.com/intarstudents)/[**keyMazony**](https://github.com/intarstudents/keyMazony)",
"Add missing keyboard functionality to Amazon Cloud Player!",
"[:arrow_upper_right:](http://keymazony.tldr.lv/)"
],
[
"2",
"[@aivis](https://github.com/aivis)/[**draugiem**](https://github.com/aivis/draugiem)",
"Draugiem.lv API node.js client",
""
],
[
"2",
"[@renarsvilnis](https://github.com/renarsvilnis)/[**lol-build-manager-el…**](https://github.com/renarsvilnis/lol-build-manager-electron-app)",
"Cross platform application built with help of Electron framework for the League of Legends build manager",
""
],
[
"2",
"[@ronv](https://github.com/ronv)/[**TermLand**](https://github.com/ronv/TermLand)",
"Terminal Style Landing Page",
""
],
[
"2",
"[@gusc](https://github.com/gusc)/[**jQuery-Jmol**](https://github.com/gusc/jQuery-Jmol)",
"Jmol jQuery plugin",
""
],
[
"2",
"[@dainis](https://github.com/dainis)/[**nodejs-scraper**](https://github.com/dainis/nodejs-scraper)",
"",
""
],
[
"2",
"[@dnasir](https://github.com/dnasir)/[**jquery-tagz**](https://github.com/dnasir/jquery-tagz)",
"jQuery plugin that converts standard HTML text input into a cool tag list.",
""
],
[
"2",
"[@pkrumins](https://github.com/pkrumins)/[**plurk-translation-to…**](https://github.com/pkrumins/plurk-translation-tool)",
"A GreaseMonkey script for translating plurks on any timeline",
"[:arrow_upper_right:](http://opensource.plurk.com/Translation_Tool/)"
],
[
"2",
"[@intarstudents](https://github.com/intarstudents)/[**Bytingshark**](https://github.com/intarstudents/Bytingshark)",
"Add missing file size UI to Grooveshark!",
"[:arrow_upper_right:](http://userscripts.org/scripts/show/119253)"
]
]
}
},
{
"h3": "Java #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"498",
"[@attenzione](https://github.com/attenzione)/[**android-ColorPickerP…**](https://github.com/attenzione/android-ColorPickerPreference)",
"ColorPickerPreference for android to create color picker in preferences. Project created as Library",
""
],
[
"24",
"[@omegasoft7](https://github.com/omegasoft7)/[**FSLogger**](https://github.com/omegasoft7/FSLogger)",
"Android Logger with a lot of options to help Developers",
""
],
[
"21",
"[@LatvianModder](https://github.com/LatvianModder)/[**FTBUtilities**](https://github.com/LatvianModder/FTBUtilities)",
"FTBUtilities mod for Minecraft. Depends on FTBLib",
"[:arrow_upper_right:](http://minecraft.curseforge.com/projects/ftb-utilities)"
],
[
"10",
"[@PeterisP](https://github.com/PeterisP)/[**morphology**](https://github.com/PeterisP/morphology)",
"Latvian morphology module",
""
],
[
"9",
"[@LatvianModder](https://github.com/LatvianModder)/[**CurseGraph**](https://github.com/LatvianModder/CurseGraph)",
"",
""
],
[
"8",
"[@LatvianModder](https://github.com/LatvianModder)/[**FTBLib**](https://github.com/LatvianModder/FTBLib)",
"FTBLib mod for Minecraft. Depends on LatLib",
"[:arrow_upper_right:](http://minecraft.curseforge.com/projects/ftblib)"
],
[
"8",
"[@AlexeyBuzdin](https://github.com/AlexeyBuzdin)/[**android-development-…**](https://github.com/AlexeyBuzdin/android-development-course)",
"Course for Android Development",
""
],
[
"5",
"[@AlexeyBuzdin](https://github.com/AlexeyBuzdin)/[**robovm-dagger2-sampl…**](https://github.com/AlexeyBuzdin/robovm-dagger2-sample)",
"Sample project with Android, RoboVM and Web clients",
""
],
[
"5",
"[@LatvianModder](https://github.com/LatvianModder)/[**EMC_Condenser**](https://github.com/LatvianModder/EMC_Condenser)",
"EMC Condenser mod",
"[:arrow_upper_right:](http://minecraft.curseforge.com/projects/emc-condenser)"
],
[
"4",
"[@buzdin](https://github.com/buzdin)/[**hybrid-web-apps**](https://github.com/buzdin/hybrid-web-apps)",
"Demonstration of hyprid web application approach",
""
],
[
"4",
"[@DavisNT](https://github.com/DavisNT)/[**XposedLollipopTests**](https://github.com/DavisNT/XposedLollipopTests)",
"Bug report example for Xposed for Lollipop (https://github.com/rovo89/android_art/i… and https://github.com/rovo89/Xposed/issues/…",
""
],
[
"3",
"[@buzdin](https://github.com/buzdin)/[**postcard-from-baltic…**](https://github.com/buzdin/postcard-from-baltics)",
"Hack4Europe Riga",
""
],
[
"3",
"[@PeterisP](https://github.com/PeterisP)/[**LVTagger**](https://github.com/PeterisP/LVTagger)",
"",
""
],
[
"2",
"[@buzdin](https://github.com/buzdin)/[**java-microbenchmarki…**](https://github.com/buzdin/java-microbenchmarking)",
"",
""
],
[
"2",
"[@ivarsv](https://github.com/ivarsv)/[**android-liepajniekie…**](https://github.com/ivarsv/android-liepajniekiem-afisa)",
"Android App that retrieves events from liepajniekiem.lv site",
"[:arrow_upper_right:](www.mindmutex.com)"
],
[
"2",
"[@mstrengis](https://github.com/mstrengis)/[**DraugiemApi**](https://github.com/mstrengis/DraugiemApi)",
"has to be included as library on your android app",
""
],
[
"2",
"[@knoppixmeister](https://github.com/knoppixmeister)/[**android_custom_swipe…**](https://github.com/knoppixmeister/android_custom_swipe_refresh_listfragment)",
"Android custom swipe refresh listfragment with load indicator and Try Load button when empty ListAdapter",
"[:arrow_upper_right:](http://bizapps.lv)"
],
[
"2",
"[@LatvianModder](https://github.com/LatvianModder)/[**EnkiTools**](https://github.com/LatvianModder/EnkiTools)",
"EnkiTools mod",
"[:arrow_upper_right:](http://minecraft.curseforge.com/projects/enkitools)"
],
[
"2",
"[@LatvianModder](https://github.com/LatvianModder)/[**Silicio**](https://github.com/LatvianModder/Silicio)",
"Silicio mod",
"[:arrow_upper_right:](http://minecraft.curseforge.com/projects/silicio)"
],
[
"2",
"[@ivarsv](https://github.com/ivarsv)/[**stanford-ai-class**](https://github.com/ivarsv/stanford-ai-class)",
"Proof of concept implementations from Lecture materials",
""
]
]
}
},
{
"h3": "C# #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"446",
"[@Knagis](https://github.com/Knagis)/[**CommonMark.NET**](https://github.com/Knagis/CommonMark.NET)",
"Implementation of CommonMark specification in C# for converting Markdown documents to HTML. Optimized for maximum performance and portability.",
""
],
[
"7",
"[@pdonald](https://github.com/pdonald)/[**aho-corasick**](https://github.com/pdonald/aho-corasick)",
"Aho–Corasick string matching algorithm in C#",
""
],
[
"4",
"[@EntrypointSoft](https://github.com/EntrypointSoft)/[**AspNet.Identity.Enti…**](https://github.com/EntrypointSoft/AspNet.Identity.EntityFramework6)",
"EF6 provider for Asp.Net Identity 3.0 RC1",
""
],
[
"3",
"[@pdonald](https://github.com/pdonald)/[**mysql-connector-net**](https://github.com/pdonald/mysql-connector-net)",
"MySQL Connector/Net with Entity Framework 6 support.",
""
],
[
"3",
"[@pdonald](https://github.com/pdonald)/[**latvval-kvaldarbs**](https://github.com/pdonald/latvval-kvaldarbs)",
"Latviešu valodas vārdu locītājs",
""
]
]
}
},
{
"h3": "CSS #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"4",
"[@ncla](https://github.com/ncla)/[**SiteUpdateTracker**](https://github.com/ncla/SiteUpdateTracker)",
"Tracking stuff.",
""
]
]
}
},
{
"h3": "C #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"27",
"[@DimaSmirnov](https://github.com/DimaSmirnov)/[**Archlinux-downgrader**](https://github.com/DimaSmirnov/Archlinux-downgrader)",
"Powerful packages downgrader for Archlinux, written in C",
""
],
[
"9",
"[@TheWhisp](https://github.com/TheWhisp)/[**android_device_samsu…**](https://github.com/TheWhisp/android_device_samsung_s7500)",
"Device configuration for Samsung GT-S7500",
"[:arrow_upper_right:](http://forum.xda-developers.com/showthread.php?t=2012939)"
],
[
"7",
"[@TheWhisp](https://github.com/TheWhisp)/[**android_kernel_samsu…**](https://github.com/TheWhisp/android_kernel_samsung_msm7x27a)",
"Linux kernel for Samsung GT-S6500(D) and GT-S7500",
""
],
[
"5",
"[@chocis](https://github.com/chocis)/[**raspberry_bare_metal…**](https://github.com/chocis/raspberry_bare_metal_os)",
"",
""
],
[
"4",
"[@andreyv](https://github.com/andreyv)/[**hexchat-autoaway**](https://github.com/andreyv/hexchat-autoaway)",
"A HexChat plugin to set away on idle",
""
],
[
"3",
"[@arseniuss](https://github.com/arseniuss)/[**flos**](https://github.com/arseniuss/flos)",
"flos experimental operating system",
"[:arrow_upper_right:](http://flos.arseniuss.id.lv)"
],
[
"3",
"[@TheWhisp](https://github.com/TheWhisp)/[**android_device_samsu…**](https://github.com/TheWhisp/android_device_samsung_s6500)",
"Device configuration for Samsung GT-S6500 (NFC)",
"[:arrow_upper_right:](http://forum.xda-developers.com/showthread.php?t=2012939)"
]
]
}
},
{
"h3": "C++ #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"49",
"[@elnormous](https://github.com/elnormous)/[**ouzel**](https://github.com/elnormous/ouzel)",
"C++ 2D game engine for Windows, OS X, Linux, iOS, tvOS and Android",
""
],
[
"16",
"[@elnormous](https://github.com/elnormous)/[**RealisticWaterSceneN…**](https://github.com/elnormous/RealisticWaterSceneNode)",
"Realistic water scene node for Irrlicht",
""
],
[
"8",
"[@WheretIB](https://github.com/WheretIB)/[**nullc**](https://github.com/WheretIB/nullc)",
"Fast C-like programming language with advanced features",
""
],
[
"4",
"[@xcoder123](https://github.com/xcoder123)/[**SvgToGcode**](https://github.com/xcoder123/SvgToGcode)",
"Takes SVG and converts the elements in gcode instructions.",
""
],
[
"4",
"[@elnormous](https://github.com/elnormous)/[**FlurryX**](https://github.com/elnormous/FlurryX)",
"C++ wrapper for Flurry Analytics for Cocos2d-x",
""
],
[
"4",
"[@elnormous](https://github.com/elnormous)/[**rtmp_relay**](https://github.com/elnormous/rtmp_relay)",
"RTMP relay",
""
]
]
}
},
{
"h3": "Go #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"4",
"[@vpavkin](https://github.com/vpavkin)/[**GoRefactor**](https://github.com/vpavkin/GoRefactor)",
"refactoring tool for Go Programming Language",
""
],
[
"3",
"[@postfix](https://github.com/postfix)/[**csrf**](https://github.com/postfix/csrf)",
"XSRF Token generation for Go web app",
""
],
[
"2",
"[@postfix](https://github.com/postfix)/[**keyvault**](https://github.com/postfix/keyvault)",
"A simple embeddable key vault for use in Go programs.",
"[:arrow_upper_right:](http://gokyle.org/keyvault)"
]
]
}
},
{
"h3": "Lua #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"27",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**GiderosCodingEasy**](https://github.com/ar2rsawseen/GiderosCodingEasy)",
"Extending Gideros Functionality",
""
],
[
"14",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**GameTemplate**](https://github.com/ar2rsawseen/GameTemplate)",
"Upcoming Gideros Mobile Game Template",
""
],
[
"6",
"[@Akuukis](https://github.com/Akuukis)/[**RobotColorWars-Minec…**](https://github.com/Akuukis/RobotColorWars-Minecraft)",
"Project in Lua for OpenComputers to make ColorWars where robots explore, build bases, reproduce and fight with each other. ",
""
],
[
"5",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**Json**](https://github.com/ar2rsawseen/Json)",
"JSON Encoder and Parser for Lua 5.1",
"[:arrow_upper_right:](http://www.chipmunkav.com/downloads/Json.lua)"
],
[
"5",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**dataSaver**](https://github.com/ar2rsawseen/dataSaver)",
"Save and load data module for Gideros Mobile",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Save-and-load-data-module-for-Gideros-Mobile)"
],
[
"4",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**TextWrap**](https://github.com/ar2rsawseen/TextWrap)",
"Creating multi line text fields in Gideros Mobile",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Creating-multi-line-text-fields-in-Gideros-Mobile)"
],
[
"3",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**GiderosUnite**](https://github.com/ar2rsawseen/GiderosUnite)",
"Gideros Unite framework provides a way to implement Multiplayer games using Gideros Mobile. It uses LuaSocket to establish socket connections and even create server/client instances.",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Gideros-Unite-framework-for-multiplayer-games)"
],
[
"3",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**AceSlide_oop**](https://github.com/ar2rsawseen/AceSlide_oop)",
"Oop version of AceSlide which uses Gideros class system",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Easy-input-for-choosing-packages-or-levels-in-Gideros-Mobile)"
],
[
"3",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**Gestures**](https://github.com/ar2rsawseen/Gestures)",
"Detecting Gestures in Gideros",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Detecting-Gestures-in-Gideros)"
],
[
"3",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**Localize**](https://github.com/ar2rsawseen/Localize)",
"Localization in Gideros",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Localization-in-Gideros)"
],
[
"2",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**AceSlide**](https://github.com/ar2rsawseen/AceSlide)",
"Easy input for choosing packages or levels in Gideros Mobile",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Easy-input-for-choosing-packages-or-levels-in-Gideros-Mobile)"
],
[
"2",
"[@ar2rsawseen](https://github.com/ar2rsawseen)/[**Share**](https://github.com/ar2rsawseen/Share)",
"Share button in Gideros app",
"[:arrow_upper_right:](http://appcodingeasy.com/Gideros-Mobile/Share-button-in-Gideros-app)"
]
]
}
},
{
"h3": "PHP #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"385",
"[@YahnisElsts](https://github.com/YahnisElsts)/[**plugin-update-checke…**](https://github.com/YahnisElsts/plugin-update-checker)",
"A custom update checker for WordPress plugins. Ufseful if you can't or don't want to host your plugin in the official WP plugin repository, but would still like it to support automatic plugin updates.",
""
],
[
"253",
"[@puikinsh](https://github.com/puikinsh)/[**Sparkling**](https://github.com/puikinsh/Sparkling)",
"WordPress Bootstrap 3 theme with doeznes of options powered by Options Framework",
"[:arrow_upper_right:](http://colorlib.com/wp/themes/sparkling/)"
],
[
"236",
"[@YahnisElsts](https://github.com/YahnisElsts)/[**wp-update-server**](https://github.com/YahnisElsts/wp-update-server)",
"A custom update API for WordPress plugins and themes. Intended to be used in conjunction with my plugin-update-checker library.",
""
],
[
"227",
"[@kasparsd](https://github.com/kasparsd)/[**minit**](https://github.com/kasparsd/minit)",
"A WordPress plugin to combine CSS and Javascript files",
""
],
[
"142",
"[@puikinsh](https://github.com/puikinsh)/[**Dazzling**](https://github.com/puikinsh/Dazzling)",
"Flat design WordPress WooCommerce theme developed using Bootstrap 3 and FlexSlider",
"[:arrow_upper_right:](http://colorlib.com/wp/themes/dazzling/)"
],
[
"82",
"[@puikinsh](https://github.com/puikinsh)/[**Unite-Theme**](https://github.com/puikinsh/Unite-Theme)",
"Customizable WordPress WooCommerce theme developed using Bootstrap 3 and Options Framework",
"[:arrow_upper_right:](http://colorlib.com/wp/unite)"
],
[
"50",
"[@dmitryd](https://github.com/dmitryd)/[**typo3-realurl**](https://github.com/dmitryd/typo3-realurl)",
"RealURL extension for TYPO3 CMS",
""
],
[
"46",
"[@puikinsh](https://github.com/puikinsh)/[**Travelify**](https://github.com/puikinsh/Travelify)",
"WordPress theme with Theme Customization API integration, Theme Options, content slider and layout options",
"[:arrow_upper_right:](http://colorlib.com/wp/themes/travelify/)"
],
[
"45",
"[@puikinsh](https://github.com/puikinsh)/[**Activello**](https://github.com/puikinsh/Activello)",
"WordPress Bootstrap blog theme with doeznes of options using WordPress Customizer",
""
],
[
"27",
"[@kasparsd](https://github.com/kasparsd)/[**widget-context-wporg**](https://github.com/kasparsd/widget-context-wporg)",
"Widget Context",
"[:arrow_upper_right:](https://wordpress.org/plugins/widget-context/)"
],
[
"19",
"[@integry](https://github.com/integry)/[**livecart**](https://github.com/integry/livecart)",
"PHP e-commerce storefront software",
"[:arrow_upper_right:](http://livecart.com)"
],
[
"18",
"[@sitilge](https://github.com/sitilge)/[**propeller**](https://github.com/sitilge/propeller)",
"Graphical DBMS tool based on Propel",
""
],
[
"17",
"[@fruit](https://github.com/fruit)/[**sfCacheTaggingPlugin**](https://github.com/fruit/sfCacheTaggingPlugin)",
"The sfCacheTaggingPlugin is a Symfony plugin to store caches associated with unique tags to keep cache content up-to-date based by incrementing tags version",
"[:arrow_upper_right:](http://www.symfony-project.org/plugins/sfCacheTaggingPlugin)"
],
[
"16",
"[@kasparsd](https://github.com/kasparsd)/[**envato-automatic-plu…**](https://github.com/kasparsd/envato-automatic-plugin-update)",
"WordPress plugin library for providing automatic plugin updates to CodeCanyon plugins",
""
],
[
"14",
"[@dmitryd](https://github.com/dmitryd)/[**typo3-dd_googlesitem…**](https://github.com/dmitryd/typo3-dd_googlesitemap)",
"This is a \"dd_googlesitemap\" TYPO3 extension. It adds sitemap support to TYPO3 CMS.",
""
],
[
"14",
"[@kasparsd](https://github.com/kasparsd)/[**feed-image-enclosure**](https://github.com/kasparsd/feed-image-enclosure)",
"Add featured images as enclosures in RSS feeds",
""
],
[
"12",
"[@kasparsd](https://github.com/kasparsd)/[**orbiter**](https://github.com/kasparsd/orbiter)",
"Orbiter is a simple and extendable PHP tool for publishing beautiful websites out of simple text documents",
"[:arrow_upper_right:](viaorbiter.com)"
],
[
"10",
"[@kasparsd](https://github.com/kasparsd)/[**photos-sync**](https://github.com/kasparsd/photos-sync)",
"Sync OS X Photos to Anywhere (NAS, Dropbox, Amazon S3 or Glacier, Backblaze B2)",
""
],
[
"10",
"[@MatissJanis](https://github.com/MatissJanis)/[**oc-frontend-forms-ex…**](https://github.com/MatissJanis/oc-frontend-forms-example)",
"OctoberCMS backend forms used in a frontend component example",
""
],
[
"9",
"[@kasparsd](https://github.com/kasparsd)/[**numeric-shortlinks**](https://github.com/kasparsd/numeric-shortlinks)",
"WordPress plugin which enables shortlinks for posts and pages based on their ID (i.e. http://example.com/123)",
""
],
[
"8",
"[@YahnisElsts](https://github.com/YahnisElsts)/[**wp-extension-meta**](https://github.com/YahnisElsts/wp-extension-meta)",
"A PHP library for parsing WordPress plugin and theme metadata. It can extract the version number and description from a plugin ZIP, parse readme.txt files and so on.",
""
],
[
"8",
"[@dmitryd](https://github.com/dmitryd)/[**typo3-pagepath**](https://github.com/dmitryd/typo3-pagepath)",
"An extension for TYPO3 CMS (see the README for more information)",
""
],
[
"8",
"[@b2z](https://github.com/b2z)/[**joomla-25-component-…**](https://github.com/b2z/joomla-25-component-example)",
"Joomla! 2.5 \"Hello World!\" component code for the tutorial on JoomlaBlog.ru",
""
],
[
"7",
"[@dmitryd](https://github.com/dmitryd)/[**typo3-simplemvc**](https://github.com/dmitryd/typo3-simplemvc)",
"A TYPO3 \"simplemvc\" extension. This extension adds a simple high performance MVC framework to TYPO3.",
""
],
[
"6",
"[@sitilge](https://github.com/sitilge)/[**abimo**](https://github.com/sitilge/abimo)",
"PHP skeleton.",
""
],
[
"6",
"[@andrewtch](https://github.com/andrewtch)/[**php-bayes**](https://github.com/andrewtch/php-bayes)",
"Usable naive bayesian classes",
""
],
[
"6",
"[@kasparsd](https://github.com/kasparsd)/[**latvijas-pilsetas-no…**](https://github.com/kasparsd/latvijas-pilsetas-novadi)",
"Latvijas novadi un pilsētas JSON formātā",
""
],
[
"6",
"[@kasparsd](https://github.com/kasparsd)/[**widget-output-cache**](https://github.com/kasparsd/widget-output-cache)",
"Caches widget output in transients (or object cache, if enabled)",
"[:arrow_upper_right:](http://wordpress.org/plugins/widget-output-cache/)"
],
[
"5",
"[@kasparsd](https://github.com/kasparsd)/[**multisite-local-dev**](https://github.com/kasparsd/multisite-local-dev)",
"WordPress Multisite Local Dev -- a MU plugin for WordPress",
""
],
[
"5",
"[@MatissJanis](https://github.com/MatissJanis)/[**oc-mail**](https://github.com/MatissJanis/oc-mail)",
"OctoberCMS mail statistics and logging plugin",
""
],
[
"5",
"[@kasparsd](https://github.com/kasparsd)/[**widget-context-basic**](https://github.com/kasparsd/widget-context-basic)",
"The easiest way to take control of your sidebar areas, widgets and their visibility",
""
],
[
"5",