-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
983 lines (983 loc) · 35 KB
/
package.json
File metadata and controls
983 lines (983 loc) · 35 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
{
"name": "made-in-paraguay",
"description": "🇵🇾 A list of cool projects made in Paraguay",
"keywords": [
"made",
"in",
"paraguay",
"a",
"list",
"of",
"cool",
"projects"
],
"license": "MIT",
"version": "1.0.3",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
"homepage": "https://github.com/IonicaBizau/made-in-paraguay#readme",
"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-paraguay.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-paraguay/issues"
},
"blah": {
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[C#](#c-1)",
"[CSS](#css)",
"[HTML](#html)",
"[C](undefined)",
"[C++](#c-2)",
"[Go](#go)",
"[Objective-C](#objective-c)",
"[PHP](#php)",
"[Python](#python)",
"[Ruby](#ruby)",
"[Scala](#scala)",
"[Swift](#swift)"
]
},
{
"h3": "JavaScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"19",
"[@camilojd](https://github.com/camilojd)/[**sequeljs**](https://github.com/camilojd/sequeljs)",
"SQL parser/formatter written in JavaScript",
""
],
[
"15",
"[@cabupy](https://github.com/cabupy)/[**node-cotizaciones**](https://github.com/cabupy/node-cotizaciones)",
"Es una API REST desarrollada en NODE.JS para obtener cotizaciones de casas de cambio. En paraguay.",
""
],
[
"8",
"[@luchobenitez](https://github.com/luchobenitez)/[**docscraperpy**](https://github.com/luchobenitez/docscraperpy)",
"Document scraper for .py, anything we can find on the web about documents",
""
],
[
"8",
"[@mbaez](https://github.com/mbaez)/[**bubbles-chart**](https://github.com/mbaez/bubbles-chart)",
"A javascript library to build bubble chart using d3 and d3plus",
""
],
[
"6",
"[@nemesiscodex](https://github.com/nemesiscodex)/[**openfonacide**](https://github.com/nemesiscodex/openfonacide)",
"Open Data platform for the fonacide project in Paraguay",
""
],
[
"5",
"[@mbaez](https://github.com/mbaez)/[**elastic-lists**](https://github.com/mbaez/elastic-lists)",
"A javascript library to build elastic lists",
""
],
[
"4",
"[@javierpelozo](https://github.com/javierpelozo)/[**notas**](https://github.com/javierpelozo/notas)",
":notebook_with_decorative_cover: App sencilla para guardar y eliminar notas, etc. ",
""
],
[
"4",
"[@josego85](https://github.com/josego85)/[**curso_mapas**](https://github.com/josego85/curso_mapas)",
"Un curso sobre creación y desarrollo de mapas. La idea es aprender muchas cosas útiles sobre creación de mapas, configurar servidores de mapas, consumir datos OSM, etc; y que les sirva en su vida profesional.",
""
],
[
"4",
"[@nemesiscodex](https://github.com/nemesiscodex)/[**voting-app**](https://github.com/nemesiscodex/voting-app)",
"FreeCodeCamp Basejump: Build a Voting App",
"[:arrow_upper_right:](http://pollvot.herokuapp.com/)"
],
[
"3",
"[@roskoff](https://github.com/roskoff)/[**nodesterappswatcher**](https://github.com/roskoff/nodesterappswatcher)",
"Simple extension to watch over your apps hosted on nodester.com!",
""
],
[
"3",
"[@josego85](https://github.com/josego85)/[**api-geo-paraguay**](https://github.com/josego85/api-geo-paraguay)",
"API GEO - Paraguay",
""
],
[
"3",
"[@mbaez](https://github.com/mbaez)/[**securityjs**](https://github.com/mbaez/securityjs)",
"JavaScript library to simplify the management of permissions on HTML&JavaScript applications.",
""
],
[
"2",
"[@nemesiscodex](https://github.com/nemesiscodex)/[**codein-chrome-leader…**](https://github.com/nemesiscodex/codein-chrome-leaderboard)",
"Unofficial google code-in leaderboard chrome extension",
""
],
[
"2",
"[@demianfe](https://github.com/demianfe)/[**react-toolbox-reactr…**](https://github.com/demianfe/react-toolbox-reactrouter-mocha-boilerplate)",
"",
""
],
[
"2",
"[@ivankoop](https://github.com/ivankoop)/[**Mosquito-Attack-Game**](https://github.com/ivankoop/Mosquito-Attack-Game)",
"Global Game Jam 2018 game ",
""
],
[
"2",
"[@cmelgarejo](https://github.com/cmelgarejo)/[**api-proxy**](https://github.com/cmelgarejo/api-proxy)",
"Simple API Proxy project - no storage layer, proxies results from underlaying APIs",
""
],
[
"2",
"[@mbaez](https://github.com/mbaez)/[**front-seed**](https://github.com/mbaez/front-seed)",
"Frontend seed project, using bower and grunt.",
""
],
[
"2",
"[@roskoff](https://github.com/roskoff)/[**olimpianextmatch**](https://github.com/roskoff/olimpianextmatch)",
"Extensión para Google Chrome que muestra el siguiente partido de Olimpia, con información relevante (precios de entradas, horarios, adversario, etc.)",
""
]
]
}
},
{
"h3": "Java #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"4",
"[@jencisopy](https://github.com/jencisopy)/[**JavaBeanStack**](https://github.com/jencisopy/JavaBeanStack)",
"Framework para construcción de aplicaciones Java EE 7",
""
],
[
"3",
"[@hofmanndavid](https://github.com/hofmanndavid)/[**easylayout**](https://github.com/hofmanndavid/easylayout)",
"Completely unorthodox but extremely productive API wrappers for Vaadin Layouts",
""
],
[
"3",
"[@pablo](https://github.com/pablo)/[**raf**](https://github.com/pablo/raf)",
"Roshka API Framework",
""
],
[
"3",
"[@pablo](https://github.com/pablo)/[**NumberTextWatcher**](https://github.com/pablo/NumberTextWatcher)",
"",
""
],
[
"2",
"[@alefq](https://github.com/alefq)/[**asistente-eventos**](https://github.com/alefq/asistente-eventos)",
"Prueba de aplicación tekoporu",
""
]
]
}
},
{
"h3": "C# #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3",
"[@Daniel25A](https://github.com/Daniel25A)/[**Sistemas**](https://github.com/Daniel25A/Sistemas)",
"",
""
],
[
"3",
"[@lopezbertoni](https://github.com/lopezbertoni)/[**SampleAspNetCoreApp**](https://github.com/lopezbertoni/SampleAspNetCoreApp)",
"",
""
],
[
"2",
"[@lopezbertoni](https://github.com/lopezbertoni)/[**PrintMonitor**](https://github.com/lopezbertoni/PrintMonitor)",
"App to monitor printer problems",
""
]
]
}
},
{
"h3": "CSS #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"51",
"[@wcs](https://github.com/wcs)/[**tepid**](https://github.com/wcs/tepid)",
"Theme I use in my blog",
"[:arrow_upper_right:](http://wcsantos.com)"
]
]
}
},
{
"h3": "HTML #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"5",
"[@kitsunelli](https://github.com/kitsunelli)/[**fsociety-cv**](https://github.com/kitsunelli/fsociety-cv)",
"A curriculum vitae (résumé) template for the fsociety's volunteers.",
""
]
]
}
},
{
"h3": "C #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"2",
"[@flopezpires](https://github.com/flopezpires)/[**iMaVMP**](https://github.com/flopezpires/iMaVMP)",
"Interactive Memetic Algorithm for Virtual Machine Placement (iMAVMP)",
""
]
]
}
},
{
"h3": "C++ #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"12",
"[@garyservin](https://github.com/garyservin)/[**serial-example**](https://github.com/garyservin/serial-example)",
"Simple use of http://wjwwood.io/serial/ library with ROS",
""
],
[
"4",
"[@chilabot](https://github.com/chilabot)/[**chila**](https://github.com/chilabot/chila)",
"Chila's Tools",
""
]
]
}
},
{
"h3": "Go #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"60",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**transports**](https://github.com/matiasinsaurralde/transports)",
"A HTTP proxy that aims to support different transports.",
""
],
[
"14",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**go-web-shell**](https://github.com/matiasinsaurralde/go-web-shell)",
"Simple web shell (+web server). Got it running on a rooted Android (checkout Makefile for ARM settings).",
"[:arrow_upper_right:](http://lomitologia.blogspot.com/2013/07/200713-dotpad-dt-730-china-telecom.html)"
],
[
"10",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**cgo-channels**](https://github.com/matiasinsaurralde/cgo-channels)",
"A quick program to explore the idea of sending data to a Go channel from C.",
""
],
[
"6",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**loudp2p**](https://github.com/matiasinsaurralde/loudp2p)",
"Experimental peer to peer network for music streaming.",
""
],
[
"5",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**go-dbscan**](https://github.com/matiasinsaurralde/go-dbscan)",
"Some implementation of DBSCAN",
""
],
[
"4",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**sl**](https://github.com/matiasinsaurralde/sl)",
"Intérprete experimental de SL, basado en Go.",
""
],
[
"3",
"[@matiasinsaurralde](https://github.com/matiasinsaurralde)/[**go-lua-benchmark**](https://github.com/matiasinsaurralde/go-lua-benchmark)",
"Comparing the performance of LuaJIT embedded in Go.",
""
]
]
}
},
{
"h3": "Objective-C #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"85",
"[@imfx](https://github.com/imfx)/[**FFBackgroundParallax**](https://github.com/imfx/FFBackgroundParallax)",
"Background Parallax is a simple example for parallax scrolling based on several UIScrollViews.",
""
],
[
"2",
"[@imfx](https://github.com/imfx)/[**FFDropdownMenu**](https://github.com/imfx/FFDropdownMenu)",
"Dropdown Menu Field using RMPickerViewController",
""
]
]
}
},
{
"h3": "PHP #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"305",
"[@crodas](https://github.com/crodas)/[**LanguageDetector**](https://github.com/crodas/LanguageDetector)",
"PHP Class to detect languages from any free text",
""
],
[
"152",
"[@crodas](https://github.com/crodas)/[**ActiveMongo**](https://github.com/crodas/ActiveMongo)",
"Simple and efficient ActiveRecord data abstraction for MongoDB",
"[:arrow_upper_right:](http://crodas.org/activemongo.php)"
],
[
"141",
"[@crodas](https://github.com/crodas)/[**Haanga**](https://github.com/crodas/Haanga)",
"Template compiler for PHP, Django-style (as much as possible). Pretty efficent by avoiding to have anything at run-time.",
"[:arrow_upper_right:](http://haanga.org/)"
],
[
"87",
"[@crodas](https://github.com/crodas)/[**TextRank**](https://github.com/crodas/TextRank)",
"extract relevant keywords from a given text",
""
],
[
"57",
"[@crodas](https://github.com/crodas)/[**InfluxPHP**](https://github.com/crodas/InfluxPHP)",
"Simple PHP client for InfluxDB",
""
],
[
"46",
"[@crodas](https://github.com/crodas)/[**php-git**](https://github.com/crodas/php-git)",
"Pure PHP script which allows to performs read-only operations plus repositories clone (over HTTP).",
"[:arrow_upper_right:](http://phpclasses.org/phpgit)"
],
[
"38",
"[@crodas](https://github.com/crodas)/[**Notoj**](https://github.com/crodas/Notoj)",
"Yet another annotation parser (DocBlocks)",
""
],
[
"28",
"[@imroca](https://github.com/imroca)/[**Bancard**](https://github.com/imroca/Bancard)",
"Abstract simple Bancard API Client for PHP.",
"[:arrow_upper_right:](http://imroca.com)"
],
[
"23",
"[@crodas](https://github.com/crodas)/[**MongoFS**](https://github.com/crodas/MongoFS)",
"PHP Streams Wrappers for MongoDB GridFS",
""
],
[
"16",
"[@crodas](https://github.com/crodas)/[**phpcluster**](https://github.com/crodas/phpcluster)",
"Unsupervised learning algorithm in PHP",
""
],
[
"12",
"[@crodas](https://github.com/crodas)/[**textrank-old**](https://github.com/crodas/textrank-old)",
"Class to extract relevant words from a given text",
""
],
[
"11",
"[@crodas](https://github.com/crodas)/[**Bancard**](https://github.com/crodas/Bancard)",
"Libreria para pagos con Bancard",
""
],
[
"10",
"[@crodas](https://github.com/crodas)/[**Autoloader**](https://github.com/crodas/Autoloader)",
"Proper autoloader for PHP",
""
],
[
"9",
"[@crodas](https://github.com/crodas)/[**SQLParser**](https://github.com/crodas/SQLParser)",
"SQL-Parser",
""
],
[
"9",
"[@crodas](https://github.com/crodas)/[**Dispatcher**](https://github.com/crodas/Dispatcher)",
"Creates an url dispatcher for your project",
""
],
[
"8",
"[@crodas](https://github.com/crodas)/[**WatchFiles**](https://github.com/crodas/WatchFiles)",
"Stateless way of watching files and directory for changes",
""
],
[
"7",
"[@crodas](https://github.com/crodas)/[**Artifex**](https://github.com/crodas/Artifex)",
"PHP Code generator for mere mortals",
""
],
[
"6",
"[@everdaniel](https://github.com/everdaniel)/[**codeigniter-project-…**](https://github.com/everdaniel/codeigniter-project-template)",
"A CodeIgniter project template",
""
],
[
"6",
"[@crodas](https://github.com/crodas)/[**Haanga2**](https://github.com/crodas/Haanga2)",
"Clean rewrite of crodas/Haanga :-). This isn't finish. It is just a repository to show the progress. Do not use it yet.",
""
],
[
"6",
"[@guhemama](https://github.com/guhemama)/[**worpdress-comment-re…**](https://github.com/guhemama/worpdress-comment-reply-email-notification)",
"Wordpress plugin that notifies a comment author when his comment receives a reply",
""
],
[
"6",
"[@crodas](https://github.com/crodas)/[**php-hadoop**](https://github.com/crodas/php-hadoop)",
"Simple PHP set of scripts to wrap Hadoop",
""
],
[
"6",
"[@crodas](https://github.com/crodas)/[**EasySQL**](https://github.com/crodas/EasySQL)",
"Easiest SQL abstraction ever. ",
""
],
[
"6",
"[@crodas](https://github.com/crodas)/[**ActiveMongo2**](https://github.com/crodas/ActiveMongo2)",
"PHP database abstraction for MongoDB",
""
],
[
"5",
"[@micayael](https://github.com/micayael)/[**com.micayael.blog.Se…**](https://github.com/micayael/com.micayael.blog.ServidorRestSilex)",
"Estructura básica para creación de un servidor REST utilizando el microframework Silex",
""
],
[
"5",
"[@crodas](https://github.com/crodas)/[**SimpleView**](https://github.com/crodas/SimpleView)",
"Simple view engine based on Laravel's Blade view Engine",
""
],
[
"5",
"[@crodas](https://github.com/crodas)/[**brhackday**](https://github.com/crodas/brhackday)",
"",
""
],
[
"5",
"[@crodas](https://github.com/crodas)/[**ClassInfo**](https://github.com/crodas/ClassInfo)",
"Get classes and functions defined in a given file",
""
],
[
"5",
"[@crodas](https://github.com/crodas)/[**Eath**](https://github.com/crodas/Eath)",
"Super simple package installer for PHP",
""
],
[
"5",
"[@crodas](https://github.com/crodas)/[**Haanga-web**](https://github.com/crodas/Haanga-web)",
"Haanga Web site source code",
"[:arrow_upper_right:](http://haanga.org/)"
],
[
"5",
"[@crodas](https://github.com/crodas)/[**Phar-Builder**](https://github.com/crodas/Phar-Builder)",
"Build Phar like a boss",
""
],
[
"3",
"[@crodas](https://github.com/crodas)/[**framework**](https://github.com/crodas/framework)",
"Tiny framework that I use daily, it is basically my libraries glued all together",
""
],
[
"3",
"[@crodas](https://github.com/crodas)/[**SimpleAssetManager**](https://github.com/crodas/SimpleAssetManager)",
"Extremely simple asset manager for PHP",
""
],
[
"3",
"[@pabloacastillo](https://github.com/pabloacastillo)/[**Wordpress-PaypalPro-…**](https://github.com/pabloacastillo/Wordpress-PaypalPro-Plugin)",
"WebShop to make direct payments from your wordpress to your PaypalPro Account without leaving your site.",
"[:arrow_upper_right:](http://pabloacastillo.me/)"
],
[
"2",
"[@adc91](https://github.com/adc91)/[**backend-google-maps**](https://github.com/adc91/backend-google-maps)",
"Plugin to add a Google Maps field in the October CMS Backend Forms",
"[:arrow_upper_right:](http://www.aldea.com.py)"
],
[
"2",
"[@bernaldani](https://github.com/bernaldani)/[**QueComemos**](https://github.com/bernaldani/QueComemos)",
"Aplicacion de delivery encarnacion",
""
],
[
"2",
"[@pabloacastillo](https://github.com/pabloacastillo)/[**EmojiOne-integration…**](https://github.com/pabloacastillo/EmojiOne-integration-for-Contact-Form-7)",
"EmojiOne integration for Contact Form 7. The only way to get better answers, is to ask better questions.",
""
],
[
"2",
"[@crodas](https://github.com/crodas)/[**Validator**](https://github.com/crodas/Validator)",
"Generate static validators to validate your data in PHP.",
""
],
[
"2",
"[@deyperez](https://github.com/deyperez)/[**ati**](https://github.com/deyperez/ati)",
"Juntas podemos más",
""
],
[
"2",
"[@crodas](https://github.com/crodas)/[**old-Tuicha**](https://github.com/crodas/old-Tuicha)",
"Simple mongodb abstraction for PHP. Tuicha means huge (humongous) in Guarani.",
""
]
]
}
},
{
"h3": "Python #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"72",
"[@Karlheinzniebuhr](https://github.com/Karlheinzniebuhr)/[**pythonbenchmark**](https://github.com/Karlheinzniebuhr/pythonbenchmark)",
"A simple Python Benchmark Library",
""
],
[
"8",
"[@tchx84](https://github.com/tchx84)/[**twitter-gobject**](https://github.com/tchx84/twitter-gobject)",
"twitter-gobject allows you access Twitter's 1.1 REST API via a set of GObject based objects for easy integration with your GLib2 based code.",
""
],
[
"5",
"[@Karlheinzniebuhr](https://github.com/Karlheinzniebuhr)/[**torshammer**](https://github.com/Karlheinzniebuhr/torshammer)",
"A DOS attack",
""
],
[
"4",
"[@tchx84](https://github.com/tchx84)/[**grtk**](https://github.com/tchx84/grtk)",
"Set of convenience scripts that allows developers to interact with redmine from CLI",
""
],
[
"4",
"[@joausaga](https://github.com/joausaga)/[**reportbytwitter**](https://github.com/joausaga/reportbytwitter)",
"Platform for collecting citizens' ideas and opinions about public interest issues through hashtag-supported social networks, such as Twitter, Facebook, Google Plus.",
""
],
[
"4",
"[@Karlheinzniebuhr](https://github.com/Karlheinzniebuhr)/[**Scrap.py**](https://github.com/Karlheinzniebuhr/Scrap.py)",
"Para descargar datos publicos y así concientizar sobre la protección de datos",
""
],
[
"4",
"[@tchx84](https://github.com/tchx84)/[**repotools**](https://github.com/tchx84/repotools)",
"Helper scripts to manage chaotic rpm package repositories",
""
],
[
"3",
"[@tchx84](https://github.com/tchx84)/[**bundletools**](https://github.com/tchx84/bundletools)",
"Set of scripts to run your own Sugar bundles update server",
""
],
[
"3",
"[@joausaga](https://github.com/joausaga)/[**social-ideation**](https://github.com/joausaga/social-ideation)",
"Application that connects idea management platforms with general purpose social networks",
"[:arrow_upper_right:](http://www.social-ideation.com)"
],
[
"3",
"[@tchx84](https://github.com/tchx84)/[**grestful**](https://github.com/tchx84/grestful)",
"gRESTful helps you integrate RESTful web services with your Glib2 code",
""
],
[
"3",
"[@Karlheinzniebuhr](https://github.com/Karlheinzniebuhr)/[**XOR-encryption-demo**](https://github.com/Karlheinzniebuhr/XOR-encryption-demo)",
"",
""
],
[
"3",
"[@ggimenez](https://github.com/ggimenez)/[**IS2-IMPLEMENTACION**](https://github.com/ggimenez/IS2-IMPLEMENTACION)",
"Trabajo Práctico de IS2 2011 - Pedro - Tony - Gabriel",
""
],
[
"2",
"[@rparrapy](https://github.com/rparrapy)/[**sugar**](https://github.com/rparrapy/sugar)",
"The Sugar desktop, with speech recognition support.",
""
],
[
"2",
"[@joausaga](https://github.com/joausaga)/[**ideascaly**](https://github.com/joausaga/ideascaly)",
"IdeaScale RESTful API client written in Python",
""
],
[
"2",
"[@rparrapy](https://github.com/rparrapy)/[**sugarlistens-livedem…**](https://github.com/rparrapy/sugarlistens-livedemo)",
"A very simple Sugar Activity for speech recognition testing purposes.",
""
],
[
"2",
"[@rparrapy](https://github.com/rparrapy)/[**wrangler**](https://github.com/rparrapy/wrangler)",
"Utility script to convert a given CSV file to geojson. Just tell it where the geo data is and let the magic happen.",
""
],
[
"2",
"[@tchx84](https://github.com/tchx84)/[**gpaste**](https://github.com/tchx84/gpaste)",
"Use fedora pastebin service in your Glib2 code",
""
],
[
"2",
"[@tchx84](https://github.com/tchx84)/[**magic-store**](https://github.com/tchx84/magic-store)",
"Proof of concept for a network file system based on fuse and xmlrpc",
""
],
[
"2",
"[@tchx84](https://github.com/tchx84)/[**turtleblocksjs-serve…**](https://github.com/tchx84/turtleblocksjs-server)",
"storage server for javascript turtle blocks",
""
],
[
"2",
"[@czayas](https://github.com/czayas)/[**agenda**](https://github.com/czayas/agenda)",
"Proyecto de ejemplo para la asignatura Paradigmas de la Programación",
""
],
[
"2",
"[@tchx84](https://github.com/tchx84)/[**analytics-server**](https://github.com/tchx84/analytics-server)",
"",
""
]
]
}
},
{
"h3": "Ruby #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"15",
"[@kennym](https://github.com/kennym)/[**ideone-ruby-api**](https://github.com/kennym/ideone-ruby-api)",
"A better Ruby gem for the Ideone API",
"[:arrow_upper_right:](https://rubygems.org/gems/ideone-ruby-api)"
],
[
"6",
"[@kennym](https://github.com/kennym)/[**annotate-sequel**](https://github.com/kennym/annotate-sequel)",
"Annotate your Sequel models",
""
],
[
"4",
"[@hisapy](https://github.com/hisapy)/[**UniBD**](https://github.com/hisapy/UniBD)",
"Repositorio para las clases de Laboratorio de Bases de Datos, Ing. Informática, Universidad Nacional de Itapúa - Encarnación, Paraguay",
""
],
[
"4",
"[@hisapy](https://github.com/hisapy)/[**uni-bd-2015**](https://github.com/hisapy/uni-bd-2015)",
"Laboratorio - Bases de Datos - Ingeniería Informática, UNI",
""
],
[
"4",
"[@hisapy](https://github.com/hisapy)/[**AdventureWorks2008R2…**](https://github.com/hisapy/AdventureWorks2008R2.RoR)",
"Ruby on Rails application on the SQL Server Adventure Works 2008 R2 database.",
""
],
[
"3",
"[@movihus](https://github.com/movihus)/[**gexip**](https://github.com/movihus/gexip)",
"Gestión de Expedientes para Instituciones Públicas",
""
],
[
"3",
"[@heimusica](https://github.com/heimusica)/[**hls-log-monitor**](https://github.com/heimusica/hls-log-monitor)",
"",
""
],
[
"3",
"[@hisapy](https://github.com/hisapy)/[**uni-bd-2013**](https://github.com/hisapy/uni-bd-2013)",
"Repositorio de las clases de Laboratorio de Bases de Datos del año 2013. Ingeniería Informática, Universidad Nacional de Itapúa.",
""
],
[
"3",
"[@kennym](https://github.com/kennym)/[**Blogger-to-Jekyll**](https://github.com/kennym/Blogger-to-Jekyll)",
"Convert Blogger articles to Jekyll markdown.",
""
],
[
"2",
"[@taniadaniela](https://github.com/taniadaniela)/[**calendar**](https://github.com/taniadaniela/calendar)",
"calendar for users",
""
],
[
"2",
"[@ParAgil](https://github.com/ParAgil)/[**Jahapa**](https://github.com/ParAgil/Jahapa)",
"",
""
],
[
"2",
"[@kennym](https://github.com/kennym)/[**ballin-lana**](https://github.com/kennym/ballin-lana)",
"",
""
]
]
}
},
{
"h3": "Scala #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3",
"[@neowinx](https://github.com/neowinx)/[**play-scala-bootstrap**](https://github.com/neowinx/play-scala-bootstrap)",
"Basic template for Play framework with Twitter Bootstrap 3.0",
""
],
[
"2",
"[@zv3](https://github.com/zv3)/[**sjs-react-server-pre…**](https://github.com/zv3/sjs-react-server-prerender)",
"japgolly's scalajs-react running on a remote nodejs environment for server side rendering (proof of concept)",
""
]
]
}
},
{
"h3": "Swift #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"51",
"[@AppsBoulevard](https://github.com/AppsBoulevard)/[**ABVideoRangeSlider**](https://github.com/AppsBoulevard/ABVideoRangeSlider)",
"Simple video range slider written in Swift 3",
""
],
[
"7",
"[@AppsBoulevard](https://github.com/AppsBoulevard)/[**VideoEditorExample**](https://github.com/AppsBoulevard/VideoEditorExample)",
"A Swift 3 project example, using ABVideoRangeSlider.",
""
],
[
"6",
"[@guarani](https://github.com/guarani)/[**Collapsible-UINaviga…**](https://github.com/guarani/Collapsible-UINavigationBar)",
"A collapsible UINavigationBar",
""
]
]
}
}
]
}
}