-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
1126 lines (1126 loc) · 39.8 KB
/
package.json
File metadata and controls
1126 lines (1126 loc) · 39.8 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-serbia",
"description": "A list of neat projects made in Serbia",
"keywords": [
"made",
"in",
"serbia",
"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-serbia.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-serbia/issues"
},
"homepage": "https://github.com/IonicaBizau/made-in-serbia#readme",
"blah": {
"title": "Made in Serbia",
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[CSS](#css)",
"[C](undefined)",
"[C++](#c-2)",
"[ActionScript](#actionscript)",
"[Clojure](#clojure)",
"[Go](#go)",
"[Haskell](#haskell)",
"[Matlab](#matlab)",
"[Objective-C](#objective-c)",
"[Perl](#perl)",
"[PHP](#php)",
"[Python](#python)",
"[Ruby](#ruby)",
"[Scala](#scala)",
"[Shell](#shell)",
"[VimL](#viml)"
]
},
{
"h3": "JavaScript ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"1275",
"[@toorshia](https://github.com/toorshia)/[**justgage**](https://github.com/toorshia/justgage)",
"JustGage is a handy JavaScript plugin for generating and animating nice & clean dashboard gauges. It is based on Raphaël library for vector drawing.",
""
],
[
"1244",
"[@dvLden](https://github.com/dvLden)/[**Vidage**](https://github.com/dvLden/Vidage)",
"Your solution to full-screen background video & image combined.",
"[:arrow_upper_right:](https://dvLden.github.io/Vidage/)"
],
[
"624",
"[@limonte](https://github.com/limonte)/[**sweetalert2**](https://github.com/limonte/sweetalert2)",
"Supported fork of t4t5/sweetalert",
"[:arrow_upper_right:](https://limonte.github.io/sweetalert2/)"
],
[
"473",
"[@draganbabic](https://github.com/draganbabic)/[**uni-form**](https://github.com/draganbabic/uni-form)",
"Uni-Form is a framework that standardizes form markup and styles it with CSS giving you two most widely used layout options to choose from. Anyone can get nice looking, well structured, highly customizable, accessible and usable forms. To put it simply: it makes a developer's life a lot easier. Support → http://getsatisfaction.com/uni-form",
"[:arrow_upper_right:](http://sprawsm.com/uni-form/)"
],
[
"70",
"[@goschevski](https://github.com/goschevski)/[**apy**](https://github.com/goschevski/apy)",
"Apy is a simple client-side library for making rest api ajax calls.",
""
],
[
"40",
"[@rukavina](https://github.com/rukavina)/[**live-css-editor**](https://github.com/rukavina/live-css-editor)",
"jquery online css editor, themeroller like tool for customizing your web page",
""
],
[
"32",
"[@stojanovic](https://github.com/stojanovic)/[**vreme**](https://github.com/stojanovic/vreme)",
"Date formatting by example",
""
],
[
"30",
"[@goschevski](https://github.com/goschevski)/[**vojvoda**](https://github.com/goschevski/vojvoda)",
"Backbone View extension for managing subviews",
""
],
[
"29",
"[@goschevski](https://github.com/goschevski)/[**fronty**](https://github.com/goschevski/fronty)",
"Fronty is a boilerplate for starting new front-end projects",
""
],
[
"17",
"[@goschevski](https://github.com/goschevski)/[**image-loader**](https://github.com/goschevski/image-loader)",
"Image loader is plugin that loads image selected by input file field without uploading it on server.",
""
],
[
"16",
"[@goschevski](https://github.com/goschevski)/[**tagster**](https://github.com/goschevski/tagster)",
"Tagster is simple library which is helping you create html strings with ease.",
""
],
[
"13",
"[@vranac](https://github.com/vranac)/[**responsive-screensho…**](https://github.com/vranac/responsive-screenshots)",
"CasperJS script for taking screenshots on responsive screensizes",
""
],
[
"12",
"[@toorshia](https://github.com/toorshia)/[**jam**](https://github.com/toorshia/jam)",
"JAM - Simple Facebook style menu for Sencha Touch 2 based apps",
""
],
[
"11",
"[@ManInTheBox](https://github.com/ManInTheBox)/[**nodejs.rs**](https://github.com/ManInTheBox/nodejs.rs)",
"Sajt srpske Node.js zajednice - Serbian Node.js community website",
"[:arrow_upper_right:](http://nodejs.rs)"
],
[
"10",
"[@aleksandara](https://github.com/aleksandara)/[**yeoman-generator-req…**](https://github.com/aleksandara/yeoman-generator-requirejs-jasmine-karma)",
"A generator for yeoman (RequireJS, Jasmine, Karma)",
""
],
[
"9",
"[@stojanovic](https://github.com/stojanovic)/[**huh**](https://github.com/stojanovic/huh)",
"Random BOFH-style excuses",
""
],
[
"8",
"[@stojanovic](https://github.com/stojanovic)/[**souffleur**](https://github.com/stojanovic/souffleur)",
"Simple command line prompt with retry for empty answers",
"[:arrow_upper_right:](https://www.npmjs.com/package/souffleur)"
],
[
"8",
"[@kodi](https://github.com/kodi)/[**JS-Object-Expire**](https://github.com/kodi/JS-Object-Expire)",
"Javascript Self-Expiring Objects",
""
],
[
"6",
"[@vranac](https://github.com/vranac)/[**link-checker**](https://github.com/vranac/link-checker)",
"quick and dirty link checker for web page",
""
],
[
"6",
"[@stojanovic](https://github.com/stojanovic)/[**fuckyou**](https://github.com/stojanovic/fuckyou)",
"Kill any process (╯°□°)╯︵ ssǝɔoɹd",
""
],
[
"4",
"[@goschevski](https://github.com/goschevski)/[**gulp-base64-inline**](https://github.com/goschevski/gulp-base64-inline)",
"Inline images you want with base64.",
""
],
[
"3",
"[@kodi](https://github.com/kodi)/[**MVC4Node.js**](https://github.com/kodi/MVC4Node.js)",
"MVC Framework for Node.js",
""
],
[
"3",
"[@kodi](https://github.com/kodi)/[**nodius**](https://github.com/kodi/nodius)",
"Monitoring System based on Node.js",
""
],
[
"3",
"[@rubystream](https://github.com/rubystream)/[**alchemist.js**](https://github.com/rubystream/alchemist.js)",
"alchemist.js",
""
],
[
"3",
"[@stojanovic](https://github.com/stojanovic)/[**space-explorer-bot**](https://github.com/stojanovic/space-explorer-bot)",
"A small FB Messenger chat bot using NASA API and Claudia Bot Builder.",
"[:arrow_upper_right:](https://m.me/space-explorer-bot)"
],
[
"2",
"[@zmilan](https://github.com/zmilan)/[**yo-generator-express…**](https://github.com/zmilan/yo-generator-express-angularjs)",
"Advanced AngularJS project generator for Yeoman.",
""
],
[
"2",
"[@rukavina](https://github.com/rukavina)/[**tetatet**](https://github.com/rukavina/tetatet)",
"WebRTC video chat",
""
],
[
"2",
"[@Gavrisimo](https://github.com/Gavrisimo)/[**psychic-meme**](https://github.com/Gavrisimo/psychic-meme)",
"Clone of http://dillinger.io/ using https://github.com/coreyti/showdown/",
""
]
]
}
},
{
"h3": "Java ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"91",
"[@anbud](https://github.com/anbud)/[**MarkovComposer**](https://github.com/anbud/MarkovComposer)",
"Algorithmic composer based on machine learning using a second order Markov chain.",
""
],
[
"78",
"[@neuroph](https://github.com/neuroph)/[**neuroph**](https://github.com/neuroph/neuroph)",
"Java Neural Network Framework Neuroph",
"[:arrow_upper_right:](http://neuroph.sourceforge.net)"
],
[
"8",
"[@vanjakom](https://github.com/vanjakom)/[**BloomFilterExample**](https://github.com/vanjakom/BloomFilterExample)",
"Bloom filter implemented in Java with support for multiple hashers",
""
],
[
"5",
"[@anbud](https://github.com/anbud)/[**PxlSort**](https://github.com/anbud/PxlSort)",
"Pixel sorting using radix sort.",
""
],
[
"4",
"[@vanjakom](https://github.com/vanjakom)/[**MultipleOutputsExamp…**](https://github.com/vanjakom/MultipleOutputsExample)",
"Hadoop Multiple Outputs example",
""
],
[
"2",
"[@luksha](https://github.com/luksha)/[**push-admin-java-libr…**](https://github.com/luksha/push-admin-java-library)",
"push-admin-java-library",
""
],
[
"2",
"[@vanjakom](https://github.com/vanjakom)/[**HadoopPlayground**](https://github.com/vanjakom/HadoopPlayground)",
"this repository will handle Hadoop code",
""
],
[
"2",
"[@vanjakom](https://github.com/vanjakom)/[**base**](https://github.com/vanjakom/base)",
"Required projects for our architecture",
""
]
]
}
},
{
"h3": "CSS ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"501",
"[@StefanKovac](https://github.com/StefanKovac)/[**flex-layout-attribut…**](https://github.com/StefanKovac/flex-layout-attribute)",
"HTML layout helper based on CSS flexbox specification — ",
"[:arrow_upper_right:](http://progressivered.com/fla/)"
]
]
}
},
{
"h3": "C ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"21",
"[@bmanojlovic](https://github.com/bmanojlovic)/[**log4c**](https://github.com/bmanojlovic/log4c)",
"Fork of Log4c project ",
"[:arrow_upper_right:](http://sourceforge.net/projects/log4c/)"
],
[
"14",
"[@TheDushan](https://github.com/TheDushan)/[**OpenWolf**](https://github.com/TheDushan/OpenWolf)",
"OpenWolf is a Wolfenstein: Enemy Territory game modification based on ET-GPL.",
""
],
[
"7",
"[@bmanojlovic](https://github.com/bmanojlovic)/[**mod_authn_dovecot**](https://github.com/bmanojlovic/mod_authn_dovecot)",
"Apache authentication against Dovecot authentication daemon",
"[:arrow_upper_right:](http://steki.net/)"
],
[
"5",
"[@ljmocic](https://github.com/ljmocic)/[**PJiSP**](https://github.com/ljmocic/PJiSP)",
"E2 - Programski jezici i strukture podataka",
"[:arrow_upper_right:](http://www.acs.uns.ac.rs/sr/pjisp)"
],
[
"4",
"[@dezelin](https://github.com/dezelin)/[**liboptical**](https://github.com/dezelin/liboptical)",
"Library written in C programming language for burning CD-R, CD-RW, DVD-R, DVD+R, DVD-RW, DVD+RW, DVD-RAM, Blue Ray and many other types of optical media. Supports POSIX, BSD and Win32 operating systems.",
""
],
[
"2",
"[@bmanojlovic](https://github.com/bmanojlovic)/[**sendsms**](https://github.com/bmanojlovic/sendsms)",
"SMS client server application that extends smstools package",
""
]
]
}
},
{
"h3": "C++ ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3",
"[@dancsi](https://github.com/dancsi)/[**PedestrianSimulator**](https://github.com/dancsi/PedestrianSimulator)",
"",
""
],
[
"2",
"[@al3ksandar](https://github.com/al3ksandar)/[**AckoOS**](https://github.com/al3ksandar/AckoOS)",
"",
""
],
[
"2",
"[@filippetrovic](https://github.com/filippetrovic)/[**UdpNinja**](https://github.com/filippetrovic/UdpNinja)",
"",
""
]
]
}
},
{
"h3": "ActionScript ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"2",
"[@jovanpn](https://github.com/jovanpn)/[**hashids.as**](https://github.com/jovanpn/hashids.as)",
"ActionScript 3 version of Hashids library from http://hashids.org/",
""
]
]
}
},
{
"h3": "Clojure ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"11",
"[@goranjovic](https://github.com/goranjovic)/[**chromeclojure**](https://github.com/goranjovic/chromeclojure)",
"A Clojure Plugin for Google Chrome.",
""
],
[
"2",
"[@nevenavv](https://github.com/nevenavv)/[**OWand**](https://github.com/nevenavv/OWand)",
"Dev tool/Leiningen plugin for Magic Potion <-> OWL transformation.",
""
]
]
}
},
{
"h3": "Go ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"25",
"[@scyth](https://github.com/scyth)/[**go-webproject**](https://github.com/scyth/go-webproject)",
"Web application framework written in Go Programming Language",
"[:arrow_upper_right:](http://go-webproject.appspot.com)"
],
[
"23",
"[@fastfn](https://github.com/fastfn)/[**dendrite**](https://github.com/fastfn/dendrite)",
"Dendrite is a Go package that implements distributed hash table (DHT) based on Chord Protocol. ",
""
]
]
}
},
{
"h3": "Haskell ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"6",
"[@hepek](https://github.com/hepek)/[**Ramblings**](https://github.com/hepek/Ramblings)",
"Random posts on Haskell, Scheme and stuff",
""
],
[
"5",
"[@hepek](https://github.com/hepek)/[**MPEG-TS**](https://github.com/hepek/MPEG-TS)",
"Haskell implementation of mpegts parser",
""
]
]
}
},
{
"h3": "Matlab ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"10",
"[@Manca](https://github.com/Manca)/[**face-detection**](https://github.com/Manca/face-detection)",
"My Face Detection application written in Matlab.",
""
]
]
}
},
{
"h3": "Objective-C ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"135",
"[@radianttap](https://github.com/radianttap)/[**WatchRingGenerator**](https://github.com/radianttap/WatchRingGenerator)",
"iOS app to generate series of PNG images, to be used in WatchKit apps",
""
],
[
"79",
"[@mperovic](https://github.com/mperovic)/[**KOAProgressBar**](https://github.com/mperovic/KOAProgressBar)",
"Custom progress bar for iOS 5.0+",
""
],
[
"45",
"[@radianttap](https://github.com/radianttap)/[**RTFlyoutMenu**](https://github.com/radianttap/RTFlyoutMenu)",
"Fly-out (drop-down) menu component for iPad",
""
],
[
"30",
"[@mperovic](https://github.com/mperovic)/[**PAStepper**](https://github.com/mperovic/PAStepper)",
"Complete replacement for UIStepper control",
""
],
[
"13",
"[@radianttap](https://github.com/radianttap)/[**RTCleanNavigationBar**](https://github.com/radianttap/RTCleanNavigationBar)",
"UINavigationBar subclass that removes the shadow image while retaining translucency effect in iOS 7 and up",
""
],
[
"12",
"[@radianttap](https://github.com/radianttap)/[**RTWalkthrough**](https://github.com/radianttap/RTWalkthrough)",
"An Objective-C clone of github/ariok/BWWalkthrough (a bit improved in the process)",
""
],
[
"9",
"[@radianttap](https://github.com/radianttap)/[**NSFileManager-Utilit…**](https://github.com/radianttap/NSFileManager-Utilities)",
"",
""
],
[
"6",
"[@radianttap](https://github.com/radianttap)/[**RTFlowLayout**](https://github.com/radianttap/RTFlowLayout)",
"Like UICollectionViewFlowLayout, but with additional supplementary views.",
""
],
[
"5",
"[@nmarkovic04](https://github.com/nmarkovic04)/[**Phoney**](https://github.com/nmarkovic04/Phoney)",
"Camera and sensor simulator library for iOS",
""
],
[
"4",
"[@radianttap](https://github.com/radianttap)/[**UITableView-NSFetche…**](https://github.com/radianttap/UITableView-NSFetchedResultsController)",
"UITV and NSFRC, sitting in a tree, forever happy",
""
],
[
"4",
"[@MrNickBarker](https://github.com/MrNickBarker)/[**iOSAccordionPanels**](https://github.com/MrNickBarker/iOSAccordionPanels)",
"Prototype of resizable accordion panels for iOS.",
""
],
[
"3",
"[@radianttap](https://github.com/radianttap)/[**RTGraphLayout**](https://github.com/radianttap/RTGraphLayout)",
"UICollectionViewFlowLayout subclass acting like zoomable bar chart",
""
],
[
"2",
"[@nmarkovic04](https://github.com/nmarkovic04)/[**XDNumberPicker**](https://github.com/nmarkovic04/XDNumberPicker)",
"NumberPicker control for iOS",
""
],
[
"2",
"[@radianttap](https://github.com/radianttap)/[**UILabel-FontName**](https://github.com/radianttap/UILabel-FontName)",
"UIAppearance for UILabel font name",
""
],
[
"2",
"[@radianttap](https://github.com/radianttap)/[**RTTabBarController**](https://github.com/radianttap/RTTabBarController)",
"Highly customizable and feature-rich replacement for UITabBarController",
""
]
]
}
},
{
"h3": "Perl ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"2",
"[@FilipMiletic](https://github.com/FilipMiletic)/[**DotfilesArch**](https://github.com/FilipMiletic/DotfilesArch)",
"",
""
]
]
}
},
{
"h3": "PHP ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"735",
"[@markomarkovic](https://github.com/markomarkovic)/[**simple-php-git-deplo…**](https://github.com/markomarkovic/simple-php-git-deploy)",
"Automatically deploy the code using PHP and Git",
""
],
[
"65",
"[@nenad-zivkovic](https://github.com/nenad-zivkovic)/[**yii2-advanced-templa…**](https://github.com/nenad-zivkovic/yii2-advanced-template)",
"Yii2 improved advanced application template that can bake you cookies",
""
],
[
"28",
"[@nenad-zivkovic](https://github.com/nenad-zivkovic)/[**yii2-basic-template**](https://github.com/nenad-zivkovic/yii2-basic-template)",
"Yii2 improved basic application template that can bake you cookies",
""
],
[
"17",
"[@robertbasic](https://github.com/robertbasic)/[**blog-examples**](https://github.com/robertbasic/blog-examples)",
"",
"[:arrow_upper_right:](http://robertbasic.com/blog)"
],
[
"10",
"[@robertbasic](https://github.com/robertbasic)/[**phpplaneta**](https://github.com/robertbasic/phpplaneta)",
"Source code behind http://phpplaneta.net/",
"[:arrow_upper_right:](http://phpplaneta.net/)"
],
[
"9",
"[@markomarkovic](https://github.com/markomarkovic)/[**cakephp-plugin-confi…**](https://github.com/markomarkovic/cakephp-plugin-configurator)",
"CakePHP Plugin for easy database managed site-wide configurations",
"[:arrow_upper_right:](https://github.com/markomarkovic/cakephp-plugin-configurator)"
],
[
"6",
"[@turshija](https://github.com/turshija)/[**KGB-Game-Panel-Resta…**](https://github.com/turshija/KGB-Game-Panel-Restarter)",
"Skripta pomocu koje je moguce restartovati servere koji su se zakucali, pod uslovom da su serveri kod KGB Hostinga",
"[:arrow_upper_right:](www.milf-cs.info/restart/)"
],
[
"6",
"[@bojanz](https://github.com/bojanz)/[**efq_views**](https://github.com/bojanz/efq_views)",
"EntityFieldQuery Views Backend",
"[:arrow_upper_right:](efq_views)"
],
[
"5",
"[@bojanz](https://github.com/bojanz)/[**state_machine**](https://github.com/bojanz/state_machine)",
"Official mirror of the drupal.org module, 8.x-1.x branch.",
"[:arrow_upper_right:](https://drupal.org/project/state_machine)"
],
[
"4",
"[@el22or](https://github.com/el22or)/[**drs1**](https://github.com/el22or/drs1)",
"Drupal Serbia community site theme",
"[:arrow_upper_right:](http://drupal.rs)"
],
[
"4",
"[@robertbasic](https://github.com/robertbasic)/[**perfi**](https://github.com/robertbasic/perfi)",
"",
""
],
[
"4",
"[@markomarkovic](https://github.com/markomarkovic)/[**cakephp-plugin-image…**](https://github.com/markomarkovic/cakephp-plugin-image_editor)",
"A plugin for easy image manipulation",
"[:arrow_upper_right:](http://github.com/markomarkovic/cakephp-plugin-image_editor)"
],
[
"3",
"[@bojanz](https://github.com/bojanz)/[**array-object-benchma…**](https://github.com/bojanz/array-object-benchmark)",
"",
""
],
[
"3",
"[@robertbasic](https://github.com/robertbasic)/[**mockery-hard-depende…**](https://github.com/robertbasic/mockery-hard-dependency)",
"",
""
],
[
"3",
"[@ldusan84](https://github.com/ldusan84)/[**magento2-simple-prod…**](https://github.com/ldusan84/magento2-simple-product-feed)",
"A simple Magento 2 product feed example",
""
],
[
"3",
"[@bojanz](https://github.com/bojanz)/[**fakedin**](https://github.com/bojanz/fakedin)",
"FakedIn is a professional network powered by Drupal Commerce.",
""
],
[
"2",
"[@markomarkovic](https://github.com/markomarkovic)/[**cakephp-plugin-perso…**](https://github.com/markomarkovic/cakephp-plugin-persona)",
"Mozilla Persona CakePHP Plugin",
""
],
[
"2",
"[@bojanz](https://github.com/bojanz)/[**address**](https://github.com/bojanz/address)",
"Official mirror of the drupal.org module.",
"[:arrow_upper_right:](https://drupal.org/project/address)"
],
[
"2",
"[@ldusan84](https://github.com/ldusan84)/[**Trip-Card-Sorter**](https://github.com/ldusan84/Trip-Card-Sorter)",
"Solution to common trip card sorting problem",
""
],
[
"2",
"[@ldusan84](https://github.com/ldusan84)/[**DusanSimpleBundle**](https://github.com/ldusan84/DusanSimpleBundle)",
"OroCRM Simple CRUD bundle",
""
],
[
"2",
"[@grakic](https://github.com/grakic)/[**meetrq**](https://github.com/grakic/meetrq)",
"Meeting request form - Sample Laravel 5 web app ",
""
],
[
"2",
"[@robertbasic](https://github.com/robertbasic)/[**code-samples**](https://github.com/robertbasic/code-samples)",
"Different code samples to use in talks",
""
]
]
}
},
{
"h3": "Python ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"145",
"[@MeanEYE](https://github.com/MeanEYE)/[**Sunflower**](https://github.com/MeanEYE/Sunflower)",
"Small and highly customizable twin-panel file manager for Linux with support for plugins.",
""
],
[
"106",
"[@jocicmarko](https://github.com/jocicmarko)/[**kaggle-dsb2-keras**](https://github.com/jocicmarko/kaggle-dsb2-keras)",
"Keras tutorial for Kaggle 2nd Annual Data Science Bowl",
""
],
[
"89",
"[@jocicmarko](https://github.com/jocicmarko)/[**ultrasound-nerve-seg…**](https://github.com/jocicmarko/ultrasound-nerve-segmentation)",
"Deep Learning Tutorial for Kaggle Ultrasound Nerve Segmentation competition, using Keras",
""
],
[
"41",
"[@integricho](https://github.com/integricho)/[**path-of-a-pyqter**](https://github.com/integricho/path-of-a-pyqter)",
"lessons on using python and qt",
""
],
[
"10",
"[@foxbunny](https://github.com/foxbunny)/[**acl.py**](https://github.com/foxbunny/acl.py)",
"authentication framework for web.py",
""
],
[
"7",
"[@integricho](https://github.com/integricho)/[**mutant-sample-app**](https://github.com/integricho/mutant-sample-app)",
"A CRUD interface for django-mutant just for demonstration",
""
],
[
"3",
"[@Atlantic777](https://github.com/Atlantic777)/[**c4sh**](https://github.com/Atlantic777/c4sh)",
"C4sh - cashdesk module (checkout) - Patched to work!",
""
],
[
"3",
"[@foxbunny](https://github.com/foxbunny)/[**Timetrack**](https://github.com/foxbunny/Timetrack)",
"Simple stupid time tracker",
""
],
[
"2",
"[@foxbunny](https://github.com/foxbunny)/[**django-sr-locale**](https://github.com/foxbunny/django-sr-locale)",
"Serbian translations for Django",
"[:arrow_upper_right:](http://groups.google.com/group/django-i18n-serbian)"
],
[
"2",
"[@foxbunny](https://github.com/foxbunny)/[**HTTPy-RPC**](https://github.com/foxbunny/HTTPy-RPC)",
"Example implementation of a simple HTTP-based RPC protocol.",
""
],
[
"2",
"[@integricho](https://github.com/integricho)/[**django-skel-modular-…**](https://github.com/integricho/django-skel-modular-js-example)",
"an example application based on the django-skel guide, boosted with requirejs and knockout",
""
]
]
}
},
{
"h3": "Ruby ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"100",
"[@bosko](https://github.com/bosko)/[**rmre**](https://github.com/bosko/rmre)",
"Rails 3 models reverse engineering",
""
],
[
"88",
"[@inem](https://github.com/inem)/[**tequila**](https://github.com/inem/tequila)",
"Powerful HAML-like JSON generation language",
"[:arrow_upper_right:](http://inem.github.com/tequila.html)"
],
[
"31",
"[@inem](https://github.com/inem)/[**xilence**](https://github.com/inem/xilence)",
"Rails backtrace silencer for ajax requests ",
"[:arrow_upper_right:](http://inem.github.com/xilence.html)"
],
[
"24",
"[@inem](https://github.com/inem)/[**handcar**](https://github.com/inem/handcar)",
"Server-side console.log() for your Rails application",
"[:arrow_upper_right:](http://inem.github.com/handcar.html)"
],
[
"22",
"[@markoa](https://github.com/markoa)/[**r2flickr**](https://github.com/markoa/r2flickr)",
"r2flickr is a Ruby implementation of the Flickr API, forked from rflickr.",
""
],
[
"6",
"[@markoa](https://github.com/markoa)/[**rspec-intro**](https://github.com/markoa/rspec-intro)",
"",
""
],
[
"6",
"[@bosko](https://github.com/bosko)/[**gem-exefy**](https://github.com/bosko/gem-exefy)",
"RubyGems plugin for replacing Windows batch files used in Gems with executables with same name.",
""
],
[
"6",
"[@miloshadzic](https://github.com/miloshadzic)/[**pasta**](https://github.com/miloshadzic/pasta)",
"Silly pastebin-like sinatra application",
""
],
[
"5",
"[@jablan](https://github.com/jablan)/[**spreadshoot**](https://github.com/jablan/spreadshoot)",
"Ruby DSL for creating Excel spreadsheets",
""
],
[
"5",
"[@markoa](https://github.com/markoa)/[**gradmx**](https://github.com/markoa/gradmx)",
"University project, Rails and Tokyo Cabinet exploration on a minimal event platform",
""
],
[
"4",
"[@inem](https://github.com/inem)/[**lazibi**](https://github.com/inem/lazibi)",
"Lazibi is a pre-processor that allows one to use Python style indenting in Ruby.",
"[:arrow_upper_right:](http://lazibi.rubyforge.org/index.html)"
],
[
"4",
"[@markoa](https://github.com/markoa)/[**scripts**](https://github.com/markoa/scripts)",
"Tumblr client script, and more to come",
""
],
[
"4",
"[@jablan](https://github.com/jablan)/[**collectinject**](https://github.com/jablan/collectinject)",
"CollectInject - a tiny MapReduce implementation in Ruby",
""
],
[
"3",
"[@jablan](https://github.com/jablan)/[**blue_colr**](https://github.com/jablan/blue_colr)",
"Database based process launcher",
""
],
[
"3",
"[@jablan](https://github.com/jablan)/[**polumenta**](https://github.com/jablan/polumenta)",