-
Notifications
You must be signed in to change notification settings - Fork 0
/
op1.csv
We can't make this file beautiful and searchable because it's too large.
5001 lines (5001 loc) · 702 KB
/
op1.csv
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
Skills
"Adaptation of existing file systems,Java,Analysis of file system variations,Software Configuration Management,SaaS,Nova,automation,Cryptocurrency,File system utilities,Bibtex,OOP,DBaaS,Cinder,UML,Swift"
"Cryptocurrency,C,Gnome,Nano,Scala,Windows,Scrum,C++,Perl,OpenSUSE,SQL,GraphQL,Kali-Linux,LINUX,Dropbox,NoSQL,VIM,Swift,Debian,Paas,OpenStack"
"MapReduce,OWL-S,AWS,Hadoop,Kafka,RDF,DIGITAL OCEAN,HBASE,Impala,Spark,ETL"
"clustering,NLP,Neural Networks,database management,python,Artificial Intelligence,Torch,System Modelling,machine learning,Labview,Embedded Operating Systems,data analytics,visualisation,Natural language Processing,Keras,R,Chromium,NLTK,Operating Systems"
"Neural Networks,Arduino,Pinguino,visualisation,Tensorflow,clustering,NLP,statistics,Keras,Microcontroller,Natural language Processing,NLTK,x86,python,System Modelling,Embedded Operating Systems,Algorithms,Transistors,similarity analysis,database management,Torch,machine learning,Operating Systems"
"Android,App Inventor"
"XML,EAI,3D modeling and animation,SPARQL,NodeJS,Django,3D computer graphics,Procedural generation of scenes,MOM,SKOS,RSS"
"Flume,Lens,SAP CRM,Nutch,Product Development,Program Management,Zookeeper,AWS,BigData,Kafka,ANT,MapReduce,Enterprise Software,Emacs,SDLC,App Inventor,Android,Android Studio,Spark,CRM"
"Flume,GIT,Product Development,Software Engineering,rebound,AWS,BigData,HIVE,ANT,Business Intelligence,Enterprise Software,PathPicker,Impala,Nutch,bolts-android"
"clustering,NLP,similarity analysis,statistics,File system utilities,Keras,python,database management,Selenium,machine learning,R,Algorithms,visualisation,Data mining,Tensorflow,Chromium,NLTK,data analytics"
"Virtualisation,Pinguino,LAN,Mobility,Cypress,Assembly Level Language,RISC,Arduino,Zookeeper,IPV4,Microprocessor,IPV6,MIPS,Security,Transistors,Impala,CISC,Nanode"
"clustering,Torch,similarity analysis,makeitopen,Java,Keras,conceal,rebound,redex,Shimmer,machine learning,Labview,R,UML,automation,infer,bolts-android"
"makeitopen,similarity analysis,Torch,Neural Networks,Dropbox,Keras,python,MongoDB,database management,Fuchsia,redex,Tensorflow,R,Algorithms,Shimmer,Natural language Processing,UML,Stetho,NLTK,Artificial Intelligence,bolts-android"
"MongoDB,3D modeling and animation,GraphQL,NoSQL,Cassandra"
"Adaptation of existing file systems,GIT,Raspberry Pi,App Inventor,Bibtex,Android,Analysis of file system variations,Android Studio"
"buck,C,redex,Java,Scala,conceal,Fresco,rebound,Scrum,Software Forge,SaaS,Shimmer,Perl,Cryptocurrency,makeitopen,PathPicker,DBaaS,IaaS,Swift,infer,bolts-android"
"Pinguino,Transistors,Microcontroller,Nanode,Arduino"
"Torch,Android,statistics,Algorithms,Artificial Intelligence"
"Paas,x86,Arduino,Pinguino,Android Studio,Cryptocurrency,Microprocessor,Raspberry Pi,DBaaS,Android,Transistors,Nanode"
"JavaScript,IPV4,Information Design,IPV6,NodeJS,flask,IOT,Interfacing with Cloud APIs,HTML,CSS,IaaS,Web Semantics,VoIP,Internet of THings,ReactJs,Knowledge Management,RISC,AJAX,Cinder,Security,Processor design,LAN,Mobility,Database-Basked Web Sites,Cloud Computing,MeanStack,CISC"
"FOAF,redex,rebound,SPARQL,Nano,GNU,Windows,KDE,RDFS,OWL-S,React Native,RDF,Emacs,Ubuntu,bolts-android,Stetho,Debian,ETL,RSS"
Operating Systems
"Virtualisation,SAP CRM,HTTP,Neural Networks,Flash,Assembly Level Language,Enterprise Software,IPV4,visualisation,MIPS,Tensorflow,CRM,clustering,Network Security,statistics,Keras,Socket Programming,IOT,Wireless,Agile Methodologies,Leadership,Natural language Processing,VoIP,Internet of THings,Web2.0,JavaScript,Business Analysis,python,.NET,RISC,Labview,AJAX,HTML5,NodeJS,Software Engineering,Database-Basked Web Sites,Torch,Requirements Analysis,machine learning,MeanStack,SDLC,Data mining,ARM"
"Web2.0,GIT,Mobility,Socket Programming,Assembly Level Language,VR,Bibtex,Processor design"
"App Inventor,3D data visualization,Android Studio"
"Fresco,Hadoop,PathPicker,Flume,3D modeling and animation,AMBARI,AWS,BigData,3D computer graphics,Procedural generation of scenes,DIGITAL OCEAN,Spark,infer,GIT,Tomcat,rebound,VR,Bibtex,3D data visualization,Impala,buck,MapReduce,Kafka,HBASE"
"Raspberry Pi,Microcontroller,x86,Microprocessor,Arduino"
"Android,Android Studio"
"Scrum,HTTP,Nano,GNU,Make,Pinguino,DART,Emacs,Kali-Linux,UML,Perl,Socket Programming,Software Configuration Management,OpenSUSE,Debian,Internet of THings,GIT,Windows,FUSE,Transistors,VIM,LINUX,Go"
"Adaptation of existing file systems,3D computer graphics"
"File system utilities,VIM,OpenSUSE,Embedded Operating Systems,Emacs,LINUX,App Inventor,Android,Analysis of file system variations"
"Software Forge,Scala"
"Paas,3D modeling and animation,Embedded Operating Systems,System Modelling,Virtual Reality,SaaS,Cryptocurrency,3D computer graphics,Procedural generation of scenes,3D data visualization,Cinder,IaaS"
"Adaptation of existing file systems,Scrum,GIT,File system utilities,Scala,Software Configuration Management,Perl,Bibtex,OOP,Go,App Inventor"
"Paas,GIT,SaaS,Bibtex,DBaaS,OpenStack,IaaS"
"3D modeling and animation,System Modelling,Nano,GNU,Windows,KDE,Software Forge,Agile,automation,Procedural generation of scenes,3D data visualization,Ubuntu,Emacs,C,UML,Operating Systems"
"Paas,SaaS,Cinder"
"Adaptation of existing file systems,Flume,Zookeeper,File system utilities,Nutch,MapReduce,Virtual Reality,DIGITAL OCEAN,Hadoop,BigData,HIVE,Kafka,AR,Microprocessor,Nvidia,AMBARI,Analysis of file system variations"
"SOA,Microcontroller,Arduino,conceal,Cypress,RDFS,Fresco,PathPicker,MOM,OWL-S,SKOS,rebound"
"HTML,Adaptation of existing file systems,3D modeling and animation,ReactJs,3D computer graphics,NodeJS,flask,JavaScript,System Modelling,Django,MeanStack,Raspberry Pi,Procedural generation of scenes,Operating Systems,Information Design,AngularJS,Angular2,Embedded Operating Systems,Analysis of file system variations,CSS"
"JQuery,Paas,AngularJS,NodeJS,Knowledge Management,React Native,ReactJs,SaaS,Interfacing with Cloud APIs,Nova,Django,Cryptocurrency,HTML,DBaaS,OpenStack,Cinder,Swift,CSS"
Scala
"Web2.0,Network Security,Mobility,Socket Programming,.NET,RISC,Wireless,IPV6,Security,Internet of THings"
"Adaptation of existing file systems,Paas,File system utilities,NoSQL,MongoDB,Nova,Cryptocurrency,3D computer graphics,DBaaS,SQL,Cinder,Analysis of file system variations,Cassandra"
"classification,Flash,Selenium,PathPicker,DBaaS,Tensorflow,clustering,NLP,statistics,Keras,Interfacing with Cloud APIs,IaaS,Swift,GIT,Django,R,Bibtex,HTML5,NodeJS,Torch,machine learning,Data mining,Artificial Intelligence"
"Java,Scala,Agile,ReactJs,Fuchsia,Hadoop,Information Design,UML,Flume,ANT,AMBARI,Nutch,Scrum,AWS,BigData,Lens,HTML,DIGITAL OCEAN,Spark,Web Semantics,C,Flash,Tomcat,automation,AJAX,Angular2,HTML5,Impala,Database-Basked Web Sites,Cloud Computing,Zookeeper,MapReduce,HIVE,Kafka,MeanStack,OOP,Go,HBASE"
"Flume,AMBARI,AWS,BigData,Hadoop,MapReduce,Bibtex,Spark,Impala"
"Scrum,Java,Gnome,Nano,GNU,Windows,Software Forge,LINUX,Fuchsia,Agile,VIM,FUSE,Emacs,OOP,Kali-Linux,Ubuntu,DART,App Inventor,Scala,Perl"
"NLP,similarity analysis,GraphQL,Neural Networks,classification,Keras,MongoDB,Software Forge,Torch,Selenium,machine learning,Algorithms,visualisation,Data mining,UML,NoSQL,database management,NLTK,data analytics"
"Microcontroller,Pinguino,x86"
"JQuery,Adaptation of existing file systems,3D modeling and animation,Pinguino,Microprocessor,Cypress,Microcontroller,Interfacing with Cloud APIs,AJAX,3D computer graphics,Angular2,HTML5,3D data visualization,Transistors,CSS"
"Paas,Mobility,SaaS,Nova,Cryptocurrency,OpenStack,IaaS,CISC"
"Adaptation of existing file systems,Microcontroller,Nanode,Arduino,Cypress,Pinguino,Raspberry Pi,Transistors,Android Studio"
"Adaptation of existing file systems,XML,File system utilities,x86,Cypress,Pinguino,VR,AR,MOM,Nvidia,RDF,Transistors,Analysis of file system variations"
"HTTP,.NET,Network Security,Mobility,Assembly Level Language,SaaS,Virtualisation,Nova,IPV4,Cinder,Security,Swift,ARM,Processor design,Internet of THings"
"Nvidia,AMBARI,Gnome,Tomcat,KDE,Virtual Reality,Zookeeper,MapReduce,VIM,ANT,VR,AR,DIGITAL OCEAN,Security"
"ANT,Dropbox,Cassandra,GraphQL,SQL"
"Web2.0,LAN,IOT,HTTP,Nano,Ubuntu,Windows,Make,Assembly Level Language,.NET,Virtualisation,Debian,Wireless,IPV6,Emacs,Processor design,MIPS,Network Security,VIM,ARM,VoIP"
"Nova,makeitopen,Paas,SaaS,React Native,redex,Fresco,Shimmer,PathPicker,Cinder,OpenStack,Swift"
"XML,Paas,EAI,Gnome,Nano,GNU,KDE,Make,Nova,VIM,Cryptocurrency,Emacs,Kali-Linux,DBaaS,OWL-S,Cinder,IaaS,Debian"
"Adaptation of existing file systems,buck,Android,App Inventor,bolts-android"
"buck,makeitopen,React Native,Fresco,Shimmer,Stetho,bolts-android"
"Adaptation of existing file systems,GraphQL,MongoDB,System Modelling,Wireless,Embedded Operating Systems,App Inventor,Dropbox,Security,CISC"
Web2.0
"Enterprise Software,SAP CRM,Requirements Analysis,Program Management,CRM"
"Paas,NoSQL,SaaS,PathPicker,SQL,Dropbox"
"Embedded Operating Systems,System Modelling,Operating Systems,Software Engineering"
"3D modeling and animation,3D data visualization,Nano,VIM,OpenSUSE,3D computer graphics,Kali-Linux,Debian,Gnome"
"Adaptation of existing file systems,Analysis of file system variations,3D modeling and animation,File system utilities,3D data visualization"
"Adaptation of existing file systems,Java,Information Design,NoSQL,Agile,Flash,Perl,DBaaS,OpenStack,Analysis of file system variations,JQuery,SaaS,Dropbox,IaaS,Web Semantics,Paas,JavaScript,Knowledge Management,Software Forge,C++,automation,AJAX,ReactJs,Cinder,Django,File system utilities,Database-Basked Web Sites,MeanStack,Cassandra"
"Virtualisation,Network Security,.NET,Hadoop,IPV6,OpenStack,Android,Web2.0,Wireless,Nutch,Lens,Dropbox,Swift,CISC,Internet of THings,HTTP,Assembly Level Language,Tomcat,App Inventor,Cinder,Security,Impala,Processor design,Android Studio,LAN,Zookeeper,MapReduce,HIVE,Kafka,Cryptocurrency,HBASE,ARM,Cassandra"
"JQuery,ReactJs,NodeJS,Database-Basked Web Sites,Cloud Computing,Flash,Interfacing with Cloud APIs,Django,MeanStack,App Inventor,Information Design,Android,Web Semantics"
3D data visualization
"Fuchsia,Java"
"Paas,Nvidia,Java,Scala,Software Configuration Management,Software Forge,Nova,DART,Cryptocurrency,VR,AR,OOP,DBaaS,Cinder,UML,IaaS,Swift"
"Adaptation of existing file systems,Scala"
"Web2.0,LAN,.NET,AMBARI,Virtual Reality,Zookeeper,DIGITAL OCEAN,IPV6,VR,Data mining,MIPS,Tensorflow,Socket Programming"
"C,GIT,conceal,Fuchsia,redex,Fresco,Nova,automation,Stetho,Bibtex,PathPicker,DBaaS,OpenStack,Go,UML,OOP,Swift,infer,bolts-android"
"Gnome,Nano,Windows,Virtual Reality,VIM,OpenSUSE,FUSE,Emacs,Kali-Linux,LINUX,App Inventor,Android,Debian"
"Go,UML,Scrum,DART,automation"
"C,Java,System Modelling,RISC,Wireless,VR,Embedded Operating Systems,Dropbox,MIPS,UML,ARM,CISC,Internet of THings"
"Torch,Network Security,classification,Integration,Business Intelligence,IPV4,Tensorflow,HTTP,CRM,Web2.0,Wireless,Natural language Processing,NLTK,VoIP,clustering,Business Analysis,similarity analysis,Labview,Processor design,LAN,Software Engineering,Program Management,Mobility,SDLC,Data mining,Product Management,data analytics"
"NoSQL,MongoDB,Embedded Operating Systems,GraphQL,Dropbox,Cassandra"
"buck,GIT,File system utilities,Nano,GNU,Windows,KDE,Make,LINUX,VIM,OpenSUSE,3D computer graphics,Procedural generation of scenes,3D data visualization,Ubuntu,Emacs,Debian"
"EAI,FOAF,XML,SOA,OWL-S,EII"
"Nanode,File system utilities,Microprocessor,Operating Systems,x86"
"Paas,Stetho,DBaaS,EII,OpenStack,Analysis of file system variations,ETL,EAI,RDFS,React Native,SaaS,IaaS,XML,SOA,redex,RDF,buck,File system utilities,SPARQL,MOM,OWL-S,RSS"
"Embedded Operating Systems,Neural Networks,NLTK,machine learning"
"Adaptation of existing file systems,buck,x86,Microcontroller,Raspberry Pi,Analysis of file system variations"
"Embedded Operating Systems,Operating Systems"
Network Security
"Virtualisation,SAP CRM,HTTP,Requirements Analysis,Assembly Level Language,Enterprise Software,IPV4,MIPS,Gnome,Web2.0,Fresco,VoIP,Internet of THings,.NET,Product Development,redex,RISC,FUSE,Security,Processor design,buck,LAN,Software Engineering,Mobility,Stetho,CISC,Product Management,ARM,bolts-android"
"Software Forge,Scrum,Software Configuration Management,Neural Networks,classification,Keras,Fuchsia,Nvidia,Scala,C++,DART,Embedded Operating Systems,OOP,Natural language Processing,Go,Tensorflow,UML,NLTK,Operating Systems"
"Embedded Operating Systems,Operating Systems"
"3D modeling and animation,visualisation,python,MongoDB,Data mining,Embedded Operating Systems,Procedural generation of scenes,3D data visualization,SQL,Dropbox,R,Analysis of file system variations"
"Virtualisation,HTTP,.NET,Emacs,IPV6,Android,Web2.0,Wireless,KDE,IOT,OpenSUSE,Ubuntu,VoIP,Assembly Level Language,RISC,Cinder,Processor design,Android Studio,LAN,Mobility,VIM,CISC,LINUX,ARM"
"SOA,SKOS,Django,RDF,App Inventor,MOM,Android,Analysis of file system variations,RDF+"
"Adaptation of existing file systems,Virtualisation,HTTP,Neural Networks,classification,Assembly Level Language,Selenium,IPV4,MIPS,Tensorflow,clustering,NLP,Wireless,Natural language Processing,Dropbox,NLTK,CISC,Internet of THings,similarity analysis,R,Algorithms,Security,Processor design,LAN,File system utilities,Mobility,MongoDB,Torch,Data mining,GraphQL,data analytics"
"Adaptation of existing file systems,Analysis of file system variations,Business Analysis,Operating Systems,CRM"
"C,Java,Gnome,Nano,Scala,Windows,Agile,Virtual Reality,Scrum,C++,Perl,OpenSUSE,Debian,OOP,Kali-Linux,Nvidia,UML,Make,KDE"
"3D modeling and animation,3D computer graphics,Procedural generation of scenes"
"Flume,System Modelling,Virtual Reality,Nvidia,Fresco,MapReduce,Lens,VR,Bibtex,DIGITAL OCEAN,Spark,infer,bolts-android"
"Cryptocurrency,Cinder,Swift,DBaaS"
System Modelling
"Make,Hadoop,Emacs,Kali-Linux,EII,ETL,AMBARI,Nutch,AWS,BigData,DIGITAL OCEAN,Tomcat,Ubuntu,RDF,App Inventor,Android Studio,Zookeeper,MapReduce,HIVE,Kafka,MOM,RSS"
"Product Development,Software Engineering,Requirements Analysis,System Modelling,Leadership,Agile Methodologies,Product Management,Enterprise Software,Business Analysis,CRM"
"SaaS,Nova,Cryptocurrency,App Inventor,DBaaS,Cinder,OpenStack,IaaS,Swift,Android"
"Torch,similarity analysis,GIT,Neural Networks,Keras,Virtual Reality,database management,AR,Bibtex,Tensorflow,R,NLTK"
"Web2.0,LAN,GIT,HTTP,Gnome,conceal,KDE,rebound,Assembly Level Language,RISC,infer,FUSE,Emacs,IPV6,MIPS,Security,Internet of THings,Debian,VoIP,React Native"
"SOA,IOT,Virtualisation,.NET,Network Security,LAN,Socket Programming,Assembly Level Language,RISC,IPV4,IPV6,MIPS,HTTP,Security,SKOS,VoIP"
"Adaptation of existing file systems,Product Development,SAP CRM,File system utilities,Business Analysis,Program Management,conceal,redex,Fresco,Resource Management,makeitopen,PathPicker,Agile Methodologies,Product Management,infer,CRM"
"Virtualisation,HTTP,Nano,GNU,Make,Assembly Level Language,IPV4,Kali-Linux,IPV6,MIPS,3D modeling and animation,KDE,IOT,OpenSUSE,Procedural generation of scenes,VoIP,Internet of THings,.NET,RISC,Embedded Operating Systems,3D data visualization,Security,Processor design,LAN,Mobility,VIM,ARM,Operating Systems"
"C,SAP CRM,Product Development,Software Engineering,Scrum,Fuchsia,C++,automation,Go,Leadership,SDLC,Product Management,CRM,Business Analysis"
"ANT,AMBARI,Nutch,Hadoop,AWS,MapReduce,BigData,Lens,DIGITAL OCEAN,Spark,Impala"
"Microcontroller,Cypress,Pinguino,App Inventor"
"C,Agile,Software Configuration Management,C++,DART,AR,automation,Perl"
"similarity analysis,statistics,Microprocessor,Keras,python,System Modelling,Pinguino,Selenium,3D modeling and animation,3D computer graphics,3D data visualization,Natural language Processing,Embedded Operating Systems,Chromium,Operating Systems,Nanode"
"File system utilities,Nano,SaaS,Nova,Emacs,Cinder"
"Neural Networks,classification,Selenium,DBaaS,OpenStack,Tensorflow,NLP,Keras,Natural language Processing,IaaS,NLTK,Paas,Labview,R,Algorithms,Cinder,similarity analysis,Torch,machine learning,Data mining,Chromium,Artificial Intelligence"
"makeitopen,rebound,redex,Fresco,Shimmer,App Inventor,React Native,bolts-android"
"Java,Scala,Agile,Hadoop,DART,UML,Android,Flume,AMBARI,Nutch,SaaS,Lens,DIGITAL OCEAN,Spark,C,Tomcat,automation,App Inventor,Impala,Android Studio,MapReduce,HIVE,Kafka,OOP,Go,HBASE,AWS"
"JQuery,clustering,Torch,database management,JavaScript,machine learning,MeanStack,VR,HTML,Nvidia,AR"
"SOA,EAI,PathPicker,buck,conceal,redex,bolts-android,Shimmer,MOM,EII,RDF+,infer,RSS"
"3D modeling and animation,NoSQL,3D computer graphics,GraphQL,3D data visualization,Dropbox,Procedural generation of scenes,Cassandra,Android Studio"
"buck,redex,PathPicker,bolts-android"
"RDF,Embedded Operating Systems,Operating Systems,OWL-S"
"SAP CRM,Neural Networks,classification,Arduino,Requirements Analysis,Resource Management,Business Intelligence,Enterprise Software,Tensorflow,Nanode,clustering,NLP,Keras,Virtual Reality,Leadership,CRM,XML,Business Analysis,VR,RDF,Nvidia,Software Engineering,Program Management,Torch,SDLC,Chromium,Artificial Intelligence"
"Web2.0,JQuery,HTTP,flask,Knowledge Management,Socket Programming,Flash,Interfacing with Cloud APIs,Database-Basked Web Sites,AJAX,Angular2,IPV4,Information Design,IPV6,Analysis of file system variations,ARM,HTML5"
"System Modelling,Analysis of file system variations,File system utilities,Operating Systems"
"Java,Nano,GNU,Agile,Fuchsia,DART,Microprocessor,Gnome,Cypress,Scrum,OpenSUSE,Raspberry Pi,HTML,Ubuntu,Web Semantics,Debian,C,x86,Software Forge,AJAX,FUSE,Angular2,HTML5,Transistors,Database-Basked Web Sites,Cloud Computing,VIM,Go,Bibtex"
"Nano,GNU,Make,Stetho,PathPicker,DBaaS,OpenStack,x86,Cypress,Microcontroller,SaaS,Raspberry Pi,Ubuntu,Swift,infer,Paas,Gnome,Windows,FUSE,Transistors,conceal,bolts-android"
"SAP CRM,File system utilities,SDLC,Software Engineering,Integration,Business Intelligence,Agile Methodologies,Product Management"
"LINUX,FUSE,Nano,VIM"
"EAI,SOA,Keras,redex,Nutch,buck,Chromium,rebound,Zookeeper,AWS,Hadoop,MapReduce,ANT,DIGITAL OCEAN,EII,Tensorflow,HBASE,Kafka,SKOS,ETL,BigData"
"Flume,Zookeeper,AWS,Hadoop,HIVE,Kafka,VR,AR,Nvidia,Spark,Impala,HBASE"
"JQuery,Flash,File system utilities,NodeJS,flask,Web Semantics,Microcontroller,Interfacing with Cloud APIs,MeanStack,AJAX,HTML,Procedural generation of scenes,HTML5,3D data visualization,Database-Basked Web Sites,ReactJs,Angular2,Analysis of file system variations,CSS"
"Java,Software Forge,C++,Fuchsia"
"Android,System Modelling,Operating Systems,Android Studio"
"Nano,GNU,Windows,KDE,VIM,OpenSUSE,FUSE,Emacs"
"Adaptation of existing file systems,SAP CRM,Business Analysis,Program Management,Requirements Analysis,Resource Management,Business Intelligence,Enterprise Software,SDLC,Analysis of file system variations,CRM"
"3D modeling and animation,makeitopen,conceal,rebound,redex,Procedural generation of scenes,bolts-android"
"VR,Nvidia"
"Virtualisation,GIT,Network Security,.NET,3D modeling and animation,Bibtex,IPV4,3D data visualization,MIPS,Procedural generation of scenes,VoIP"
"Flume,Nutch,Tomcat,Virtual Reality,Nvidia,AWS,MapReduce,HIVE,Kafka,Lens,DIGITAL OCEAN,Spark,HBASE,Hadoop"
"x86,Arduino,MongoDB,Cypress,Pinguino,VR,Nvidia,Dropbox,Nanode"
"Nanode,Cypress,Pinguino,Raspberry Pi,Transistors,x86"
"Flume,Nutch,Embedded Operating Systems,Virtual Reality,SaaS,Hadoop,Nova,BigData,VR,AR,HIVE,DIGITAL OCEAN,Spark,Swift,HBASE"
"Adaptation of existing file systems,Fresco,Nova,Flume,makeitopen,AMBARI,Nutch,AWS,BigData,Lens,Spark,infer,redex,App Inventor,Shimmer,Cinder,IaaS,buck,File system utilities,HIVE,Kafka,ANT,HBASE,bolts-android"
"buck,makeitopen,Stetho,infer,bolts-android"
"Adaptation of existing file systems,XML,Virtualisation,Network Security,Assembly Level Language,IPV6,Analysis of file system variations,Web2.0,RDFS,Socket Programming,IOT,3D computer graphics,VoIP,Internet of THings,FOAF,.NET,3D data visualization,Security,SKOS,Processor design,RDF+,File system utilities,SPARQL,Mobility,CISC,MOM"
"Adaptation of existing file systems,File system utilities,Bibtex,Analysis of file system variations"
"Adaptation of existing file systems,ANT,AMBARI,SPARQL,Hadoop,RDFS,Zookeeper,AWS,BigData,HIVE,Kafka,Lens,Tomcat,IPV4,DIGITAL OCEAN,HBASE,Impala,Flume"
"AR,Nvidia"
"classification,Labview,Algorithms,visualisation,Chromium,Artificial Intelligence"
"makeitopen,Java,Fresco,conceal,Agile,Fuchsia,automation,OOP,Go"
"3D computer graphics,Keras,python,Natural language Processing,Selenium,machine learning,Algorithms,Labview,R,Procedural generation of scenes,Data mining,Tensorflow,Chromium,Artificial Intelligence,Android Studio"
"Gnome,Windows,KDE,Make,VIM,OpenSUSE,Emacs,Debian"
"Adaptation of existing file systems,File system utilities,Nanode,Pinguino,Raspberry Pi,Microprocessor,Analysis of file system variations"
"statistics,x86,classification,python,Virtual Reality,Nvidia,Tensorflow"
"Embedded Operating Systems,System Modelling,DBaaS"
"Microcontroller,x86,Pinguino,Raspberry Pi,Embedded Operating Systems,Transistors"
"KDE,Make,Kali-Linux,VIM"
"EAI,Flash,EII,ETL,JQuery,NodeJS,Interfacing with Cloud APIs,XML,SOA,ReactJs,System Modelling,Django,Angular2,HTML5,JavaScript,CSS,RDF+,SPARQL,Cloud Computing,RDFS,MeanStack,MOM,Operating Systems,RSS"
"Nutch,Nano,Windows,Impala,VIM,Emacs,Ubuntu,Kafka,Analysis of file system variations"
"SPARQL,NoSQL,RDFS,MongoDB,System Modelling,Integration,Business Intelligence,Embedded Operating Systems,GraphQL,Dropbox,SKOS,Operating Systems,RSS"
".NET,HTTP,Mobility,Processor design,Zookeeper,Wireless,VoIP,IPV4,IPV6,Security,Assembly Level Language,CISC"
"EAI,SOA,3D modeling and animation,3D data visualization,RDFS,Arduino,3D computer graphics,Procedural generation of scenes,MOM,EII,SKOS"
"JQuery,3D modeling and animation,NodeJS,flask,Knowledge Management,Cloud Computing,JavaScript,Interfacing with Cloud APIs,Django,Procedural generation of scenes,3D data visualization"
"clustering,statistics,Neural Networks,database management,Torch,Selenium,Labview,visualisation,Natural language Processing,Data mining,NLTK"
"NoSQL,MongoDB,App Inventor,SQL,Bibtex,Dropbox,Cassandra"
"Leadership,SAP CRM,Product Development,NoSQL,Program Management,MongoDB,Requirements Analysis,Integration,Enterprise Software,GraphQL,SDLC,SQL,Product Management,CRM,Software Engineering,Cassandra"
"Adaptation of existing file systems,File system utilities,Analysis of file system variations"
"Kali-Linux,Nano,GNU,Make,Pinguino,Emacs,Microprocessor,Nanode,KDE,Virtual Reality,Microcontroller,Arduino,3D computer graphics,x86,Windows,VR,Embedded Operating Systems,3D data visualization,Nvidia,Transistors,LINUX,Cypress,Operating Systems"
"3D modeling and animation,3D computer graphics,System Modelling,3D data visualization"
"3D modeling and animation,3D computer graphics,Procedural generation of scenes,3D data visualization"
"Adaptation of existing file systems,Paas,makeitopen,File system utilities,conceal,SaaS,Virtual Reality,Fresco,Shimmer,infer,Cryptocurrency,Embedded Operating Systems,System Modelling,rebound,OpenStack,Nova,IaaS,Analysis of file system variations,React Native,Operating Systems,bolts-android"
"Dropbox,MongoDB,Cassandra,Analysis of file system variations,SQL"
"Paas,SaaS,Nova,DBaaS,Cinder"
"SAP CRM,NoSQL,Selenium,Integration,Shimmer,Enterprise Software,visualisation,Tensorflow,Program Management,clustering,NLP,statistics,Keras,Fresco,Dropbox,python,Data mining,System Modelling,R,Algorithms,Resource Management,buck,similarity analysis,Software Engineering,database management,Torch,machine learning,Embedded Operating Systems,SDLC,SQL,GraphQL,Cassandra,Chromium,Artificial Intelligence,bolts-android"
"RSS,SKOS,MOM,RDFS"
"Paas,DBaaS,Information Design,NodeJS,flask,Swift,Cloud Computing,ReactJs,SaaS,Interfacing with Cloud APIs,Django,MeanStack,AJAX,AngularJS,OpenStack,Cryptocurrency,Web Semantics"
"SOA,FOAF,MOM,OWL-S,SKOS,ETL,RDF+"
"React Native,Virtual Reality,redex,Fresco,Shimmer,AR,App Inventor,Nvidia,Bibtex,Stetho,rebound,bolts-android"
"Adaptation of existing file systems,File system utilities,Analysis of file system variations"
"Nano,Make,Requirements Analysis,Business Intelligence,Enterprise Software,Kali-Linux,CRM,NodeJS,KDE,OpenSUSE,AngularJS,Ubuntu,JavaScript,Gnome,Windows,Django,AJAX,FUSE,Database-Basked Web Sites,Cloud Computing,Agile Methodologies,Product Management,Business Analysis"
"SAP CRM,classification,Requirements Analysis,Selenium,Resource Management,Enterprise Software,DBaaS,OpenStack,Tensorflow,CRM,clustering,statistics,Keras,SaaS,Agile Methodologies,Natural language Processing,Swift,GIT,Business Analysis,python,R,Algorithms,Nova,Cinder,Software Engineering,Program Management,machine learning,SDLC,Product Management"
"Neural Networks,classification,Flash,Selenium,JQuery,statistics,Cypress,Natural language Processing,Web Semantics,NLTK,XML,Knowledge Management,Labview,AJAX,R,Algorithms,HTML5,database management,Torch,machine learning,Embedded Operating Systems,Artificial Intelligence,Chromium,Operating Systems"
"FOAF,XML,EAI,SPARQL,RDFS,RDF,EII,Embedded Operating Systems,Operating Systems,RSS"
"DBaaS,GNU,ReactJs,Nova,Emacs,Kali-Linux,Analysis of file system variations,JQuery,Cryptocurrency,NodeJS,flask,OpenSUSE,AngularJS,Swift,Paas,Knowledge Management,Django,FUSE,Cinder,File system utilities,VIM,MeanStack"
"makeitopen,redex,Shimmer,PathPicker,Analysis of file system variations,bolts-android"
"Paas,Cryptocurrency,DBaaS,Cinder,OpenStack,IaaS,Swift"
"SOA,XML,MOM,Nano,GNU,GraphQL,Agile Methodologies,SKOS,Operating Systems"
"Adaptation of existing file systems,similarity analysis,File system utilities,classification,Keras,Torch,visualisation,Tensorflow,database management,NLTK"
"XML,FOAF,EAI,Nanode,Fresco,React Native,SaaS,RDF,Microprocessor,SOA,EII,RDF+,infer,RSS"
"Adaptation of existing file systems,Analysis of file system variations,SaaS,OpenStack,Cinder,Swift"
"GNU,Make,Stetho,Kali-Linux,Kafka,NLP,makeitopen,Nutch,KDE,React Native,Fresco,OpenSUSE,infer,rebound,FUSE,Impala,buck,conceal,MapReduce,VIM,ANT,Data mining,HBASE,bolts-android"
"Web2.0,IOT,Microcontroller,HTTP,Business Analysis,Nanode,System Modelling,x86,Requirements Analysis,.NET,Integration,Wireless,Raspberry Pi,Business Intelligence,Leadership,IPV4,Microprocessor,IPV6,Enterprise Software,Operating Systems,CRM"
"C,Scrum,Java,Scala,Software Configuration Management,Software Forge,DART,Go"
"Paas,Gnome,GNU,System Modelling,Make,Scrum,Fuchsia,C++,Perl,Embedded Operating Systems,OOP,Go,IaaS,VIM,Operating Systems"
"NoSQL,flask,Interfacing with Cloud APIs,Django,MeanStack,GraphQL,HTML5,AngularJS,SQL,Dropbox,Kafka,Web Semantics"
"Virtualisation,Scrum,Network Security,Fuchsia,DBaaS,OpenStack,Java,3D modeling and animation,Software Configuration Management,Wireless,IaaS,CISC,Internet of THings,Paas,GIT,Software Forge,RISC,C++,automation,Bibtex,3D data visualization,Cinder,Security,UML,Cryptocurrency,VoIP,Go,ARM"
"Flume,ANT,Nutch,NodeJS,AWS,Flash,Hadoop,MapReduce,HIVE,Kafka,Lens,HTML,HTML5,AngularJS,DIGITAL OCEAN,HBASE,BigData"
"3D modeling and animation,3D data visualization"
"classification,Hadoop,Flume,statistics,AWS,BigData,Lens,3D computer graphics,Natural language Processing,Spark,clustering,Tomcat,DIGITAL OCEAN,Labview,3D data visualization,database management,Zookeeper,MapReduce,HIVE,Kafka,ANT,HBASE"
"Adaptation of existing file systems,Scrum,x86,Scala,Agile,Cypress,Microcontroller,Fuchsia,C++,automation,Raspberry Pi,DART,Microprocessor,Nvidia,Go,Transistors,Perl,Nanode"
"GNU,Nano,Scala,System Modelling,Agile,Software Configuration Management,Software Forge,DART,Embedded Operating Systems,Emacs,Kali-Linux,LINUX,UML,KDE,Operating Systems"
"SAP CRM,Microprocessor,Software Engineering,Program Management,Cypress,Microcontroller,Agile Methodologies,Integration,Resource Management,x86,Raspberry Pi,Business Intelligence,Leadership,App Inventor,SDLC,Product Management,HBASE,Android Studio,Enterprise Software,Business Analysis,CRM"
"Virtual Reality,AR"
"Virtualisation,IOT,Kali-Linux,GNU,Make,.NET,Shimmer,Emacs,Microprocessor,Socket Programming,Microcontroller,Ubuntu,infer,VoIP,Internet of THings,Cypress,Gnome,Windows,rebound,FUSE,Security,Transistors,Debian,buck,LAN,Mobility,VIM,CISC,LINUX,ARM"
"Adaptation of existing file systems,Flume,AMBARI,Nutch,Arduino,Impala,Pinguino,AWS,BigData,HIVE,Raspberry Pi,DIGITAL OCEAN,HBASE,Transistors,Analysis of file system variations"
"Microprocessor,Nano,GNU,Make,Stetho,PathPicker,Kali-Linux,machine learning,Neural Networks,clustering,makeitopen,KDE,React Native,Fresco,Ubuntu,visualisation,Debian,Gnome,python,Natural language Processing,FUSE,buck,conceal,Torch,VIM,Data mining,R,LINUX,Artificial Intelligence,bolts-android"
"EAI,buck,makeitopen,Nano,MongoDB,SOA,Fresco,XML,Stetho,App Inventor,PathPicker,SQL,Android,infer,RDF+"
"AJAX,NodeJS,Angular2,HTML5,Django"
"ReactJs,x86,Arduino,Microcontroller,JavaScript,Django,AJAX,Raspberry Pi,Angular2,HTML5,Information Design,Transistors,Nanode"
"HTTP,GNU,Make,.NET,Hadoop,Emacs,IPV4,Kali-Linux,IPV6,MIPS,Web2.0,OpenSUSE,Network Security,KDE,AWS,Wireless,Ubuntu,Debian,CISC,Flume,Tomcat,DIGITAL OCEAN,RISC,FUSE,GraphQL,Impala,LAN,MapReduce,ANT,LINUX,HBASE,ARM"
"App Inventor,Android Studio"
"Product Development,SAP CRM,AMBARI,Nutch,Software Engineering,Requirements Analysis,AWS,MapReduce,Kafka,Enterprise Software,Agile Methodologies,Spark,CRM,HBASE,Business Analysis"
"LAN,Mobility,conceal,rebound,IOT,3D modeling and animation,Wireless,3D computer graphics,GraphQL,Dropbox,bolts-android,Stetho,Cassandra"
"JQuery,Angular2,HTML5,Information Design"
"Android,App Inventor,Android Studio"
"GNU,KDE,Make,VIM,FUSE,Emacs,Kali-Linux,LINUX,Debian"
"JQuery,Flash,NodeJS,flask,Knowledge Management,Cloud Computing,JavaScript,Interfacing with Cloud APIs,AJAX,HTML,HTML5,AngularJS,Database-Basked Web Sites,ReactJs,Web Semantics,CSS"
"Adaptation of existing file systems,Paas,File system utilities,DBaaS,Cinder,IaaS,Swift"
"Virtualisation,Network Security,Nano,Make,.NET,Hadoop,Emacs,IPV4,Kali-Linux,Flume,Nutch,Socket Programming,BigData,Wireless,Ubuntu,Spark,Debian,VoIP,Internet of THings,Web2.0,Assembly Level Language,Gnome,Tomcat,Windows,Security,Impala,LAN,Mobility,MongoDB,Zookeeper,MapReduce,CISC,LINUX,ARM"
"Kali-Linux,ReactJs,Information Design,JQuery,NodeJS,Flash,OpenSUSE,AngularJS,Ubuntu,JavaScript,Windows,Knowledge Management,AJAX,FUSE,Angular2,HTML5,CSS,Cloud Computing,Zookeeper,VIM,ANT,Embedded Operating Systems"
"Microprocessor,Arduino,Pinguino,Selenium,visualisation,Tensorflow,clustering,Keras,Cypress,Microcontroller,NLTK,Nanode,python,System Modelling,Labview,Embedded Operating Systems,Algorithms,Cinder,similarity analysis,database management,machine learning,Operating Systems,Bibtex,data analytics"
"Java,Scala,Agile,Scrum,DART,OOP,Go,UML"
"EAI,XML,redex,RDFS,FOAF,buck,Fresco,conceal,RDF,OWL-S,SKOS,ETL"
"3D modeling and animation,HTTP,Gnome,KDE,Kali-Linux,.NET,RISC,3D computer graphics,Procedural generation of scenes,3D data visualization,LINUX,Android,Debian"
"FOAF,SOA,SPARQL,NoSQL,RDFS,Analysis of file system variations,Adaptation of existing file systems,System Modelling,XML,MOM,OWL-S,EII,RSS,SKOS,RDF+"
"buck,makeitopen,Business Analysis,Software Engineering,Program Management,KDE,Make,GNU,Integration,Shimmer,Debian,Leadership,Bibtex,PathPicker,Agile Methodologies,Ubuntu,Product Management,Enterprise Software,infer,CRM"
"Dropbox,NoSQL,Cloud Computing,.NET,Cryptocurrency,GraphQL,SQL,OpenStack,Internet of THings"
"buck,makeitopen,Fresco,conceal,Agile,React Native,redex,Software Forge,Perl,Stetho,PathPicker,rebound"
"File system utilities,Cloud Computing,Pinguino,Analysis of file system variations,AJAX"
"SAP CRM,Flash,Integration,Resource Management,Enterprise Software,CRM,Flume,ANT,AMBARI,Nutch,Virtual Reality,AWS,BigData,Leadership,DIGITAL OCEAN,Business Analysis,Knowledge Management,Django,VR,Product Development,Program Management,HIVE,Kafka,MeanStack,Agile Methodologies,HBASE"
"Windows,KDE,Make,Ubuntu,OpenSUSE,FUSE,Kali-Linux,LINUX,infer"
"JavaScript,NodeJS,flask,Microcontroller,ReactJs,System Modelling,Arduino,HTML5,Microprocessor,Pinguino,Transistors,Web Semantics"
"Web2.0,Virtualisation,IOT,Network Security,Mobility,Assembly Level Language,RISC,IPV6,3D computer graphics,App Inventor,IPV4,3D data visualization,MIPS,HTTP,Android Studio,3D modeling and animation,Internet of THings"
"Windows,KDE,Kali-Linux,Android,Debian,Android Studio"
"Neural Networks,classification,database management,python,Torch,Natural language Processing,Labview,Algorithms,data analytics,visualisation,Data mining,Chromium,Artificial Intelligence"
"Adaptation of existing file systems,File system utilities,Gnome,Windows,Agile,Virtual Reality,Nvidia,Software Forge,VIM,OpenSUSE,FUSE,LINUX,Analysis of file system variations,Debian"
"Zookeeper,Neural Networks,classification,EII,Tensorflow,Kafka,EAI,NLP,3D modeling and animation,statistics,Nutch,BigData,Lens,3D computer graphics,Dropbox,NLTK,FOAF,clustering,Tomcat,GraphQL,similarity analysis,database management,Torch,MapReduce,machine learning,ANT,Data mining,RSS,Artificial Intelligence,Cassandra"
"Software Configuration Management,Java,Agile,Requirements Analysis,Fuchsia,Integration,Resource Management,Perl,Stetho,PathPicker,CRM,makeitopen,React Native,Scrum,Fresco,Leadership,infer,C,Product Development,rebound,redex,C++,automation,Software Engineering,Program Management,conceal,Enterprise Software,OOP,Agile Methodologies"
"buck,GIT,makeitopen,React Native,Microcontroller,SaaS,Shimmer,Cypress,Stetho,Bibtex,Microprocessor,infer,bolts-android"
"GNU,Hadoop,Flume,Impala,AWS,Lens,DIGITAL OCEAN,Spark,FOAF,GIT,Gnome,Tomcat,Ubuntu,Bibtex,SKOS,SPARQL,conceal,Zookeeper,MapReduce,HIVE,MOM,OWL-S,HBASE"
"makeitopen,Zookeeper,classification,Hadoop,Shimmer,PathPicker,Tensorflow,Kafka,clustering,NLP,statistics,Nutch,Keras,AWS,Lens,Natural language Processing,NLTK,redex,R,Algorithms,buck,conceal,Torch,HIVE,machine learning,Data mining,HBASE,Chromium,data analytics"
"GIT,SAP CRM,Product Development,Software Engineering,Requirements Analysis,Integration,Resource Management,Enterprise Software,Bibtex,Agile Methodologies,Android Studio,Business Analysis,CRM"
"3D modeling and animation,GIT,MongoDB,VR,Procedural generation of scenes,3D data visualization,Bibtex,OpenStack,Swift"
"Kali-Linux,Nano,ReactJs,Information Design,3D modeling and animation,flask,KDE,Interfacing with Cloud APIs,OpenSUSE,HTML,Procedural generation of scenes,AngularJS,Ubuntu,Web Semantics,Gnome,Windows,Knowledge Management,Angular2,3D data visualization,Database-Basked Web Sites,Cloud Computing,MeanStack"
"Kali-Linux,Nano,GNU,Make,Flash,Emacs,Information Design,Android,NodeJS,flask,HTML,AngularJS,Android Studio,Web Semantics,XML,JavaScript,Gnome,Windows,OWL-S,AJAX,FUSE,Angular2,HTML5,RDF+,SPARQL,Database-Basked Web Sites,VIM,LINUX"
"Leadership,Product Development,Software Engineering,Program Management,Requirements Analysis,Integration,SDLC,Business Intelligence,Enterprise Software,Agile Methodologies,Product Management,CRM"
"EAI,FOAF,RDFS,Adaptation of existing file systems,IOT,XML,Procedural generation of scenes,MOM,OWL-S,EII,Bibtex,Analysis of file system variations,ETL,RDF+"
"Web2.0,Virtualisation,.NET,HTTP,Mobility,python,Socket Programming,Assembly Level Language,machine learning,Wireless,R,Algorithms,IPV4,Tensorflow"
"NoSQL,.NET,Hadoop,MIPS,Web2.0,Wireless,AMBARI,AWS,Lens,DIGITAL OCEAN,Dropbox,Spark,VoIP,Tomcat,System Modelling,Embedded Operating Systems,GraphQL,3D data visualization,Security,Impala,Mobility,MapReduce,Kafka,ANT,SQL,HBASE,ARM,Operating Systems,Cassandra"
"buck,makeitopen,CRM,Scala,redex,Fuchsia,Scrum,Stetho,PathPicker,Agile Methodologies,OOP,Enterprise Software,Software Configuration Management,bolts-android"
"JavaScript,Perl,Information Design,3D modeling and animation,NodeJS,Scrum,Interfacing with Cloud APIs,3D computer graphics,Procedural generation of scenes,AngularJS,Web Semantics,ReactJs,HTML,Knowledge Management,Software Forge,C++,Angular2,HTML5,3D data visualization,DART,CSS,Database-Basked Web Sites,MeanStack"
"C,Java,Scrum,Software Forge,automation,Cryptocurrency,Stetho,Bibtex,PathPicker,DBaaS,Go,IaaS,DART,infer,bolts-android"
"statistics,Keras,Selenium,System Modelling,machine learning,Embedded Operating Systems,Artificial Intelligence,visualisation,Data mining,Go,Tensorflow,data analytics"
"Adaptation of existing file systems,Scrum,File system utilities,Scala,Fuchsia,Shimmer,Software Configuration Management,Software Forge,C++,automation,OOP,Agile,Go,Java,DART,UML"
"SOA,XML,EAI,SPARQL,NoSQL,RDFS,Analysis of file system variations,Adaptation of existing file systems,Scala,Software Forge,DART,RDF,MOM,SQL,EII,SKOS,Software Configuration Management,ETL"
"SOA,EAI,SPARQL,RDFS,FOAF,MOM,OWL-S,EII,RDF+,RSS"
"Virtualisation,React Native,.NET,Shimmer,Stetho,IPV4,IPV6,MIPS,Web2.0,makeitopen,Socket Programming,IOT,Wireless,infer,CISC,Internet of THings,Assembly Level Language,rebound,redex,RISC,Security,buck,LAN,Mobility,VoIP,ARM,Operating Systems,bolts-android"
"Virtualisation,Network Security,Assembly Level Language,Stetho,PathPicker,IPV6,HTTP,3D modeling and animation,React Native,Fresco,3D computer graphics,infer,CISC,Internet of THings,redex,RISC,Embedded Operating Systems,Bibtex,Processor design,LAN,conceal,MIPS,Socket Programming,bolts-android"
"NLP,statistics,AR,classification,Keras,python,SaaS,Virtual Reality,database management,Selenium,Nova,Cryptocurrency,Labview,Swift,R,Nvidia,Tensorflow,IaaS,Chromium,Paas,data analytics"
"buck,C,makeitopen,Java,infer,System Modelling,rebound,Software Configuration Management,Software Forge,redex,Perl,Stetho,OOP,UML,Swift,React Native,bolts-android"
"VR,AR,Virtual Reality,Android,Nvidia"
"SPARQL,Nova,Cryptocurrency,DBaaS,OpenStack,Cinder,IaaS,SKOS"
"Virtualisation,Flash,Nova,Assembly Level Language,DBaaS,IPV6,MIPS,NodeJS,flask,Socket Programming,IOT,Interfacing with Cloud APIs,AngularJS,Swift,CISC,Paas,ReactJs,Knowledge Management,.NET,AJAX,Angular2,Cinder,Security,Processor design,LAN,Mobility,MeanStack,VoIP"
"visualisation,Scala,Fresco,DART,Stetho,DBaaS,UML,makeitopen,React Native,SaaS,IaaS,Paas,GIT,redex,C++,Labview,statistics,Cinder,buck,conceal,Cryptocurrency,bolts-android"
"Leadership,Product Development,Requirements Analysis,x86,Arduino,Knowledge Management,Cypress,Microcontroller,MeanStack,Business Intelligence,Raspberry Pi,Agile Methodologies,Transistors,Cloud Computing,Business Analysis,Nanode"
"classification,DBaaS,OpenStack,UML,clustering,3D modeling and animation,statistics,NoSQL,SaaS,3D computer graphics,Natural language Processing,NLTK,Paas,C++,Labview,R,Cinder,Tensorflow,MongoDB,Torch,Cryptocurrency,Data mining,Chromium,Artificial Intelligence,Cassandra"
"Dropbox,C,Software Configuration Management,Java,NoSQL,Scrum,Fuchsia,DART,GIT,App Inventor,SQL,Bibtex,Cassandra,GraphQL"
"Adaptation of existing file systems,App Inventor,OpenStack,Android,Analysis of file system variations,Android Studio"
"Neural Networks,Nano,Make,Selenium,visualisation,statistics,Keras,OpenSUSE,Windows,Procedural generation of scenes,Natural language Processing,Debian,python,Labview,FUSE,Algorithms,similarity analysis,database management,NLTK,data analytics,Data mining,Artificial Intelligence"
"FOAF,Assembly Level Language,Nova,MIPS,ETL,Web2.0,RDFS,Socket Programming,IOT,SaaS,HTML,Swift,VoIP,XML,.NET,Cinder,Security,RDF+,Cryptocurrency,MOM,OWL-S,RSS"
"buck,x86,Arduino,Cypress,Fresco,Shimmer,Microprocessor,IaaS,Transistors,3D data visualization,bolts-android"
"Adaptation of existing file systems,Scrum,HTTP,Scala,Agile,Assembly Level Language,Fuchsia,Nova,Perl,DBaaS,IPV6,UML,Analysis of file system variations,Web2.0,3D modeling and animation,Software Configuration Management,SaaS,OpenStack,3D computer graphics,Procedural generation of scenes,IaaS,Swift,VoIP,Paas,.NET,Software Forge,C++,3D data visualization"
"ANT,Nutch,Tomcat,Embedded Operating Systems,AWS,Zookeeper,System Modelling,BigData,HIVE,Kafka,Lens,MapReduce,App Inventor,HBASE"
"Java,Agile,Software Forge,C++,DART,OOP,UML,Android,Android Studio"
"clustering,NLP,statistics,LINUX,Nano,classification,database management,python,Make,GNU,VIM,Labview,visualisation,Natural language Processing,Keras,NLTK,Artificial Intelligence"
"makeitopen,C,redex,Scala,Agile,Shimmer,Software Configuration Management,C++,DART,Stetho,PathPicker,UML,Embedded Operating Systems,Operating Systems"
"Web2.0,Virtualisation,HTTP,Nano,Socket Programming,Assembly Level Language,RISC,VIM,OpenSUSE,Ubuntu,AJAX,CISC,IPV6,MIPS,Network Security,Make,ARM,VoIP,Internet of THings"
"clustering,Torch,NodeJS,Knowledge Management,Cloud Computing,ReactJs,Selenium,Interfacing with Cloud APIs,MeanStack,Data mining,Algorithms,Natural language Processing,Tensorflow,Artificial Intelligence"
"Adaptation of existing file systems,Virtualisation,Microcontroller,Network Security,Arduino,Pinguino,Assembly Level Language,SAP CRM,IPV4,Microprocessor,IPV6,Analysis of file system variations,Product Development,Cypress,IOT,Wireless,CRM,CISC,Requirements Analysis,Nanode,Windows,x86,Transistors,Processor design,VoIP,ARM"
"GIT,Bibtex"
"XML,EAI,File system utilities,SPARQL,RDFS,FOAF,Adaptation of existing file systems,RDF,Bibtex,MOM,OWL-S,EII,RSS,SKOS,ETL,RDF+"
"Adaptation of existing file systems,File system utilities"
"Adaptation of existing file systems,Nano,GNU,Hadoop,Emacs,Kafka,Flume,Lens,AMBARI,Nutch,AWS,BigData,OpenSUSE,Ubuntu,Debian,Gnome,Tomcat,FUSE,Zookeeper,MapReduce,VIM,ANT,LINUX"
"buck,GIT,conceal,rebound,redex,System Modelling,Shimmer,VR,Embedded Operating Systems,Bibtex,PathPicker,React Native,bolts-android"
"Arduino,Cypress,Pinguino,System Modelling,Raspberry Pi,App Inventor,Procedural generation of scenes,Embedded Operating Systems,Transistors,Android Studio"
"Flume,Microcontroller,x86,Hadoop,Arduino,Virtual Reality,Zookeeper,AWS,MapReduce,HIVE,Kafka,ANT,Raspberry Pi,Nvidia,Pinguino,Transistors,Impala"
"XML,EAI,SPARQL,FOAF,SOA,RDF,OWL-S,EII,SKOS,ETL,RDF+"
"Paas,File system utilities,Analysis of file system variations,SaaS,Spark,Cinder,OpenStack,IaaS,Swift,Android,Android Studio"
"Fresco,Android,App Inventor,React Native"
"x86,Arduino,OpenSUSE,Raspberry Pi,Kali-Linux,Cinder,Transistors"
"NLP,similarity analysis,statistics,Neural Networks,classification,database management,python,Selenium,Torch,System Modelling,Labview,R,Algorithms,data analytics,visualisation,Tensorflow,Artificial Intelligence"
"JQuery,JavaScript,Microcontroller,x86,NodeJS,Arduino,Database-Basked Web Sites,Cloud Computing,Flash,Interfacing with Cloud APIs,Django,MeanStack,AJAX,Raspberry Pi,Angular2,AngularJS,Transistors,Web Semantics,CSS"
"Adaptation of existing file systems,Paas,3D modeling and animation,File system utilities,Nutch,Impala,MapReduce,HIVE,Lens,ANT,Procedural generation of scenes,3D data visualization,DIGITAL OCEAN,Cinder,IaaS,Swift,HBASE,Spark"
"Software Configuration Management,Scala,AWS,DBaaS,UML,OpenStack,ANT,AMBARI,KDE,Scrum,SaaS,IaaS,Swift,C,Gnome,Windows,C++,automation,Impala,Zookeeper,MapReduce,HIVE,Cryptocurrency,LINUX,Go"
"Nano,Make,Ubuntu,OpenSUSE,Raspberry Pi,Kali-Linux,LINUX,Debian,Android Studio"
"XML,Flume,SPARQL,NoSQL,MongoDB,RSS,3D computer graphics,GraphQL,RDF+,SQL,EII,App Inventor,Procedural generation of scenes,Cassandra,SKOS,Android Studio"
"Microprocessor,Arduino,ReactJs,Integration,Resource Management,Information Design,Android,NodeJS,flask,Raspberry Pi,AngularJS,Web Semantics,Pinguino,Knowledge Management,Django,AJAX,Angular2,HTML5,CSS,Android Studio,Software Engineering,Database-Basked Web Sites,SDLC,App Inventor"
"NLP,statistics,Neural Networks,Keras,python,Cypress,Torch,System Modelling,machine learning,Labview,R,Algorithms,Artificial Intelligence,Nvidia,Tensorflow,database management,NLTK,data analytics,Nanode"
"clustering,similarity analysis,statistics,HTTP,Keras,python,System Modelling,Torch,Selenium,R,Operating Systems,visualisation,Tensorflow,Embedded Operating Systems,Chromium,NLTK,data analytics"
"JQuery,JavaScript,File system utilities,Information Design,Nano,GNU,Windows,KDE,Cloud Computing,Ubuntu,VIM,OpenSUSE,flask,FUSE,Emacs,Kali-Linux,LINUX,ReactJs,Analysis of file system variations,Debian,CISC"
"3D computer graphics,Paas,Virtualisation,3D data visualization,Nanode,Arduino,Cypress,Pinguino,SaaS,3D modeling and animation,Wireless,Raspberry Pi,Procedural generation of scenes,VoIP,Microprocessor,OpenStack,Cryptocurrency,Swift,ARM,CISC"
"Adaptation of existing file systems,Virtualisation,.NET,IPV4,IPV6,MIPS,Analysis of file system variations,AMBARI,Nutch,Socket Programming,IOT,Lens,Procedural generation of scenes,DIGITAL OCEAN,Spark,VoIP,GIT,RISC,3D data visualization,Security,LAN,CISC,HBASE,ARM"
"Flume,Software Configuration Management,AMBARI,Tomcat,Embedded Operating Systems,Zookeeper,BigData,HIVE,Hadoop,Lens,MapReduce,DIGITAL OCEAN,Spark,Kafka,Impala"
"3D modeling and animation,Software Configuration Management,Software Forge,C,Perl,3D computer graphics,GraphQL,UML"
"AMBARI,Nutch,KDE,AWS,Hadoop,VIM,BigData,Lens,FUSE,Kali-Linux,DIGITAL OCEAN,HBASE,Kafka,Impala,Spark"
"clustering,NLP,Keras,Neural Networks,classification,database management,python,Torch,machine learning,Data mining,R,Algorithms,MOM,Natural language Processing,Tensorflow,RSS,Chromium,NLTK,ETL,OWL-S"
"buck,redex,React Native,rebound,Torch,Fresco,Shimmer,Stetho,Bibtex,PathPicker,visualisation,Data mining,Algorithms,infer,bolts-android"
"Microcontroller,Java,Agile,Pinguino,Fuchsia,Microprocessor,UML,makeitopen,Cypress,Scrum,Fresco,BigData,Raspberry Pi,x86,rebound,redex,Software Forge,AR,Transistors,Impala,buck,conceal,Zookeeper,OOP,Virtual Reality,bolts-android"
"Network Security,.NET,IPV4,Information Design,IPV6,HTTP,JQuery,NodeJS,Socket Programming,IOT,Wireless,AngularJS,CISC,Internet of THings,Web2.0,Django,AJAX,Security,CSS,Mobility,MeanStack,ARM"
"JQuery,GIT,Information Design,flask,Knowledge Management,Flash,Interfacing with Cloud APIs,MeanStack,HTML,Bibtex,AngularJS,Angular2,Web Semantics"
"conceal,React Native,Fresco,Stetho,PathPicker,infer,bolts-android"
"Adaptation of existing file systems,Analysis of file system variations"
"Cinder,3D modeling and animation,Procedural generation of scenes,SaaS,Nova"
"NLP,similarity analysis,SAP CRM,Business Analysis,classification,Program Management,Requirements Analysis,Selenium,Resource Management,Torch,GIT,R,Algorithms,Data mining,Tensorflow,database management,Chromium,statistics,Artificial Intelligence,CRM"
"Gnome,Nano,Windows,VIM,OpenSUSE,FUSE,Emacs,LINUX,Debian"
"Neural Networks,classification,Selenium,visualisation,Bibtex,Android,SOA,NLP,Natural language Processing,Android Studio,NLTK,FOAF,GIT,python,R,Algorithms,RDF+,database management,Torch,machine learning,RDF,MOM,OWL-S,App Inventor,Chromium,Artificial Intelligence"
"Virtualisation,Software Configuration Management,HTTP,Assembly Level Language,Fuchsia,Perl,UML,Network Security,Socket Programming,Scrum,Wireless,3D computer graphics,Procedural generation of scenes,CISC,Internet of THings,C,.NET,C++,automation,3D data visualization,Processor design,LAN,Mobility,MIPS,OOP,Go"
"Virtualisation,IOT,Java,Scala,Agile,.NET,Perl,IPV4,Network Security,Microcontroller,Wireless,VoIP,Nanode,Software Forge,RISC,automation,Security,Processor design,LAN,OOP,Go,ARM,Operating Systems"
"Scala,Make,Integration,Emacs,Kali-Linux,OpenStack,KDE,GNU,SaaS,Leadership,Ubuntu,IaaS,Debian,Paas,Windows,VR,AR,Nvidia,VIM,Cryptocurrency,Agile Methodologies,LINUX,Product Management"
"EAI,Paas,DBaaS,Cloud Computing,Cryptocurrency,AJAX,RDF,MOM,OWL-S,IaaS,RSS,SKOS,RDF+"
"Microcontroller,x86,Arduino,Pinguino,Raspberry Pi,RDF,Transistors,RDF+"
"statistics,Algorithms,NLTK,database management"
"clustering,NLP,similarity analysis,GIT,File system utilities,Neural Networks,classification,Keras,python,Torch,Labview,R,Bibtex,Natural language Processing,Analysis of file system variations,data analytics"
"Scrum,Java,Software Configuration Management,C++,Perl,OOP,Go,UML,DART,Operating Systems"
"Microcontroller,x86"
"HTML,Lens,ReactJs,Nutch,NodeJS,flask,Database-Basked Web Sites,Flash,Hadoop,MapReduce,Kafka,ANT,AJAX,AR,Angular2,MeanStack,Information Design,AngularJS,Django,Interfacing with Cloud APIs"
"SAP CRM,Software Engineering,Nano,GNU,Windows,KDE,Integration,VIM,Lens,MapReduce,FUSE,Emacs,SDLC,Debian,Product Development"
"NoSQL,MongoDB,OpenSUSE,FUSE,Emacs,Ubuntu,Dropbox,Android"
"System Modelling,Operating Systems"
"visualisation,Pinguino,Selenium,Microprocessor,Tensorflow,OpenStack,Android,Neural Networks,clustering,NLP,Microcontroller,Natural language Processing,Swift,NLTK,Paas,x86,python,R,App Inventor,Cinder,similarity analysis,database management,Torch,machine learning,Data mining,Chromium"
"JQuery,flask,VR,AR,Interfacing with Cloud APIs"
"Virtualisation,HTTP,Assembly Level Language,Integration,Business Intelligence,Enterprise Software,IPV4,CRM,Web2.0,Socket Programming,3D computer graphics,Wireless,Leadership,Procedural generation of scenes,Internet of THings,Requirements Analysis,Product Development,System Modelling,Embedded Operating Systems,LAN,Software Engineering,Program Management,Agile Methodologies,Product Management,Operating Systems"
"Web2.0,Network Security,HTTP,x86,SaaS,RISC,Cryptocurrency,Raspberry Pi,Bibtex,VoIP,DBaaS,OpenStack,Cinder,Security,Transistors,Swift,CISC"
"FOAF,SOA,3D modeling and animation,SPARQL,RDFS,System Modelling,HIVE,MOM,XML,3D computer graphics,Bibtex,3D data visualization,RDF+,SKOS,RSS"
Cassandra
"NoSQL,System Modelling,Embedded Operating Systems,App Inventor,SQL,Bibtex,OpenStack,Android,Cassandra"
"JQuery,GNU,3D modeling and animation,AR,3D data visualization,NodeJS,Windows,Virtual Reality,Flash,Interfacing with Cloud APIs,AJAX,HTML,Procedural generation of scenes,HTML5,AngularJS,Nvidia,Android,Web Semantics,CSS,Android Studio"
"EAI,FOAF,x86,Cypress,System Modelling,SDLC,Business Intelligence,Raspberry Pi,Microprocessor,Embedded Operating Systems,RDF+"
"buck,LAN,HTTP,Mobility,Processor design,Assembly Level Language,Fresco,RISC,Shimmer,Stetho,AR,VoIP,Nvidia,MIPS,Internet of THings,infer,CISC,bolts-android"
"clustering,similarity analysis,Neural Networks,classification,Torch,System Modelling,Algorithms,Natural language Processing,visualisation,Data mining,Chromium,Operating Systems"
"buck,Product Development,Program Management,conceal,rebound,redex,Fresco,Integration,Shimmer,Leadership,PathPicker,Embedded Operating Systems,React Native,Operating Systems"
"SAP CRM,Nanode,Program Management,Microcontroller,Resource Management,Business Intelligence,SDLC,Business Analysis"
"Adaptation of existing file systems,Procedural generation of scenes,Android,Analysis of file system variations,3D data visualization"
"Adaptation of existing file systems,Torch,Neural Networks,classification,Integration,Business Intelligence,visualisation,Tensorflow,Analysis of file system variations,Business Analysis,clustering,NLP,statistics,Raspberry Pi,CRM,Product Development,python,Labview,R,Algorithms,Transistors,similarity analysis,Software Engineering,Program Management,Nanode,database management,machine learning,Agile Methodologies,Chromium,Artificial Intelligence"
"Paas,GIT,DBaaS,Software Engineering,Embedded Operating Systems,Requirements Analysis,System Modelling,Integration,Resource Management,SAP CRM,Business Intelligence,Enterprise Software,Bibtex,Nova,SDLC,Product Management,IaaS,Operating Systems"
"Adaptation of existing file systems,buck,C,Software Configuration Management,File system utilities,conceal,Fuchsia,rebound,redex,Fresco,Go,UML,Analysis of file system variations"
"GIT,Nano,GNU,Windows,Make,Ubuntu,OpenSUSE,Bibtex,Kali-Linux,LINUX"
"EAI,classification,Selenium,Hadoop,clustering,statistics,AMBARI,Nutch,AWS,BigData,Lens,Spark,FOAF,SOA,Tomcat,python,RDF,Algorithms,Impala,RDF+,similarity analysis,SPARQL,Zookeeper,MapReduce,HIVE,machine learning,ANT,HBASE,Chromium,data analytics,RSS"
"NLP,NoSQL,database management,MongoDB,Torch,SaaS,Nova,Cryptocurrency,Swift,App Inventor,visualisation,Cinder,Android,Chromium,Cassandra"
"Flash,Emacs,Information Design,JQuery,3D modeling and animation,NodeJS,KDE,Interfacing with Cloud APIs,HTML,AngularJS,Web Semantics,ReactJs,Gnome,Windows,Knowledge Management,System Modelling,Django,AJAX,Embedded Operating Systems,Angular2,3D data visualization,JavaScript,CSS,VIM,LINUX"
"3D data visualization,SaaS,Nova,AR,Procedural generation of scenes,DBaaS,Nvidia,Cinder,Swift"
"Torch,classification,Requirements Analysis,Selenium,Hadoop,Enterprise Software,visualisation,CRM,Flume,NLP,3D modeling and animation,statistics,AMBARI,Nutch,AWS,BigData,Lens,Leadership,Procedural generation of scenes,DIGITAL OCEAN,NLTK,Business Analysis,Tomcat,python,Integration,Labview,Algorithms,3D data visualization,Product Development,Program Management,Zookeeper,MapReduce,HIVE,Kafka,ANT,Agile Methodologies,HBASE,Chromium,Artificial Intelligence"
"EAI,XML,MOM,NoSQL,conceal,MongoDB,redex,Fresco,AR,GraphQL,RDF+,Nvidia,RDF,Cassandra,SKOS,infer,ETL,bolts-android"
"Web2.0,LAN,.NET,Mobility,Socket Programming,IOT,RISC,Virtualisation,Wireless,Labview,AJAX,CISC,Processor design,CSS,IPV6,database management,JavaScript,ARM,VoIP,HTML5"
"ReactJs,HTML5"
File system utilities
"C,Scala,Agile,Scrum,Software Forge,C++,automation,Go,Perl"
"Impala,Kali-Linux,NodeJS,Knowledge Management,Cloud Computing,JavaScript,Hadoop,Interfacing with Cloud APIs,MapReduce,Lens,AJAX,HTML,Angular2,Information Design,Spark,Kafka,Web Semantics,CSS,Nutch"
"SAP CRM,Software Engineering,Program Management,Requirements Analysis,Integration,Resource Management,Leadership,SDLC,Product Management"
"buck,makeitopen,conceal,rebound,Shimmer,Stetho"
"JQuery,buck,rebound,Nano,GNU,conceal,Cloud Computing,redex,AJAX,Stetho,Angular2,PathPicker,AngularJS,App Inventor,Android Studio,Web Semantics,infer,React Native"
"JQuery,XML,Java,SPARQL,flask,Agile,Scrum,Fuchsia,C++,automation,MeanStack,AJAX,MOM,OWL-S,Perl,ETL,RSS"
"Microcontroller,x86,JavaScript,Interfacing with Cloud APIs,Raspberry Pi,VR,AR,Nvidia,Transistors,Nanode"
"NoSQL,Bibtex,OOP,SQL,Dropbox,Cassandra"
"Software Forge,Adaptation of existing file systems,Software Configuration Management,Java,Scala,KDE,Scrum,Fuchsia,VIM,VR,Agile,OOP,LINUX,Go,File system utilities,DART,Perl"
"Paas,Gnome,Nano,Windows,KDE,Make,SaaS,Nova,OpenSUSE,FUSE,Emacs,Kali-Linux,Cinder,Cassandra"
"Gnome,Software Engineering,Requirements Analysis,Integration,FUSE,Debian"
"Web2.0,HTTP,Network Security,Mobility,MongoDB,SaaS,LAN,Nova,Cryptocurrency,Embedded Operating Systems,DBaaS,Cinder,IaaS,Security,Operating Systems,Internet of THings"
"Flume,AMBARI,AWS,BigData,HIVE,Hadoop,DIGITAL OCEAN,HBASE,Kafka"
"3D computer graphics,DBaaS,3D data visualization,Product Development,Software Engineering,Requirements Analysis,SaaS,Business Intelligence,Leadership,Bibtex,SDLC,Enterprise Software,Business Analysis"
"Web2.0,LAN,HTTP,Socket Programming,Assembly Level Language,RISC,Virtualisation,Wireless,IPV4,IPV6,Security,ARM,Processor design,Internet of THings"
"conceal,redex,Fresco,PathPicker,bolts-android"
"Gnome,Nano,Make,Ubuntu,OpenSUSE,GraphQL,SQL"
"Virtualisation,Network Security,NoSQL,Processor design,Virtual Reality,SQL,SaaS,RISC,Nova,Cryptocurrency,VR,CISC,IPV4,DBaaS,Nvidia,Dropbox,Security,ARM,VoIP,IaaS"
"NoSQL,Arduino,ReactJs,Information Design,OpenStack,Web Semantics,JQuery,NodeJS,Virtual Reality,Interfacing with Cloud APIs,HTML,AngularJS,Dropbox,IaaS,Swift,x86,Django,VR,Angular2,HTML5,Cinder,Nanode,MongoDB,Cloud Computing,MeanStack,SQL"
"GIT,AMBARI,Nutch,Zookeeper,MapReduce,HIVE,Kafka,Lens,HBASE,Impala,Spark"
"Bibtex,GIT,App Inventor"
"Swift,File system utilities"
"Neural Networks,Arduino,Pinguino,Selenium,Android,ETL,Nanode,SOA,3D modeling and animation,Keras,Cypress,Raspberry Pi,3D computer graphics,XML,EAI,x86,python,RDF,3D data visualization,SKOS,Android Studio,MOM,OWL-S,Chromium"
"Web2.0,C,GIT,File system utilities,Fuchsia,Scrum,Software Forge,LAN,C++,Perl,OOP,automation,MIPS,Go,Network Security,Security,DART"
"OpenStack,IaaS,Nova,Cinder"
"AMBARI,Nutch,Tomcat,AWS,Zookeeper,Hadoop,BigData,HIVE,MapReduce,Lens,DIGITAL OCEAN,Kafka,Impala"
"3D modeling and animation,3D computer graphics,Scala,Windows,KDE,Make,GNU,VIM,Leadership,Emacs,Kali-Linux,LINUX,Procedural generation of scenes"
"Web2.0,.NET,HTTP,Nanode,Mobility,Cypress,Microcontroller,System Modelling,RISC,Assembly Level Language,Bibtex,Processor design,Network Security,Security,ARM,Operating Systems,Internet of THings"
"Adaptation of existing file systems,Bibtex,GIT,File system utilities"
"SOA,EAI,GIT,SPARQL,RDFS,RSS"
"Flash,EII,SOA,NodeJS,HTML,Web Semantics,ReactJs,Knowledge Management,OWL-S,Django,AJAX,RDF,GraphQL,HTML5,JavaScript,RDF+,SPARQL,MongoDB,Cloud Computing,Database-Basked Web Sites,Angular2,RSS"
Android Studio
"Network Security,classification,.NET,Selenium,CISC,IPV4,visualisation,HTTP,clustering,statistics,Socket Programming,IOT,NLTK,VoIP,Internet of THings,Assembly Level Language,python,RISC,Labview,Security,machine learning,ANT,Artificial Intelligence,Data mining,Chromium,ARM,data analytics"
"Gnome,LINUX,Windows,Nvidia,OpenSUSE,AR,Ubuntu,Debian"
"Virtualisation,HTTP,Neural Networks,.NET,Selenium,Perl,IPV6,Tensorflow,3D modeling and animation,statistics,Wireless,Procedural generation of scenes,Natural language Processing,Dropbox,NLTK,VoIP,Internet of THings,RISC,R,GraphQL,3D data visualization,Processor design,similarity analysis,LAN,database management,Torch,machine learning,SQL,MIPS,ARM,data analytics,Cassandra"
"C,GIT,x86,Arduino,Agile,Cypress,Software Configuration Management,Software Forge,C++,automation,Microcontroller,Raspberry Pi,Go,Transistors,Operating Systems"
"Virtualisation,Network Security,.NET,Hadoop,IPV6,Flume,AMBARI,Nutch,Socket Programming,AWS,Lens,DIGITAL OCEAN,Spark,CISC,Assembly Level Language,Impala,LAN,Mobility,Zookeeper,MapReduce,HIVE,ANT,VoIP,ARM"
"Adaptation of existing file systems,File system utilities"
"clustering,NLP,Torch,machine learning,Algorithms,Artificial Intelligence,Data mining,Tensorflow,data analytics"
"Cryptocurrency,OpenStack,IaaS,DBaaS"
"rebound,redex,Fresco,Stetho,PathPicker,Android,bolts-android,Analysis of file system variations,infer,React Native"
"FOAF,AngularJS,MongoDB,HTML5,JavaScript,Interfacing with Cloud APIs,App Inventor,CSS,MOM,SQL,EII,Dropbox,Android,Android Studio,Web Semantics,Cloud Computing,ETL,Cassandra"
"Java,NoSQL,Scala,Agile,Emacs,Kali-Linux,UML,Android,Nano,Ubuntu,Dropbox,Debian,LINUX,Software Forge,automation,GraphQL,Android Studio,Program Management,VIM,OOP,SQL,Go,App Inventor"
"3D modeling and animation,Procedural generation of scenes,React Native"
"FOAF,RDF,RSS,ETL,OWL-S"
"Embedded Operating Systems,System Modelling"
"3D modeling and animation,GIT,SaaS,Nova,Embedded Operating Systems,Bibtex,3D data visualization,Cinder,OpenStack,App Inventor,Operating Systems"
"NoSQL,MongoDB,VR,GraphQL,Dropbox,Cassandra"
"FOAF,SOA,EAI,SPARQL,RDFS,Windows,MongoDB,Kali-Linux,LINUX,SQL,XML,OpenSUSE,MOM,OWL-S,EII,Emacs"
"Adaptation of existing file systems,File system utilities,Bibtex,Android,Analysis of file system variations,Android Studio"
"Android,App Inventor,Android Studio"
"Microcontroller,Raspberry Pi,Nanode,Microprocessor"
"MOM,NoSQL,GNU,Requirements Analysis,Resource Management,Business Intelligence,Emacs,ETL,EAI,Nano,KDE,Debian,FOAF,SOA,GIT,Gnome,Windows,OWL-S,FUSE,GraphQL,RDF+,MongoDB,VIM,RDF,Agile Methodologies,SQL,Product Management,RSS"
"buck,makeitopen,Arduino,Cypress,Shimmer,Stetho,App Inventor,PathPicker,Android,Transistors"
"Pinguino,Nutch,Arduino,Microcontroller,Zookeeper,AWS,BigData,HIVE,Kafka,Lens,Microprocessor,DIGITAL OCEAN,Spark,Transistors,Impala,x86"
"FOAF,SOA,File system utilities,SPARQL,RDFS,Analysis of file system variations,Adaptation of existing file systems,Software Configuration Management,Fresco,Perl,RDF,DART,MOM,EII,Java,RDF+,SKOS,ETL,RSS"
"JavaScript,Integration,Resource Management,BigData,Enterprise Software,Information Design,Product Development,JQuery,Nutch,Hadoop,NodeJS,flask,AWS,Interfacing with Cloud APIs,Leadership,DIGITAL OCEAN,Spark,Flume,Flash,Business Analysis,Tomcat,Django,AJAX,Angular2,HTML5,Impala,CSS,Program Management,Database-Basked Web Sites,Cloud Computing,Zookeeper,MapReduce,HIVE,MeanStack,SDLC,Product Management,HBASE"
"Flume,makeitopen,AMBARI,Fresco,conceal,AWS,rebound,Zookeeper,Hadoop,MapReduce,Stetho,BigData,ANT,Raspberry Pi,Shimmer,Microprocessor,Spark,redex,Impala,bolts-android"
"Adaptation of existing file systems,AMBARI,Tomcat,Zookeeper,BigData,Hadoop,ANT,MapReduce,Spark,Kafka,Impala"
"Virtualisation,Network Security,Assembly Level Language,Integration,Resource Management,Business Intelligence,DBaaS,Product Development,Web2.0,Virtual Reality,SaaS,Wireless,IaaS,Swift,Paas,.NET,Business Analysis,Windows,RISC,Cinder,LAN,Software Engineering,Program Management,VIM,Cryptocurrency"
"GraphQL,Procedural generation of scenes,3D data visualization,SQL,Dropbox,Cassandra"
"Adaptation of existing file systems,Java,JavaScript,Fuchsia,Shimmer,Stetho,UML,Android,Analysis of file system variations,React Native,Software Configuration Management,Fresco,infer,C,rebound,C++,Django,App Inventor,automation,File system utilities,MeanStack,Go"
"3D modeling and animation,makeitopen,conceal,React Native,redex,System Modelling,VR,3D computer graphics,PathPicker,3D data visualization,Android,Android Studio,rebound,Operating Systems,bolts-android"
"3D computer graphics,Arduino,Microcontroller,Microprocessor,Raspberry Pi,3D data visualization,Transistors,Nanode"
"Web2.0,LAN,Network Security,Mobility,Socket Programming,RISC,Wireless,Processor design,ARM,CISC,IPV4"
"Pinguino,Shimmer,PathPicker,Microprocessor,Android,3D computer graphics,makeitopen,React Native,Microcontroller,Raspberry Pi,Procedural generation of scenes,Dropbox,infer,x86,redex,App Inventor,Transistors,Android Studio,buck,conceal,SQL,GraphQL,Cassandra,Cypress,bolts-android"
"Gnome,Nano,Windows,KDE,Cloud Computing,OpenSUSE,LINUX,Android,Android Studio"
"Lens,AMBARI,Tomcat,NoSQL,LINUX,AWS,Make,DIGITAL OCEAN,Hadoop,MapReduce,HIVE,Kafka,ANT,Debian,Nano,SQL,Dropbox,HBASE,Impala,Spark,Gnome"
"Pinguino,3D data visualization,Arduino,Microcontroller,Raspberry Pi,Procedural generation of scenes,Microprocessor,x86"
"clustering,Torch,Neural Networks,NoSQL,Keras,MongoDB,database management,machine learning,SQL,R,App Inventor,visualisation,Data mining,Tensorflow,statistics,Cassandra"
"Gnome,Nano,GNU,Windows,KDE,Make,VIM,Kali-Linux,SKOS,Analysis of file system variations"
"Neural Networks,classification,Agile,Selenium,DART,Tensorflow,NLP,statistics,Keras,Natural language Processing,NLTK,python,Fuchsia,SQL,Software Forge,C++,Labview,R,GraphQL,Perl,similarity analysis,database management,Torch,machine learning,OOP,Data mining"
"FOAF,Shimmer,Stetho,PathPicker,EII,Tensorflow,ETL,EAI,makeitopen,React Native,Fresco,infer,XML,GIT,System Modelling,Embedded Operating Systems,SKOS,SPARQL,Operating Systems,MOM,OWL-S,RSS,Artificial Intelligence,bolts-android"
"Flume,C,Java,Scala,AMBARI,Fuchsia,Scrum,Software Forge,HIVE,Perl,Embedded Operating Systems,OOP,UML,HBASE,DART,Impala,Operating Systems"
"classification,Make,Selenium,Emacs,visualisation,R,NLP,statistics,Nano,Keras,KDE,Scrum,Ubuntu,NLTK,Gnome,Data mining,Labview,FUSE,Algorithms,database management,Debian,AR,Artificial Intelligence,LINUX,data analytics"
"Adaptation of existing file systems,System Modelling,Scala,Fuchsia,automation"
"Product Development,Flash,Business Analysis,NodeJS,Requirements Analysis,Integration,MeanStack,GIT,Leadership,Angular2,Agile Methodologies,Bibtex,Operating Systems,CRM"
"Flume,Tomcat,NoSQL,MongoDB,Zookeeper,AWS,Hadoop,Kafka,ANT,MapReduce,GraphQL,SQL,Bibtex,Dropbox,HBASE,Cassandra"
"LAN,Software Configuration Management,Java,Mobility,C,Knowledge Management,Assembly Level Language,Scala,RISC,automation,Android Studio,Interfacing with Cloud APIs,App Inventor,OOP,Android,MIPS,Security,Perl,ARM,Processor design,HTML5"
"GraphQL,NoSQL,App Inventor,Dropbox,Cassandra,RDF+"
"NLP,3D modeling and animation,python,machine learning,3D computer graphics,visualisation,Natural language Processing,data analytics,Android Studio"
"MongoDB,SQL,App Inventor,NoSQL,Cassandra"
"Virtualisation,Assembly Level Language,Network Security,Nanode,Mobility,IOT,.NET,Wireless,IPV4,Processor design,IPV6,Security,ARM,VoIP,Internet of THings"
"Business Analysis,Program Management,Resource Management,VIM,OpenSUSE,Embedded Operating Systems,SDLC,LINUX"
"clustering,GIT,Mobility,Socket Programming,Torch,Tensorflow,Bibtex,IPV6,Algorithms,Security,database management,Chromium,VoIP"
"Angular2,JQuery,ReactJs,NoSQL,flask,MongoDB,Database-Basked Web Sites,Interfacing with Cloud APIs,Django,MeanStack,AJAX,App Inventor,HTML5,AngularJS,SQL,Bibtex,Android,Knowledge Management,JavaScript,Cassandra"
"Flume,Nutch,Tomcat,MongoDB,DIGITAL OCEAN,AWS,BigData,HIVE,Hadoop,MapReduce,GraphQL,SQL,HBASE,Kafka"
"HTML,Nanode,RDFS,Cypress,Arduino,3D computer graphics,Procedural generation of scenes,CSS,3D data visualization,Transistors,Web Semantics,Cloud Computing,ETL,RSS"
"GIT,Bibtex"
"clustering,similarity analysis,GIT,Neural Networks,Data mining,Bibtex,Microprocessor,Natural language Processing,App Inventor,Chromium,NLTK,data analytics,Android Studio"
"OpenStack,IaaS,Swift,SaaS,Paas"
Bibtex
"Cypress,Gnome,KDE,Kali-Linux,Pinguino,Microprocessor,Debian,x86"
"Adaptation of existing file systems,Virtualisation,Network Security,.NET,Stetho,PathPicker,IPV6,HTTP,SOA,makeitopen,RDFS,IOT,Fresco,Wireless,Web2.0,infer,VoIP,FOAF,EAI,x86,Security,Processor design,RDF+,buck,SPARQL,MOM,OWL-S,MIPS"
"GIT,Virtual Reality,System Modelling,VR,AR,Android,Android Studio"
"Nano,GNU,Windows,Make,LINUX,VIM,OpenSUSE,Kali-Linux,Ubuntu,Debian"
"Cinder,App Inventor,Swift,Nova,SaaS"
"Arduino,Flash,Information Design,EII,ETL,NodeJS,flask,Cypress,Interfacing with Cloud APIs,Raspberry Pi,AngularJS,FOAF,JavaScript,x86,AJAX,RDF,Angular2,HTML5,Transistors,SKOS,Database-Basked Web Sites,Cloud Computing,RDFS,MOM,OWL-S,RSS"
"ANT,Flash,AMBARI,Nutch,Tomcat,NodeJS,flask,Zookeeper,BigData,HIVE,Django,Lens,AJAX,HTML,HTML5,DIGITAL OCEAN,ReactJs"
"GIT,Virtual Reality,SaaS,BigData,VR,DIGITAL OCEAN"
"SOA,RDFS,Virtual Reality,System Modelling,AR,Nvidia,RSS"
"Embedded Operating Systems,Procedural generation of scenes,3D computer graphics,3D data visualization"
"Paas,IaaS,OpenStack"
"Zookeeper,AMBARI,Nutch,Tomcat,Embedded Operating Systems,System Modelling,redex,AWS,BigData,Hadoop,MapReduce,Spark,Impala,Operating Systems,bolts-android"
"SOA,FOAF"
"EAI,Java,PathPicker,RDF+,Fresco,rebound,Data mining,SaaS,Nova,Perl,Cryptocurrency,Stetho,C++,DBaaS,UML,Cinder,DART,Swift,data analytics,OOP"
"Web2.0,File system utilities,IOT,RISC,App Inventor,IPV6,Android,Analysis of file system variations,ARM"
"Virtualisation,Software Configuration Management,HTTP,Scala,Agile,Assembly Level Language,Hadoop,DART,IPV4,MIPS,UML,Flume,Socket Programming,Scrum,AWS,Lens,3D computer graphics,Procedural generation of scenes,Internet of THings,IOT,.NET,Software Forge,RISC,C++,automation,Processor design,LAN,Mobility,Zookeeper,MapReduce,HIVE,Kafka,Go,HBASE"
"Virtualisation,SAP CRM,HTTP,Nanode,.NET,Integration,IPV4,Microprocessor,Network Security,x86,Web2.0,Socket Programming,Microcontroller,Leadership,CISC,Assembly Level Language,Product Development,RISC,Transistors,Processor design,LAN,Program Management,SDLC,ARM"
"Adaptation of existing file systems,DBaaS,Nano,Make,Fuchsia,Nova,Perl,Emacs,Kali-Linux,Analysis of file system variations,RDFS,KDE,Software Configuration Management,SaaS,Ubuntu,Swift,Debian,C,automation,FUSE,Cinder,VIM,Cryptocurrency,OOP,Go"
"Java,Scala,Agile,Fuchsia,Hadoop,Shimmer,DART,Flume,makeitopen,AMBARI,Nutch,Software Configuration Management,AWS,BigData,Lens,DIGITAL OCEAN,rebound,Impala,conceal,MapReduce,HIVE,Kafka,ANT,HBASE"
"Adaptation of existing file systems,buck,flask,Knowledge Management,React Native,Flash,Interfacing with Cloud APIs,conceal,3D computer graphics,Procedural generation of scenes,PathPicker,Information Design,Analysis of file system variations"
"Flume,Lens,AMBARI,Nutch,AWS,Hadoop,Kafka,ANT,MapReduce,DIGITAL OCEAN,Spark,Impala,BigData"
"Android,Android Studio,IPV6"
"Flume,Lens,AMBARI,Nutch,Zookeeper,AWS,HIVE,Kafka,ANT,DIGITAL OCEAN,Spark,HBASE"
"IOT,HTTP,Scala,Agile,Assembly Level Language,Fuchsia,Perl,IPV4,Java,Web2.0,Socket Programming,Software Configuration Management,Wireless,C,Software Forge,RISC,automation,VR,DART,Processor design,Mobility,ARM"
"Software Configuration Management,Java,Agile,ReactJs,Fuchsia,Hadoop,Emacs,Flume,NodeJS,KDE,Scrum,AWS,BigData,Lens,DIGITAL OCEAN,Tomcat,Ubuntu,Software Forge,C++,AJAX,Impala,MapReduce,HIVE,Kafka,ANT,OOP,LINUX,Go,HBASE"
"Adaptation of existing file systems,Network Security,Mobility,Socket Programming,IPV4,File system utilities,Security,CISC,Internet of THings"
"JQuery,AngularJS,NodeJS,flask,Knowledge Management,Cloud Computing,JavaScript,Interfacing with Cloud APIs,Django,MeanStack,Angular2,Information Design,Web Semantics"
"VR,3D computer graphics,Procedural generation of scenes,Virtual Reality"
"RDFS,MOM,OWL-S,EII,RDF+,RSS"
"Flume,3D modeling and animation,GIT,Nutch,conceal,React Native,redex,BigData,Hadoop,Stetho,Bibtex,PathPicker,DIGITAL OCEAN,App Inventor,Android,Impala,bolts-android"
"clustering,NLP,statistics,File system utilities,Neural Networks,classification,database management,Adaptation of existing file systems,Lens,Labview,Artificial Intelligence,Chromium,data analytics,Flume"
Android
"Nano,GNU,Fuchsia,Nova,DART,Emacs,DBaaS,ETL,RDFS,KDE,Scrum,SaaS,3D computer graphics,Procedural generation of scenes,Ubuntu,IaaS,Swift,XML,Paas,Windows,Scala,C++,Cinder,SPARQL,OOP,LINUX"
"buck,LAN,makeitopen,HTTP,conceal,rebound,Assembly Level Language,redex,ANT,VoIP,IPV4,DIGITAL OCEAN,Security,Stetho,infer,Socket Programming,bolts-android"
"Microcontroller,x86,Arduino,Cypress,Pinguino,Raspberry Pi,Microprocessor"
"Microcontroller,File system utilities,Nanode,Arduino,Cypress,Pinguino,automation,3D data visualization,UML,Software Configuration Management"
"EAI,FOAF,3D modeling and animation,SPARQL,RDFS,OWL-S,3D computer graphics,Procedural generation of scenes,SQL,Dropbox,RDF,RDF+"
"Leadership,C,SAP CRM,Java,Product Development,Resource Management,Program Management,MongoDB,Scrum,Software Forge,Requirements Analysis,C++,Perl,SDLC,Enterprise Software,OOP,MOM,Dropbox,automation,Cassandra"
"Virtualisation,HTTP,AWS,.NET,Selenium,visualisation,Tensorflow,OpenStack,machine learning,Flume,statistics,Nutch,SaaS,DIGITAL OCEAN,IaaS,VoIP,Paas,Assembly Level Language,Natural language Processing,System Modelling,RISC,Labview,Embedded Operating Systems,Cinder,Security,Spark,similarity analysis,Mobility,database management,MapReduce,Kafka,R,data analytics,Data mining,HBASE,Chromium,ARM,Operating Systems"
"FOAF,Paas,Cryptocurrency,RDFS,OpenStack,OWL-S,SaaS,RISC,Nova,Wireless,ETL,SPARQL,CISC,Cinder,EII,MIPS,IaaS,RDF+,Swift,Operating Systems,Android Studio"
"SAP CRM,File system utilities,Product Development,Requirements Analysis,Business Intelligence,Enterprise Software,Product Management,Analysis of file system variations"
"Product Development,SDLC,Program Management,Requirements Analysis,Integration,Resource Management,Leadership,Agile Methodologies,Product Management,Enterprise Software,Business Analysis,CRM"
"Adaptation of existing file systems,AMBARI,Tomcat,Impala,Virtual Reality,DIGITAL OCEAN,System Modelling,BigData,Lens,VR,AR,Nvidia,Embedded Operating Systems,Analysis of file system variations,Spark,Operating Systems"
"clustering,similarity analysis,statistics,visualisation,Keras,Windows,Torch,Labview,R,Algorithms,Kali-Linux,Ubuntu,Data mining,Tensorflow,Chromium"
"C,Scala,Fuchsia,Software Forge,automation,OOP,Agile,Go,Android"
"Web2.0,buck,Virtualisation,makeitopen,Network Security,conceal,VoIP,Socket Programming,redex,RISC,Shimmer,ARM,Wireless,CISC,PathPicker,MIPS,Security,Assembly Level Language,infer,Processor design,bolts-android"
"GIT,Bibtex"
"Web2.0,Network Security,IPV4,Android,IPV6,Security,ARM,CISC,Android Studio"
"C,Scrum,3D data visualization,Scala,SaaS,rebound,Software Configuration Management,Software Forge,DART,Cryptocurrency,Procedural generation of scenes,DBaaS,OpenStack,Go,UML,Perl,Swift"
"Microprocessor,Program Management,Cypress,Requirements Analysis,HIVE,Raspberry Pi,App Inventor,Agile Methodologies,Product Management,Transistors,Android Studio"
"Flume,ANT,Nvidia,AMBARI,Tomcat,Zookeeper,AWS,MapReduce,HIVE,Hadoop,Lens,VR,AR,DIGITAL OCEAN,Spark,Kafka,HBASE"
"JQuery,Flash,AngularJS,NodeJS,Knowledge Management,JavaScript,AJAX,HTML,Information Design,Database-Basked Web Sites"
"Virtualisation,classification,.NET,Selenium,IPV4,MIPS,Web2.0,3D modeling and animation,statistics,IOT,Wireless,3D computer graphics,Procedural generation of scenes,VoIP,Internet of THings,clustering,Assembly Level Language,RISC,Algorithms,3D data visualization,Security,LAN,Mobility,Bibtex,ARM,data analytics"
"FOAF,EAI,Software Engineering,RDFS,Integration,Resource Management,Cryptocurrency,Leadership,Nova,DBaaS,Product Management,OpenStack,IaaS,Swift,RDF,CRM"
"JQuery,JavaScript,Knowledge Management,ReactJs,Interfacing with Cloud APIs,AJAX,HTML,Angular2,HTML5,AngularJS,Bibtex,Algorithms,CSS"
"SaaS,GIT,Bibtex"
"SAP CRM,classification,Requirements Analysis,Selenium,Integration,Business Intelligence,visualisation,Tensorflow,CRM,NLP,statistics,Natural language Processing,NLTK,Product Development,python,System Modelling,Embedded Operating Systems,Software Engineering,Program Management,Torch,machine learning,R,Data mining,Chromium"
"Virtualisation,Nano,GNU,Emacs,IPV4,OpenStack,ETL,KDE,SaaS,Ubuntu,Swift,Debian,CISC,Gnome,Windows,VR,FUSE,Cinder,VIM,Cryptocurrency,MOM,LINUX"
"Adaptation of existing file systems,buck,GIT,File system utilities,NodeJS,flask,Knowledge Management,Cloud Computing,JavaScript,Fresco,Shimmer,Django,MeanStack,Database-Basked Web Sites,AJAX,Embedded Operating Systems,System Modelling,Flash,Web Semantics,infer"
"Hadoop,Nova,Information Design,JQuery,AMBARI,Nutch,AWS,Interfacing with Cloud APIs,Lens,HTML,AngularJS,Natural language Processing,Spark,GIT,Tomcat,Knowledge Management,Django,Labview,HTML5,CSS,Database-Basked Web Sites,Zookeeper,Kafka,ANT"
"3D modeling and animation,IOT,System Modelling,Procedural generation of scenes,Processor design,MIPS,Operating Systems"
"GIT,HTTP,Business Analysis,Integration,AR,Product Management"
"C,Java,Scala,Agile,Fuchsia,C++,Perl,OOP,Go,UML,DART,Operating Systems"
"3D computer graphics,NLP,similarity analysis,Torch,Neural Networks,Virtual Reality,Data mining,3D modeling and animation,machine learning,AR,visualisation,Nvidia,3D data visualization,NLTK,data analytics"
"buck,makeitopen,C++,conceal,rebound,redex,System Modelling,Shimmer,automation,Stetho,PathPicker,Embedded Operating Systems,Operating Systems,bolts-android"
"ANT,Nutch,Tomcat,Zookeeper,AWS,BigData,HIVE,Hadoop,Lens,HBASE,Spark"
"Adaptation of existing file systems,HTTP,Neural Networks,Nano,GNU,Make,Selenium,Emacs,Tensorflow,MIPS,R,Analysis of file system variations,Web2.0,NLP,classification,Keras,KDE,IOT,Wireless,python,Ubuntu,Debian,CISC,Internet of THings,Windows,Natural language Processing,RISC,VR,FUSE,Algorithms,Security,LAN,Data mining,AR,data analytics,LINUX,Chromium,ARM,Artificial Intelligence"
"HTTP,classification,IPV6,IPV4,MIPS,Network Security,Nanode,NLP,Keras,Cypress,Mobility,Wireless,NLTK,VoIP,Internet of THings,x86,GraphQL,database management,Torch,ARM,Data mining,Algorithms,Chromium,Socket Programming,Artificial Intelligence"
"3D computer graphics,Paas,JavaScript,NodeJS,GNU,Swift,Cloud Computing,Pinguino,SaaS,Interfacing with Cloud APIs,Nova,DBaaS,HTML,HTML5,AngularJS,IaaS,3D data visualization"
"EAI,FOAF,3D modeling and animation,SPARQL,RDFS,SOA,MOM,Android,ETL,Android Studio"
"GIT,NoSQL,MongoDB,Bibtex,SQL,GraphQL"
"File system utilities,Information Design,NoSQL,SQL,Database-Basked Web Sites,Cloud Computing,JavaScript,Django,MongoDB,HTML5,AngularJS,Knowledge Management,Dropbox,Analysis of file system variations"
"Network Security,NoSQL,Shimmer,Stetho,MIPS,HTTP,Android,Web2.0,makeitopen,Socket Programming,IOT,Fresco,Web Semantics,CISC,Internet of THings,rebound,redex,Security,Processor design,Android Studio,buck,Mobility,Database-Basked Web Sites,ARM,SQL,React Native"
"buck,Requirements Analysis,Product Development,Software Engineering,Program Management,Leadership,React Native,redex,Integration,Resource Management,Business Intelligence,Stetho,SAP CRM,Agile Methodologies,bolts-android"
"Virtualisation,HTTP,Agile,Make,.NET,Emacs,IPV4,IPV6,Tensorflow,VIM,OpenSUSE,Keras,KDE,Socket Programming,IOT,Wireless,Java,Ubuntu,CISC,Internet of THings,Assembly Level Language,RISC,C++,automation,Labview,VR,R,Algorithms,Nvidia,Security,similarity analysis,Mobility,Torch,machine learning,AR,OOP,Go,Chromium,ARM,Artificial Intelligence"
"Lens,Impala"
"Java,Scala,Agile,Fuchsia,Shimmer,Perl,Stetho,DBaaS,UML,React Native,Software Configuration Management,SaaS,Swift,infer,Paas,C,Software Forge,C++,automation,DART,Cryptocurrency,OOP,Go"
"XML,EII,ETL,SOA,OpenSUSE,AMBARI,Nutch,RDFS,SKOS,BigData,Lens,DIGITAL OCEAN,Spark,FOAF,EAI,Tomcat,RDF,Impala,RDF+,SPARQL,Zookeeper,HIVE,Kafka,OWL-S,HBASE,RSS,Flume"
"Software Forge,3D modeling and animation,Agile,Software Configuration Management,Fuchsia,C++,automation,OOP,3D data visualization,Go"
"XML,Virtualisation,HTTP,Nano,GNU,Make,Assembly Level Language,Emacs,IPV4,Kali-Linux,EII,Network Security,Socket Programming,IOT,Wireless,Debian,VoIP,Internet of THings,FOAF,.NET,Windows,FUSE,GraphQL,Security,SKOS,RDF+,LAN,Mobility,MOM,OWL-S,RSS,Cassandra"
"Adaptation of existing file systems,GIT,Analysis of file system variations"
"Agile,Bibtex"
"GIT,Cloud Computing,MeanStack,Angular2,HTML5,Information Design,Bibtex,Android Studio"
"System Modelling,Operating Systems"
"Scrum,Neural Networks,HTML,Selenium,visualisation,Tensorflow,clustering,NLP,3D modeling and animation,Keras,flask,Cypress,Microcontroller,3D computer graphics,Web Semantics,JQuery,Information Design,Nanode,python,automation,Angular2,similarity analysis,database management,Database-Basked Web Sites,Cloud Computing,Torch,MeanStack,Chromium,data analytics"
"Adaptation of existing file systems,File system utilities,Gnome,Keras,KDE,Selenium,VIM,OpenSUSE,Labview,FUSE,Algorithms,Kali-Linux,Emacs,Analysis of file system variations,Debian,data analytics"
"Adaptation of existing file systems,GIT,NoSQL,Cypress,GraphQL,SQL,Bibtex,Transistors,Analysis of file system variations"
"Cassandra,Dropbox,SQL,GraphQL,MongoDB"
"FOAF,Virtualisation,HTTP,Neural Networks,Assembly Level Language,Selenium,IPV4,Microprocessor,Tensorflow,EAI,NLP,PathPicker,Keras,React Native,Microcontroller,Wireless,Natural language Processing,visualisation,CISC,Internet of THings,XML,Web2.0,x86,rebound,RISC,Labview,RDF,Security,SKOS,Processor design,RDF+,buck,LAN,conceal,Torch,machine learning,MOM,bolts-android,Chromium,clustering"
"Adaptation of existing file systems,File system utilities,SPARQL,RDFS,System Modelling,Embedded Operating Systems,MOM,OWL-S,EII,Analysis of file system variations,RSS"
"Angular2,C,JavaScript,NodeJS,Database-Basked Web Sites,Software Configuration Management,App Inventor,HTML5,UML,Android"
"NLP,similarity analysis,HTTP,Neural Networks,NoSQL,Keras,python,MongoDB,IOT,LAN,HTML,GraphQL,CISC,Dropbox,Tensorflow,R,Internet of THings,Artificial Intelligence,Cassandra"
"JQuery,JavaScript,HTML,NoSQL,NodeJS,python,MongoDB,Django,Flash,machine learning,Labview,R,GraphQL,Information Design,SQL,Tensorflow,Android Studio,Web Semantics,Artificial Intelligence,Cassandra"
"Nanode,Software Engineering,Pinguino,MeanStack,Raspberry Pi,AR,Microprocessor,Nvidia,Product Management,Enterprise Software,CSS,x86"
"EAI,FOAF,Embedded Operating Systems,NoSQL,RDFS,MongoDB,XML,SOA,GraphQL,Operating Systems,MOM,SQL,RDF,Cassandra,ETL,RSS"
"XML,FOAF,EAI,SOA,RDF,MOM,OWL-S,ETL"
"Adaptation of existing file systems,GIT,conceal,Virtual Reality,makeitopen,Analysis of file system variations,React Native,bolts-android"
"Cryptocurrency,Virtual Reality,SaaS,Nova"
"Nova,Cryptocurrency,VR,AR,DBaaS,Cinder,infer"
Swift
"Adaptation of existing file systems,Neural Networks,classification,ReactJs,Analysis of file system variations,clustering,NLP,flask,Interfacing with Cloud APIs,HTML,AngularJS,Web Semantics,GIT,python,Knowledge Management,Labview,AJAX,R,Bibtex,HTML5,CSS,File system utilities,database management,Cloud Computing,MeanStack,Algorithms,Chromium"
"Nvidia,makeitopen,AR,DBaaS,conceal,Virtual Reality,redex,SaaS,Shimmer,Cryptocurrency,VR,Stetho,Nova,MOM,OWL-S,EII,Cinder,RDF,IaaS,ETL,bolts-android"
"Kali-Linux,Nano,Integration,Resource Management,Business Intelligence,Enterprise Software,DBaaS,OpenStack,Analysis of file system variations,Business Analysis,makeitopen,React Native,SaaS,Leadership,Swift,infer,Paas,Product Development,Windows,redex,Cinder,Software Engineering,Program Management,conceal,Product Management,bolts-android"
"Microprocessor,Arduino,Flash,Resource Management,Information Design,JQuery,flask,Cypress,Microcontroller,Raspberry Pi,AngularJS,ReactJs,Knowledge Management,Django,AJAX,AR,App Inventor,HTML5,Transistors,CSS,Cloud Computing,MeanStack,SDLC"
"Virtualisation,.NET,RISC,Wireless,App Inventor,Android,Android Studio,Internet of THings"
"CSS,JavaScript,Swift,HTML,NodeJS,flask,Knowledge Management,ReactJs,SaaS,Interfacing with Cloud APIs,Nova,Django,AngularJS,DBaaS,3D computer graphics,HTML5,Information Design,Cinder,Web Semantics,Operating Systems"
"MongoDB,SQL,Dropbox"
"Torch,Neural Networks,Arduino,Cypress,Microcontroller,machine learning,Raspberry Pi,Algorithms,Transistors,x86"
"C,GIT,Java,Arduino,Agile,Software Configuration Management,C++,UML"
"Neural Networks,classification,Nova,visualisation,NLP,statistics,NoSQL,Virtual Reality,Natural language Processing,Swift,VR,AR,GraphQL,Nvidia,database management,MongoDB,Torch,machine learning,R,Artificial Intelligence,Chromium,data analytics,Cassandra"
"Neural Networks,classification,Selenium,clustering,NLP,Cypress,Microcontroller,3D computer graphics,Procedural generation of scenes,Natural language Processing,NLTK,x86,python,R,3D data visualization,Transistors,similarity analysis,database management,Torch,machine learning,Data mining,Chromium,data analytics"
"Flume,File system utilities,Nutch,Software Engineering,Hadoop,Resource Management,ANT,Embedded Operating Systems,DIGITAL OCEAN,Spark,Enterprise Software,HBASE,Operating Systems"
"Adaptation of existing file systems,File system utilities,SaaS,Cryptocurrency,DBaaS,Cinder,IaaS,Swift"
"Gnome,Nano,GNU,Nova,Cryptocurrency,OpenStack,Swift,Debian"
"Nano,GNU,Make,Hadoop,Kali-Linux,Kafka,Flume,AMBARI,KDE,BigData,OpenSUSE,Ubuntu,Gnome,Tomcat,Windows,FUSE,Zookeeper,MapReduce,HIVE,VIM,LINUX,HBASE"
"Nanode,NoSQL,Windows,MongoDB,Make,Ubuntu,System Modelling,OpenSUSE,Microprocessor,LINUX,Dropbox,Debian,x86"
"Android Studio,App Inventor,Ubuntu"
"Flume,GIT,GraphQL,NoSQL,Zookeeper,BigData,HIVE,Kafka,Bibtex,Dropbox,HBASE,Cassandra"
"clustering,NLP,statistics,Business Analysis,Software Engineering,Requirements Analysis,Selenium,Integration,machine learning,Labview,SDLC,Data mining,Product Management,Tensorflow,visualisation,Chromium,NLTK,Artificial Intelligence,CRM"
GIT
"NoSQL,Selenium,PathPicker,NLP,statistics,NodeJS,React Native,Fresco,Natural language Processing,Web Semantics,Knowledge Management,redex,R,Bibtex,similarity analysis,database management,conceal,Cloud Computing,Torch,Angular2,data analytics,Cassandra"
"3D modeling and animation,3D computer graphics"
"Web2.0,Adaptation of existing file systems,Virtualisation,Microcontroller,HTTP,Mobility,Processor design,Socket Programming,.NET,LAN,File system utilities,Wireless,Raspberry Pi,CISC,IPV4,MIPS,Security,Analysis of file system variations,ARM,VoIP,Internet of THings"
"Nano,NoSQL,Arduino,Windows,MongoDB,Pinguino,VIM,OpenSUSE,Ubuntu,FUSE,Emacs,Microprocessor,LINUX,Debian"
"JQuery,NodeJS,Knowledge Management,Cloud Computing,ReactJs,Django,MeanStack,HTML,AngularJS,Web Semantics,CSS"
"Software Forge,Software Configuration Management,Gnome,Scala,Windows,KDE,Make,Scrum,Fuchsia,C++,VIM,Emacs,OOP,LINUX,Go,App Inventor,automation,UML"
"JQuery,NodeJS,flask,Database-Basked Web Sites,Cloud Computing,ReactJs,AJAX,Knowledge Management,Android,Analysis of file system variations,Web Semantics,CSS,Android Studio"
"XML,MOM,EAI,x86,Arduino,OWL-S,RDFS,Microcontroller,Raspberry Pi,App Inventor,Microprocessor,SOA,EII,Android,SKOS,SPARQL,Android Studio"
"Pinguino,Stetho,3D modeling and animation,makeitopen,KDE,React Native,Fresco,OpenSUSE,Raspberry Pi,3D computer graphics,Ubuntu,Debian,Gnome,Windows,rebound,redex,buck,conceal,infer,LINUX,Cypress,bolts-android"
"Scrum,MongoDB,Agile,Software Configuration Management,Software Forge,Fuchsia,DART,GraphQL,OOP,Dropbox,Go,UML,automation"
"Neural Networks,Paas,Selenium,Nova,DBaaS,OpenStack,ETL,EAI,Keras,visualisation,Swift,XML,SOA,python,VR,AR,Cinder,IaaS,SPARQL,Torch,RDF,MOM,OWL-S,Artificial Intelligence,RSS"
"ReactJs,Fuchsia,DART,Information Design,3D modeling and animation,flask,KDE,Software Configuration Management,Interfacing with Cloud APIs,3D computer graphics,Procedural generation of scenes,Flash,Gnome,JavaScript,CSS,File system utilities,Database-Basked Web Sites,Cloud Computing,VIM,MeanStack,LINUX,Go"
"C,Java,Agile,Software Configuration Management,Fuchsia,C++,automation,RDF,OOP,Perl,SKOS,RSS"
"statistics,SDLC,Software Engineering,Integration,Resource Management,Business Intelligence,Agile Methodologies,Product Management,Chromium,NLTK,CRM"
"Pinguino,Nanode,Arduino,Cypress,Microcontroller,GIT,Bibtex,Microprocessor,Transistors,x86"
"Adaptation of existing file systems,Paas,C,Requirements Analysis,File system utilities,Product Development,Program Management,Leadership,Enterprise Software,Software Forge,Nova,Perl,Business Intelligence,HTML,SAP CRM,DBaaS,Go,IaaS,Analysis of file system variations,Business Analysis,CRM"
"SaaS,Flash,Nova,Interfacing with Cloud APIs,Information Design,JQuery,Flume,Cryptocurrency,Nutch,AWS,BigData,Lens,HTML,Procedural generation of scenes,AngularJS,DIGITAL OCEAN,IaaS,Swift,Paas,JavaScript,Knowledge Management,Django,AJAX,Angular2,Impala,CSS,Web Semantics,Cloud Computing,MapReduce,HIVE,Kafka,ANT,HBASE"
"ANT,AMBARI,Tomcat,System Modelling,Hadoop,Lens,AR,Spark,Impala,Operating Systems"
"Web2.0,Wireless,LAN,IOT,Network Security,Nanode,CISC,Arduino,Processor design,Cypress,Pinguino,Assembly Level Language,Raspberry Pi,Microprocessor,3D computer graphics,IPV4,3D data visualization,MIPS,Transistors,VoIP,Internet of THings"
"GIT,SAP CRM,AMBARI,Business Analysis,Requirements Analysis,Android Studio,Resource Management,Business Intelligence,Enterprise Software,Bibtex,SDLC,HBASE,CRM,Impala,Spark,Product Development"
"FOAF,Virtualisation,Flash,EII,Analysis of file system variations,JQuery,RDFS,flask,SOA,Web Semantics,XML,Web2.0,JavaScript,Knowledge Management,AJAX,Angular2,SKOS,CSS,LAN,File system utilities,SPARQL,Cloud Computing,NodeJS,RSS"
"makeitopen,Stetho"
"3D computer graphics,3D modeling and animation,Gnome,Nano,Windows,KDE,Make,System Modelling,Resource Management,VIM,OpenSUSE,Agile Methodologies,FUSE,SDLC,LINUX,Debian,Operating Systems"
"SOA,Product Development,Business Analysis,RDFS,System Modelling,VR,RDF,Bibtex,SKOS,CRM"
"VR,Virtual Reality,Nvidia"
"NLP,similarity analysis,Scrum,Java,Neural Networks,classification,RDFS,python,Nvidia,Data mining,Selenium,C,machine learning,Labview,Algorithms,Artificial Intelligence,Natural language Processing,DART,Perl,data analytics,RDF+"
"File system utilities,3D data visualization,Nano,GNU,Windows,KDE,LINUX,OpenSUSE,Kali-Linux,Ubuntu,Analysis of file system variations,Debian"
"Adaptation of existing file systems,Flume,AMBARI,Impala,Virtual Reality,HIVE,ANT,AR,Nvidia,Spark,Analysis of file system variations,HBASE"
"Paas,makeitopen,buck,conceal,SaaS,Nova,Cryptocurrency,Stetho,OpenStack,IaaS,bolts-android"
"Lens,Cryptocurrency,AMBARI,Nutch,Tomcat,IaaS,Virtual Reality,Zookeeper,SaaS,MapReduce,Nova,Kafka,ANT,HIVE,DBaaS,Nvidia,OpenStack,Spark,Swift,HBASE,Hadoop"
"MongoDB,GraphQL,NoSQL,SQL"
"JQuery,flask,ReactJs,Interfacing with Cloud APIs,AJAX,Angular2,CSS"
"NoSQL,Virtual Reality,System Modelling,VR,AR,GraphQL,Embedded Operating Systems,Operating Systems,Cassandra"
"Pinguino,Nanode,NoSQL,Arduino,Cypress,Microcontroller,Nova,Cryptocurrency,GIT,Bibtex,Microprocessor,Dropbox,GraphQL,Cassandra"
"Virtualisation,SAP CRM,HTTP,Neural Networks,classification,Microcontroller,Pinguino,Selenium,IPV4,Microprocessor,Tensorflow,MIPS,CRM,NLP,Network Security,Keras,Cypress,IOT,Wireless,.NET,CISC,Assembly Level Language,python,System Modelling,Embedded Operating Systems,Algorithms,similarity analysis,database management,Torch,machine learning,R,Operating Systems,Data mining,Product Management,ARM,Artificial Intelligence"
"Web2.0,LAN,Assembly Level Language,Network Security,Mobility,Socket Programming,IOT,RISC,Wireless,IPV4,IPV6,MIPS,Security,VoIP,Internet of THings"
"buck,3D modeling and animation,rebound,conceal,React Native,Fresco,Shimmer,3D computer graphics,Procedural generation of scenes,PathPicker,3D data visualization,File system utilities,bolts-android,Stetho,infer,CRM"
"Zookeeper,Neural Networks,Selenium,Hadoop,visualisation,3D modeling and animation,statistics,AMBARI,Lens,3D computer graphics,Procedural generation of scenes,Spark,NLTK,Tomcat,python,Labview,Embedded Operating Systems,Algorithms,3D data visualization,similarity analysis,Torch,MapReduce,Kafka,ANT,R,Data mining,Artificial Intelligence"
"ANT,LAN,AMBARI,Nutch,Tomcat,Zookeeper,MapReduce,HIVE,BigData,Lens,VoIP,MIPS,Impala,CISC"
"Microcontroller,Kali-Linux,Nano,GNU,Make,JavaScript,Nova,DBaaS,Stetho,Emacs,PathPicker,Microprocessor,OpenStack,x86,makeitopen,KDE,React Native,Arduino,SaaS,OpenSUSE,Raspberry Pi,Ubuntu,IaaS,Web Semantics,infer,Paas,Gnome,redex,FUSE,buck,Nanode,VIM"
"Android,Android Studio"
"Adaptation of existing file systems,Network Security,NoSQL,.NET,Selenium,MIPS,HTTP,Analysis of file system variations,Web2.0,statistics,Keras,Socket Programming,Wireless,Natural language Processing,Dropbox,NLTK,VoIP,Internet of THings,Assembly Level Language,Labview,R,GraphQL,Security,similarity analysis,database management,MongoDB,Torch,machine learning,Tensorflow,SQL,Chromium,Artificial Intelligence,Cassandra"
"Virtualisation,HTTP,Shimmer,Stetho,IPV6,Network Security,makeitopen,Socket Programming,IOT,CISC,C,GIT,rebound,System Modelling,RISC,Embedded Operating Systems,Security,Processor design,LAN,Mobility,MIPS,ARM,bolts-android"
LINUX
"IOT,HTTP,Neural Networks,JavaScript,Information Design,IPV6,x86,JQuery,3D modeling and animation,NodeJS,Cypress,Microcontroller,Wireless,3D computer graphics,Procedural generation of scenes,AngularJS,visualisation,Web Semantics,Flash,HTML,Knowledge Management,LAN,Labview,AJAX,3D data visualization,Processor design,similarity analysis,Mobility,Database-Basked Web Sites,Cloud Computing,MeanStack,Socket Programming"
"IOT,Assembly Level Language,.NET,App Inventor,Android,bolts-android,infer,Internet of THings"
"File system utilities,GNU,KDE,Make,System Modelling,OpenSUSE,VR,FUSE,Emacs,Kali-Linux,LINUX,Embedded Operating Systems,Analysis of file system variations,Virtual Reality,AR"
"Adaptation of existing file systems,C,Java,Scala,System Modelling,Agile,Scrum,Software Forge,automation,File system utilities,Embedded Operating Systems,Go,UML,DART,Perl,Operating Systems"
"Android,App Inventor,Android Studio"
"3D computer graphics,similarity analysis,SAP CRM,Business Analysis,classification,Program Management,Chromium,Requirements Analysis,3D modeling and animation,Resource Management,Leadership,Procedural generation of scenes,Product Management,Enterprise Software,Artificial Intelligence,CRM"
"ANT,AMBARI,HIVE,Lens,Bibtex,HBASE,Impala"
"Adaptation of existing file systems,buck,Nanode,Nano,Windows,KDE,Cypress,Pinguino,Fresco,Shimmer,infer,OpenSUSE,Kali-Linux,Microprocessor,LINUX,Analysis of file system variations,Debian,Gnome"
"JQuery,Nvidia,AngularJS,NodeJS,flask,Database-Basked Web Sites,Flash,VR,MeanStack,AJAX,HTML,Angular2,Information Design,Knowledge Management,Android,Web Semantics,AR"
"SAP CRM,Product Development,Requirements Analysis,Integration,Resource Management,SDLC,Business Intelligence,Leadership,Agile Methodologies,Product Management,Business Analysis"
"Java,Nanode,Arduino,System Modelling,Scrum,Software Forge,C++,automation,Raspberry Pi,Embedded Operating Systems,Agile,Go,UML,Fresco,Stetho,Fuchsia"
"Web2.0,Virtualisation,Pinguino,Network Security,x86,Mobility,Socket Programming,Assembly Level Language,Arduino,VR,IPV4,MIPS,Security,ARM,VoIP,Internet of THings"
"conceal,rebound,infer"
"Spark,Nutch,MapReduce"
"MongoDB,GraphQL,NoSQL"
"Scrum,HTTP,GNU,Make,.NET,Perl,Kali-Linux,IPV6,Network Security,Android,JQuery,NodeJS,flask,KDE,IOT,Interfacing with Cloud APIs,OpenSUSE,AngularJS,Web Semantics,Debian,C,Flash,App Inventor,HTML5,Security,Android Studio,LAN,Mobility,Database-Basked Web Sites,Cloud Computing,ARM"
"Paas,Shimmer,buck,Virtual Reality,SaaS,OpenStack,Cryptocurrency,VR,AR,Nova,DBaaS,Nvidia,Cinder,Swift,React Native,PathPicker"
"System Modelling,Embedded Operating Systems,GIT,Bibtex,Operating Systems"
"Adaptation of existing file systems,File system utilities,3D computer graphics,App Inventor,3D data visualization,Procedural generation of scenes,Android"
"Torch,classification,Hadoop,Tensorflow,statistics,Nutch,AWS,BigData,Lens,3D computer graphics,Procedural generation of scenes,Natural language Processing,NLTK,Tomcat,python,DIGITAL OCEAN,Algorithms,Impala,similarity analysis,database management,Zookeeper,MapReduce,HIVE,machine learning,ANT,Data mining,HBASE,Chromium,Artificial Intelligence"
"Pinguino,Nanode,Arduino,Cypress,Microcontroller,Raspberry Pi,Microprocessor,Transistors"
"Adaptation of existing file systems,File system utilities,Virtual Reality,VR,Nvidia,Analysis of file system variations"
"System Modelling,Nova,Cinder,OpenStack,IaaS,Swift,Operating Systems"
"SAP CRM,Neural Networks,Requirements Analysis,Integration,Resource Management,Business Intelligence,OpenStack,Program Management,ETL,CRM,EAI,RDFS,SOA,IaaS,Paas,Agile Methodologies,python,SQL,R,Algorithms,Cinder,RDF+,SPARQL,Software Engineering,database management,MongoDB,Torch,Cryptocurrency,RDF,data analytics,MOM,OWL-S,Cassandra,Chromium,Artificial Intelligence,RSS"
"C,Nanode,Arduino,Cypress,Pinguino,Fuchsia,DART,Raspberry Pi,automation,UML,Transistors"
"EAI,XML,C,makeitopen,File system utilities,Nanode,Scala,Software Forge,Software Configuration Management,Fresco,Shimmer,automation,C++,MOM,OWL-S,DART,Java,Perl,Fuchsia"
"GIT,Gnome,GNU,Windows,KDE,Make,System Modelling,OpenSUSE,FUSE,Bibtex,Kali-Linux,Ubuntu,Emacs,Debian,Operating Systems"
"Cryptocurrency,Paas,IaaS,DBaaS,Nova"
"buck,NoSQL,conceal,MongoDB,React Native,Fresco,GraphQL,infer,bolts-android"
"ReactJs,HTML,NodeJS,Database-Basked Web Sites,Cypress,Pinguino,Django,MeanStack,AJAX,Raspberry Pi,HTML5,Microprocessor,Transistors,JavaScript,Cloud Computing"
"JQuery,ReactJs,NodeJS,flask,Cloud Computing,JavaScript,Django,MeanStack,AJAX,Angular2,HTML5,CSS"
"buck,makeitopen,Product Development,rebound,Fresco,Stetho,Agile Methodologies,Dropbox,Android,Android Studio,infer,Cassandra"
"Selenium,Shimmer,Stetho,PathPicker,visualisation,Tensorflow,NLP,statistics,React Native,Fresco,3D computer graphics,Procedural generation of scenes,python,SQL,Labview,makeitopen,Algorithms,3D data visualization,buck,similarity analysis,MongoDB,Torch,machine learning,R,Data mining,GraphQL,Cassandra,data analytics,bolts-android"
"Java,classification,Scala,Selenium,Perl,visualisation,Tensorflow,NLP,Keras,3D computer graphics,Natural language Processing,NLTK,C,python,R,Algorithms,3D data visualization,similarity analysis,database management,machine learning,Data mining,data analytics"
"FOAF,EAI,RDF+,SKOS,RSS"
"Lens,Gnome,Tomcat,Make,Zookeeper,AWS,MapReduce,Hadoop,ANT,Kali-Linux,DIGITAL OCEAN,VIM,Impala"
"Adaptation of existing file systems,Wireless,Flash,Analysis of file system variations,Cloud Computing,JavaScript,Interfacing with Cloud APIs,MeanStack,AJAX,HTML,HTML5,Web Semantics,CSS,CISC"
"SAP CRM,Product Development,Software Engineering,Program Management,conceal,React Native,redex,VR,Business Intelligence,AR,PathPicker,Agile Methodologies,Android Studio,Stetho,rebound,bolts-android"
"3D modeling and animation,Embedded Operating Systems,Procedural generation of scenes,Operating Systems"
"Flume,Lens,Zookeeper,AMBARI,Nutch,Tomcat,3D computer graphics,Hadoop,Scrum,AWS,DIGITAL OCEAN,HIVE,Perl,ANT,AR,Procedural generation of scenes,3D data visualization,Nvidia,HBASE,Kafka,Impala"
"flask,Dropbox,AJAX,ReactJs,Information Design"
"Flume,Software Configuration Management,Nanode,Tomcat,Arduino,Scrum,Fuchsia,Hadoop,DART,MapReduce,Zookeeper,Nutch,OOP,Microprocessor,DIGITAL OCEAN,Spark,Transistors,HBASE,Kafka"
"C,Software Configuration Management,Nutch,Fuchsia,Scrum,Software Forge,Perl,Zookeeper,OOP"
"System Modelling,Operating Systems"
"Paas,GIT,Virtual Reality,SaaS,Nova,Cryptocurrency,DBaaS,Nvidia,OpenStack,Impala"
Spark
"C,Java,Agile,IOT,Fuchsia,MIPS,C++,DART,Network Security,IPV4,IPV6,Go,UML,Security,Perl,CISC"
"Virtualisation,Agile,.NET,Fuchsia,Perl,Assembly Level Language,IPV4,Information Design,MIPS,ETL,EAI,NodeJS,flask,Software Configuration Management,Wireless,Web2.0,CISC,Internet of THings,XML,JQuery,C,JavaScript,Knowledge Management,Software Forge,C++,automation,RDF,Angular2,HTML5,Security,DART,RDF+,LAN,MeanStack,VoIP,OOP,MOM,ARM"
"XML,C,GIT,SPARQL,Scala,Scrum,Fuchsia,Nova,DART,Cryptocurrency,Bibtex,C++,DBaaS,OWL-S,Go,OpenStack,IaaS,OOP,Software Configuration Management,Operating Systems,RDF+"
"Adaptation of existing file systems,Selenium,visualisation,Tensorflow,clustering,NLP,statistics,AMBARI,Nutch,Keras,AWS,Lens,DIGITAL OCEAN,Spark,python,Natural language Processing,Labview,GraphQL,Impala,similarity analysis,MongoDB,Zookeeper,HIVE,machine learning,ANT,Artificial Intelligence,Data mining,Algorithms,HBASE,data analytics,Cassandra"
"Flume,AMBARI,Software Engineering,Tomcat,Program Management,Requirements Analysis,AWS,BigData,HIVE,Lens,Business Intelligence,Leadership,HBASE,Operating Systems,Product Development"
"OpenStack,Virtual Reality,AR,Nova,Nvidia"
"Wireless,LAN,Gnome,Nano,KDE,FUSE,.NET,Interfacing with Cloud APIs,VIM,OpenSUSE,AJAX,HTML,Ubuntu,MIPS,Socket Programming,Make,Debian,Processor design"
"FOAF,HTTP,Requirements Analysis,Integration,Business Intelligence,Enterprise Software,EII,Android,EAI,RDFS,IOT,Wireless,Web2.0,CISC,XML,SOA,.NET,SDLC,Security,SKOS,Processor design,RDF+,SPARQL,Program Management,Mobility,Agile Methodologies,Product Management"
"SOA,Torch,classification,Keras,RDFS,Selenium,machine learning,Labview,GIT,Bibtex,Artificial Intelligence,EII,Tensorflow,data analytics,ETL,RDF+"
"Impala,NodeJS,Knowledge Management,Flash,AWS,MapReduce,Web Semantics,CSS"
"SOA,EAI,C,Java,SPARQL,RDFS,Scala,Software Forge,C++,Go,MOM,OWL-S,EII,RSS,SKOS,ETL,RDF+"
"Product Development,SAP CRM,SDLC,Software Engineering,Program Management,Integration,Resource Management,Business Intelligence,Enterprise Software,Agile Methodologies,Product Management,CRM,Business Analysis"
"classification,Arduino,Make,Emacs,NLTK,Microprocessor,Android,clustering,NLP,statistics,KDE,Cypress,Microcontroller,3D computer graphics,Procedural generation of scenes,Natural language Processing,Debian,x86,R,Algorithms,3D data visualization,Transistors,similarity analysis,Torch,machine learning,Chromium,data analytics"
"IaaS,Leadership,Operating Systems"
"buck,Nanode,React Native,Fresco,Nova,Stetho,C++,Microprocessor,infer,bolts-android"
"3D computer graphics,Bibtex,3D data visualization"
"JavaScript,Nova,DART,GIT,DBaaS,Analysis of file system variations,JQuery,NodeJS,Flash,Web Semantics,ReactJs,Knowledge Management,C++,Django,Angular2,CSS,File system utilities,Database-Basked Web Sites,Cloud Computing,MeanStack,OOP,Go"
"Paas,SaaS,Nova,Cryptocurrency,AR,App Inventor,OpenStack,Bibtex,Cinder,Android,Swift,IaaS,Android Studio"
"Paas,HTTP,IOT,Network Security,Nanode,Virtual Reality,IPV6,.NET,LAN,Wireless,CISC,DBaaS,Nvidia,Cinder,IaaS,Transistors,Security,Processor design,IPV4"
"Software Engineering,Scala,Agile,Scrum,Software Forge,Fuchsia,automation,OOP,Go,UML,Perl"
"Web2.0,LAN,Assembly Level Language,AMBARI,Neural Networks,IOT,System Modelling,MapReduce,Kafka,Lens,Labview,Embedded Operating Systems,Algorithms,IPV4,statistics,Security,data analytics,VoIP"
"Requirements Analysis,Shimmer,Stetho,PathPicker,Kali-Linux,CRM,Gnome,makeitopen,React Native,Fresco,Agile Methodologies,Debian,Product Development,redex,Angular2,buck,Software Engineering,Program Management,conceal,SDLC,Product Management,bolts-android"
"Nano,GNU,Make,DART,Emacs,IPV6,Android,KDE,Socket Programming,Scrum,Debian,C,Gnome,Scala,RISC,C++,FUSE,App Inventor,Nvidia,Android Studio,LAN,Mobility,AR"
"database management,Selenium,NLTK,Data mining"
"SOA,FOAF,Virtualisation,HTTP,Processor design,.NET,Wireless,CISC,ETL,MOM,OWL-S,Cassandra,ARM,VoIP,IPV4"
"rebound,redex,System Modelling"
"Neural Networks,.NET,IPV4,visualisation,OpenStack,Tensorflow,clustering,3D modeling and animation,statistics,Keras,SaaS,Procedural generation of scenes,Natural language Processing,Swift,NLTK,Paas,python,Labview,R,Algorithms,similarity analysis,Torch,RDF,Data mining,Chromium,ARM,Artificial Intelligence,RSS"
"Adaptation of existing file systems,File system utilities,Nutch,Tomcat,BigData,Hadoop,Lens,3D data visualization,HBASE,Impala,Spark"
GIT
"AMBARI,Nutch,AWS,Zookeeper,System Modelling,Hadoop,HIVE,BigData,ANT,DIGITAL OCEAN,Spark,Kafka,Impala,Operating Systems"
"Paas,makeitopen,Fresco,conceal,MongoDB,React Native,SaaS,Nova,3D computer graphics,GraphQL,DBaaS,SQL,Procedural generation of scenes,IaaS,Stetho"
"Fresco,Shimmer,bolts-android"
"Virtualisation,HTTP,Assembly Level Language,Emacs,IPV4,MIPS,Web2.0,Wireless,Network Security,KDE,OpenSUSE,3D computer graphics,Procedural generation of scenes,AngularJS,Ubuntu,Web Semantics,Debian,VoIP,Internet of THings,.NET,Gnome,HTML5,Security,Processor design,LAN,Mobility,Database-Basked Web Sites,VIM,CISC,LINUX,ARM"
"Flash,AngularJS,NoSQL,NodeJS,MongoDB,JavaScript,AJAX,HTML,GraphQL,Information Design,SQL,ReactJs,Dropbox"
"Adaptation of existing file systems,SAP CRM,Software Engineering,Program Management,Resource Management,Leadership"
"SAP CRM,visualisation,classification,Business Intelligence,Enterprise Software,Information Design,CRM,MeanStack,statistics,AMBARI,Keras,AWS,Interfacing with Cloud APIs,Lens,Leadership,AngularJS,Spark,Product Development,Tomcat,Knowledge Management,Django,Labview,R,Impala,similarity analysis,Program Management,database management,MapReduce,HIVE,Kafka,ANT,Agile Methodologies,HBASE,data analytics"
"JQuery,C,AR,Nutch,Tomcat,NodeJS,flask,Knowledge Management,Virtual Reality,Scala,VR,Django,AJAX,HTML,HTML5,Information Design,Java,automation,CSS"
"XML,SOA,Product Development,Scala,Integration,Resource Management,Leadership,SDLC,RDF+,SKOS,Business Analysis,SPARQL"
"buck,GIT,redex,System Modelling,Embedded Operating Systems,Bibtex,PathPicker,Operating Systems,bolts-android"
"Neural Networks,NoSQL,GNU,Selenium,Enterprise Software,NLTK,Kali-Linux,EII,Program Management,ETL,clustering,statistics,Nano,OpenSUSE,Leadership,Natural language Processing,RDF,Debian,FOAF,SOA,Gnome,Windows,FUSE,GraphQL,SKOS,RDF+,similarity analysis,Software Engineering,database management,Torch,VIM,R,MOM,LINUX,Product Management,Algorithms,data analytics"
"Adaptation of existing file systems,XML,JavaScript,Integration,Resource Management,Business Intelligence,Enterprise Software,Analysis of file system variations,JQuery,RDFS,flask,Interfacing with Cloud APIs,SOA,Web Semantics,FOAF,EAI,Requirements Analysis,Business Analysis,Django,RDF,Angular2,CSS,SPARQL,Software Engineering,Program Management,Database-Basked Web Sites,Cloud Computing,Agile Methodologies,OWL-S,RSS"
"Virtual Reality,AR"
"GIT,Bibtex,Nova"
"Agile,VR,Nvidia,Virtual Reality,automation"
"SOA,Java,Software Forge,Perl,CISC,Bibtex,OOP,OWL-S,EII,MIPS,RSS,Processor design,Internet of THings"
"Neural Networks,Arduino,Selenium,visualisation,Tensorflow,OpenStack,Nanode,clustering,statistics,Cypress,SaaS,Microprocessor,Raspberry Pi,IaaS,Paas,x86,R,Algorithms,Nvidia,Cinder,similarity analysis,database management,Torch,machine learning,Cryptocurrency,App Inventor,Chromium,data analytics"
"SDLC,Software Engineering,Program Management,MongoDB,Virtual Reality,IPV6,Business Intelligence,Resource Management,Integration,VR,Leadership,GraphQL,Agile Methodologies,Nvidia,Product Management,MIPS,Security,VoIP,Business Analysis"
"FOAF,Product Development,SPARQL,RDFS,RDF,App Inventor,MOM,OWL-S,EII,Android,RDF+"
"Product Development,Nanode,Arduino,MongoDB,Cypress,CRM,Integration,Raspberry Pi,SQL,Dropbox,Transistors,x86"
"JQuery,Information Design,AngularJS,Software Engineering,Knowledge Management,JavaScript,HTML,Interfacing with Cloud APIs,Django,MeanStack,AR,Angular2,Agile Methodologies,Product Management,Android,Android Studio,CSS,CRM"
"Virtualisation,Java,Mobility,Fuchsia,Socket Programming,Scrum,Software Forge,C++,automation,App Inventor,Processor design,IPV6,Go,Security,VoIP,Android Studio"
"NoSQL,Hadoop,EII,ETL,Flume,AWS,Lens,Ubuntu,FOAF,DIGITAL OCEAN,FUSE,GraphQL,SKOS,RDF+,SPARQL,MongoDB,MapReduce,HIVE,Kafka,ANT,RDF,OWL-S,Cassandra"
Android
"3D modeling and animation,makeitopen,rebound,Virtual Reality,redex,Fresco,Shimmer,VR,Stetho,PathPicker,React Native"
"EAI,C,Fuchsia,DART,Embedded Operating Systems,Go,automation"
"Arduino,Make,Pinguino,Fuchsia,Perl,Emacs,Kali-Linux,Gnome,HTML,NodeJS,flask,Microcontroller,Raspberry Pi,Ubuntu,Dropbox,Web Semantics,Debian,C,GNU,x86,Windows,Knowledge Management,C++,Angular2,DART,VIM,MeanStack,SQL,Go,Cassandra"
"Adaptation of existing file systems,Paas,C,Scala,Agile,Software Configuration Management,Software Forge,SaaS,Fuchsia,DART,DBaaS,Cinder,Go,UML,Analysis of file system variations"
"Adaptation of existing file systems,File system utilities,NoSQL,KDE,Make,OpenSUSE,Emacs,LINUX,Dropbox,Analysis of file system variations,Debian"
"Nova,Cryptocurrency,DBaaS,OpenStack,Cinder,IaaS,Swift"
"Fuchsia,automation,AR,App Inventor,Nvidia,Android Studio"
"Adaptation of existing file systems,Paas,Zookeeper,AMBARI,Tomcat,Impala,DIGITAL OCEAN,Hadoop,BigData,Lens,MapReduce,Cinder,OpenStack,Spark,Swift,HBASE"
"Mobility,IOT,RISC,GraphQL,SQL,Processor design,Cassandra"
"SAP CRM,Program Management,Requirements Analysis,Bibtex,Agile Methodologies,Cinder,OpenStack,CRM"
"Virtualisation,SAP CRM,.NET,Hadoop,Resource Management,IPV4,Flume,Wireless,Nutch,AWS,BigData,Lens,DIGITAL OCEAN,Spark,LAN,Software Engineering,Mobility,Zookeeper,HIVE,ANT,Agile Methodologies,Product Management,HBASE"
"conceal,React Native"
"Adaptation of existing file systems,LINUX,File system utilities,Gnome,Nano,GNU,conceal,Knowledge Management,rebound,redex,Shimmer,Debian,OpenSUSE,Windows,HTML,Kali-Linux,Database-Basked Web Sites,KDE,Make,infer,bolts-android"
"Lens,3D modeling and animation,AMBARI,Nutch,Zookeeper,MapReduce,Hadoop,ANT,3D computer graphics,Procedural generation of scenes,HBASE,BigData"
"3D data visualization,File system utilities,x86,NoSQL,Arduino,MongoDB,Microcontroller,Microprocessor,SQL,Analysis of file system variations"
"Software Engineering,Integration,Business Intelligence,Leadership,SDLC,Nvidia,Product Management,Enterprise Software,AR"
"Adaptation of existing file systems,GIT,Nutch,Analysis of file system variations,AWS,BigData,Nova,Swift,Bibtex,Cinder,OpenStack,Spark,Impala"
"Flume,Nutch,Tomcat,Zookeeper,AWS,HIVE,Kafka,ANT,DIGITAL OCEAN,Spark,Impala,HBASE,Cassandra"
"SAP CRM,Fresco,Requirements Analysis,Hadoop,Resource Management,Business Intelligence,PathPicker,CRM,Flume,Virtual Reality,AWS,BigData,Lens,Leadership,Dropbox,Spark,infer,Business Analysis,Tomcat,VR,AR,Shimmer,Nvidia,Software Engineering,Program Management,MongoDB,Zookeeper,Kafka,Agile Methodologies,HBASE,bolts-android,React Native,Cassandra"
"XML,SOA,AMBARI,Nanode,Tomcat,Virtual Reality,AWS,Cypress,Microcontroller,Hadoop,MapReduce,HIVE,Kafka,VR,Raspberry Pi,ETL,RDF,Impala,SPARQL,AR,Nutch"
"JQuery,JavaScript,flask,Knowledge Management,Cloud Computing,ReactJs,Interfacing with Cloud APIs,Database-Basked Web Sites,Android,Web Semantics,CSS,Android Studio"
"SOA,SPARQL,RDFS,System Modelling,ETL,Information Design,OWL-S,EII,Web Semantics,CSS,RDF+"
"EAI,Adaptation of existing file systems,3D modeling and animation,File system utilities,3D data visualization,RDFS,Knowledge Management,Flash,Interfacing with Cloud APIs,Django,HTML,HTML5,Information Design,Android,Web Semantics,Analysis of file system variations,Android Studio"
"buck,makeitopen,rebound,Gnome,Nano,Scala,React Native,Make,automation,infer,OpenSUSE,Java,Stetho,Emacs,PathPicker,OOP,UML,GraphQL,bolts-android,Debian,Cassandra"
"JQuery,x86,Cypress,AJAX,Raspberry Pi,Bibtex,HTML5,Cinder,Web Semantics"
"Leadership,Product Development,GIT,SPARQL,Business Analysis,RDFS,Requirements Analysis,Resource Management,Product Management,Business Intelligence,RDF,SAP CRM,SDLC,OWL-S,EII,Program Management,ETL,RDF+"
"OpenSUSE,GIT,AMBARI,Arduino,Windows,GNU,MapReduce,HIVE,Hadoop,Lens,Bibtex,Kali-Linux,LINUX,Emacs,HBASE,Transistors,Spark"
"Flume,ANT,AMBARI,BigData,Tomcat,Zookeeper,AWS,MapReduce,Nova,Kafka,Cryptocurrency,DBaaS,DIGITAL OCEAN,OpenStack,IaaS,Impala,Spark,Nutch"
"SAP CRM,Business Analysis,Requirements Analysis,Enterprise Software,App Inventor,Android,CRM,Product Development"
"Adaptation of existing file systems,File system utilities,x86,Arduino,Cypress,Pinguino,Transistors,Nanode"
"buck,makeitopen,conceal,React Native,redex,Shimmer,Stetho,infer,bolts-android"
"FOAF,XML,NodeJS,flask,Flash,System Modelling,Hadoop,HIVE,Kafka,Lens,ETL,HTML5,Information Design,EII,RSS,Operating Systems,RDF+"
"GNU,KDE,Make,LINUX,VIM,OpenSUSE,FUSE,Ubuntu"
"File system utilities,System Modelling,VR,Embedded Operating Systems,Analysis of file system variations,Operating Systems"
"makeitopen,GIT,Nanode,buck,conceal,React Native,Pinguino,Fresco,redex,Raspberry Pi,Bibtex,PathPicker,Shimmer,Transistors,Stetho,rebound"
"Adaptation of existing file systems,Flume,GIT,.NET,File system utilities,ANT,Nvidia,Assembly Level Language,BigData,Kafka,Lens,VR,MapReduce,Bibtex,DIGITAL OCEAN,HBASE,Impala,AR,Internet of THings"
"Business Analysis,Software Engineering,Requirements Analysis,Integration,Resource Management,Leadership,SDLC,Nvidia,Product Management,AR"
"XML,Kali-Linux,Arduino,Make,ReactJs,Information Design,Nanode,SOA,3D modeling and animation,RDFS,Interfacing with Cloud APIs,3D computer graphics,Procedural generation of scenes,Web Semantics,Debian,FOAF,EAI,JavaScript,x86,Windows,Knowledge Management,Django,RDF,Angular2,Transistors,SKOS,CSS,Database-Basked Web Sites,Cloud Computing,NodeJS,VIM,FUSE,MOM,LINUX,RSS"
"classification,Hadoop,visualisation,Kafka,NLP,statistics,NoSQL,RDFS,Impala,BigData,Procedural generation of scenes,Natural language Processing,Dropbox,NLTK,Tomcat,python,Labview,R,GraphQL,SKOS,Nutch,Zookeeper,HIVE,machine learning,ANT,RDF,HBASE,Chromium,Artificial Intelligence"
"FOAF,Virtualisation,HTTP,.NET,IPV4,IPV6,EII,MIPS,Web2.0,RDFS,IOT,VoIP,XML,SOA,Assembly Level Language,RDF,Security,SKOS,RDF+,SPARQL,Mobility,MOM,OWL-S,RSS"
"Cryptocurrency,Cinder,Nova,DBaaS,Operating Systems"
"Dropbox,Embedded Operating Systems,System Modelling,Analysis of file system variations"
"FOAF,XML,Assembly Level Language,EII,Android,Operating Systems,Android Studio"
"Microcontroller,Nanode,Arduino,Cypress,Pinguino,SaaS,Nova,Raspberry Pi,DBaaS,OpenStack,IaaS,Transistors,x86"
"Adaptation of existing file systems,Leadership,SAP CRM,Business Analysis,Software Engineering,Program Management,Requirements Analysis,Integration,Resource Management,Business Intelligence,Enterprise Software,OOP,SDLC,Nvidia,Product Management,Analysis of file system variations,Product Development"
"Network Security,Mobility,Virtual Reality,RISC,VR,AR,Processor design,IPV6,MIPS,ARM,CISC"
"SOA,C,GIT,Agile,Scrum,C++,DART,Bibtex,OOP,OpenStack,UML,automation,Swift,Cinder"
"System Modelling,Cypress,Software Configuration Management,Software Forge,C++,Lens,VR,AR,Nvidia,Transistors,Operating Systems"
"buck,3D modeling and animation,makeitopen,rebound,x86,React Native,Fresco,Shimmer,Raspberry Pi,Stetho,infer,Android Studio"
"SOA,EAI,Keras,Torch,Neural Networks,RDFS,Scrum,Selenium,similarity analysis,XML,Labview,RDF,Natural language Processing,Tensorflow,Data mining,UML,RSS,RDF+"
System Modelling
"SAP CRM,HTTP,NoSQL,Requirements Analysis,Integration,Resource Management,Business Intelligence,Enterprise Software,IPV4,MIPS,Web2.0,Wireless,CISC,Business Analysis,RISC,Security,Processor design,File system utilities,Program Management,Mobility,SQL,ARM"
"Adaptation of existing file systems,Nanode,SaaS,VR,AR,Microprocessor,Nvidia,x86"
"Neural Networks,Requirements Analysis,Selenium,Integration,Assembly Level Language,visualisation,MIPS,Web2.0,NLP,Socket Programming,IOT,Natural language Processing,NLTK,CISC,Internet of THings,clustering,.NET,Business Analysis,RISC,Labview,R,Algorithms,Nvidia,LAN,Program Management,Mobility,AR,Data mining,Product Management,Chromium,Virtual Reality,data analytics"
"Java,Fuchsia,Virtual Reality,Scrum,Software Forge,C++,automation,UML"
"Scala,Agile,JavaScript,Fuchsia,Nova,Perl,DBaaS,OpenStack,UML,NodeJS,Software Configuration Management,SaaS,Interfacing with Cloud APIs,AngularJS,IaaS,Swift,C,ReactJs,Software Forge,C++,automation,VR,HTML5,Cinder,Django,CSS,Database-Basked Web Sites,machine learning,Web Semantics"
"SAP CRM,Requirements Analysis,Selenium,Hadoop,Resource Management,Business Intelligence,Enterprise Software,Android,clustering,AMBARI,Keras,AWS,Leadership,DIGITAL OCEAN,Spark,NLTK,Tomcat,python,R,Algorithms,similarity analysis,Program Management,machine learning,Agile Methodologies,Data mining,Product Management,Chromium,Artificial Intelligence"
"Neural Networks,classification,database management,python,Virtual Reality,Selenium,VR,AR,Algorithms,data analytics,visualisation,Data mining,Tensorflow,Chromium,Artificial Intelligence"
"FOAF,SOA,Nanode,Arduino,Cypress,ETL"
"NLP,similarity analysis,statistics,Neural Networks,classification,python,machine learning,Labview,data analytics,Data mining,Tensorflow,Chromium,NLTK,Artificial Intelligence"
"clustering,NLP,Nvidia,classification,Virtual Reality,Torch,Selenium,VR,R,Algorithms,Natural language Processing,NLTK,AR"
GIT
"Virtual Reality,Nvidia"
"JQuery,flask,Database-Basked Web Sites,Cloud Computing,ReactJs,Django,MeanStack,AngularJS,Web Semantics,CSS"
"NLP,similarity analysis,Neural Networks,Keras,Torch,Selenium,machine learning,Labview,Raspberry Pi,Chromium,data analytics,Android Studio"
"Flume,Nutch,NoSQL,MongoDB,DIGITAL OCEAN,Nova,Tomcat,App Inventor,HIVE,DBaaS,Dropbox,OpenStack,Android,Cassandra,Impala,HBASE,Android Studio"
"Microprocessor,Nano,GNU,ReactJs,Emacs,Information Design,Pinguino,Nanode,JQuery,flask,Cypress,Microcontroller,Interfacing with Cloud APIs,HTML,Web Semantics,Flash,Gnome,Windows,Bibtex,CSS,Kali-Linux,VIM,Angular2"
"Virtualisation,Selenium,visualisation,Android,Web2.0,NLP,AMBARI,Keras,Socket Programming,BigData,Wireless,Natural language Processing,Dropbox,python,RISC,App Inventor,Android Studio,similarity analysis,Torch,GraphQL,ARM,Artificial Intelligence"
"System Modelling,Operating Systems"
"Adaptation of existing file systems,Analysis of file system variations,File system utilities"
"Scrum,makeitopen,Java,Scala,conceal,Agile,redex,Fresco,Shimmer,Django,Flash,AJAX,HTML,C++,AngularJS,JavaScript,infer,bolts-android"
"NLP,similarity analysis,statistics,database management,Nvidia,Natural language Processing,VR,R,Algorithms,Artificial Intelligence,Data mining,NLTK,data analytics"
"SAP CRM,Network Security,visualisation,classification,Agile,.NET,Selenium,Resource Management,DART,Assembly Level Language,Enterprise Software,Information Design,IPV6,UML,database management,Fuchsia,CRM,JQuery,NLP,IOT,Wireless,Agile Methodologies,Leadership,VoIP,clustering,Flash,Product Development,Knowledge Management,C++,Django,AJAX,HTML5,Security,Perl,JavaScript,Processor design,LAN,Software Engineering,Mobility,Database-Basked Web Sites,Cloud Computing,Program Management,machine learning,MeanStack,Scrum,SDLC,Data mining,Go"
"Leadership,SAP CRM,Business Analysis,Software Engineering,Virtual Reality,Requirements Analysis,Business Intelligence,VR,AR,SDLC,Product Management,Enterprise Software"
"C,Java,Scrum,DART,App Inventor,OOP,automation,Bibtex,Android,Perl,Android Studio"
"clustering,NLP,classification,Keras,python,System Modelling,Integration,Algorithms,Labview,Business Intelligence,R,App Inventor,data analytics,visualisation,Data mining,Tensorflow,Android,NLTK,Artificial Intelligence,CRM"
"File system utilities,Analysis of file system variations"
"rebound,Fresco,PathPicker,Android,Swift,Android Studio"
"Flume,AngularJS,Nutch,NodeJS,flask,Database-Basked Web Sites,ReactJs,Interfacing with Cloud APIs,HIVE,Django,MeanStack,HTML,Angular2,HTML5,Information Design,DIGITAL OCEAN,JavaScript,CSS"
"EAI,XML,GIT,SPARQL,Bibtex,HTML5,ETL"
"SOA,EAI,RDFS,FOAF,XML,VR,AR,MOM,Nvidia,EII,ETL,RSS"
"File system utilities,Cryptocurrency,Stetho,Cinder,IaaS,Analysis of file system variations"
"Bibtex,GIT,Emacs,Ubuntu"
"NoSQL,JavaScript,Information Design,NodeJS,flask,HTML,AngularJS,Dropbox,Web Semantics,GIT,SQL,System Modelling,Django,Embedded Operating Systems,Bibtex,HTML5,ReactJs,MongoDB,Cloud Computing,MeanStack,Database-Basked Web Sites,GraphQL,Cassandra"
"clustering,Nvidia,Torch,Nanode,database management,Cypress,Keras,Arduino,Labview,VR,Algorithms,visualisation,Natural language Processing,Pinguino,Tensorflow,Chromium,data analytics,x86"
"SOA,FOAF,GIT,RDFS,Virtual Reality,VR,AR,App Inventor,MOM,Nvidia,Android Studio"
"Scrum,Java,Arduino,Agile,Pinguino,Perl,Microprocessor,UML,Analysis of file system variations,Nutch,Cypress,Software Configuration Management,AWS,Spark,x86,Tomcat,Software Forge,C++,Microcontroller,DART,Impala,File system utilities,Zookeeper,OOP"
System Modelling
"Product Development,SAP CRM,Business Analysis,Program Management,Requirements Analysis,Enterprise Software,App Inventor,Agile Methodologies,Product Management,Android,CRM,Android Studio"
"3D modeling and animation,NoSQL,3D computer graphics,GraphQL,3D data visualization,SQL,Dropbox"
System Modelling
"Adaptation of existing file systems,GIT,File system utilities,makeitopen,Bibtex,Android Studio"
"3D modeling and animation,Program Management,Integration,Procedural generation of scenes,SDLC,Product Management,CRM"
"XML,Leadership,File system utilities,Business Analysis,Software Engineering,Program Management,Requirements Analysis,Integration,Resource Management,Agile Methodologies,Business Intelligence,Enterprise Software,App Inventor,SDLC,SOA,Product Management,Android,RDF+,SPARQL,ETL,Android Studio"
"Leadership,Enterprise Software,Agile Methodologies"
"3D modeling and animation,Embedded Operating Systems,3D data visualization,3D computer graphics,Operating Systems"
Adaptation of existing file systems
"VR,Virtual Reality,Nvidia"
"3D computer graphics,3D modeling and animation,JavaScript,AngularJS,NodeJS,Database-Basked Web Sites,ReactJs,Scala,Interfacing with Cloud APIs,C++,Django,MeanStack,HTML,Procedural generation of scenes,HTML5,Information Design,Agile,Cinder,Perl,Software Configuration Management"
"Neural Networks,classification,ReactJs,Information Design,Android,JQuery,NLP,NodeJS,flask,Interfacing with Cloud APIs,AngularJS,visualisation,NLTK,SOA,Flash,python,Knowledge Management,Django,Labview,AJAX,App Inventor,JavaScript,Android Studio,similarity analysis,database management,Database-Basked Web Sites,Cloud Computing,Keras,machine learning,Data mining,Angular2,data analytics"
"AngularJS,Knowledge Management,Interfacing with Cloud APIs,HTML,HTML5,Information Design,Web Semantics"
"Gnome,Pinguino,GNU,x86,Nano,Arduino,Windows,Cypress,Microcontroller,VIM,OpenSUSE,conceal,Emacs,Microprocessor,Transistors,Make,Nanode"
"rebound,redex,PathPicker,Shimmer,bolts-android"
"3D modeling and animation,DART,3D computer graphics,App Inventor,PathPicker,Procedural generation of scenes,bolts-android"
"FOAF,EAI,SPARQL,RDFS,Virtual Reality,AR,RSS,SKOS,RDF+"
"Web2.0,LAN,HTTP,Mobility,Virtual Reality,VR,AR,IPV4,VoIP,Nvidia,Security,Android Studio,Processor design,Internet of THings"
"Paas,makeitopen,AMBARI,rebound,redex,SaaS,Hadoop,Shimmer,MapReduce,Cryptocurrency,PathPicker,Cinder,OpenStack,HBASE,Swift,infer,bolts-android"
"Nano,GNU,JavaScript,Emacs,Information Design,Android,3D modeling and animation,flask,Interfacing with Cloud APIs,OpenSUSE,HTML,AngularJS,Ubuntu,Dropbox,Web Semantics,ReactJs,3D computer graphics,Windows,SQL,App Inventor,HTML5,3D data visualization,Android Studio,Cloud Computing,VIM,LINUX,Angular2,Cassandra"
"JQuery,OpenSUSE,SPARQL,GNU,flask,KDE,FUSE,Ubuntu,MeanStack,RDF,HTML5,LINUX,SKOS,RDF+"
"Web2.0,Leadership,Requirements Analysis,Network Security,Product Development,Business Analysis,Mobility,IOT,Resource Management,CISC,IPV4,Product Management,Processor design,CRM"
"Dropbox,MongoDB,GraphQL,Cassandra"
"Android,GIT,App Inventor,Nvidia"
"Web2.0,LAN,IOT,HTTP,Mobility,Processor design,Assembly Level Language,.NET,Virtualisation,RISC,Wireless,IPV6,GIT,IPV4,CISC,MIPS,Network Security,Security,ARM,VoIP,Internet of THings"
"makeitopen,rebound,redex,Fresco,VR,Stetho,Nvidia,infer"
"Adaptation of existing file systems,Neural Networks,classification,Arduino,Pinguino,visualisation,Analysis of file system variations,x86,clustering,3D modeling and animation,statistics,3D computer graphics,Raspberry Pi,Procedural generation of scenes,Nanode,Data mining,Labview,3D data visualization,File system utilities,MongoDB,Torch,SQL,data analytics"
"Paas,MongoDB,Nova,Cryptocurrency,DBaaS,Cinder"
"Nanode,Arduino,Virtual Reality,Pinguino,Raspberry Pi,App Inventor,Microprocessor,Android,Transistors,Android Studio"
"Scrum,Network Security,Scala,Agile,.NET,Resource Management,Assembly Level Language,Business Intelligence,SAP CRM,IPV6,HTTP,Software Configuration Management,Product Development,Web2.0,Socket Programming,IOT,Wireless,Leadership,VoIP,Internet of THings,GIT,Business Analysis,Bibtex,LAN,Mobility,OOP,Agile Methodologies,MIPS,ARM"
"clustering,NLP,similarity analysis,statistics,Neural Networks,classification,Keras,python,machine learning,Labview,Artificial Intelligence,visualisation,NLTK,data analytics"
"Java,Arduino,Agile,Fuchsia,Shimmer,DART,Stetho,PathPicker,Microprocessor,UML,makeitopen,Virtual Reality,Microcontroller,Fresco,infer,C,Nanode,rebound,redex,Scala,automation,Nvidia,Transistors,Go,React Native"
"XML,Adaptation of existing file systems,Gnome,Kali-Linux,GNU,KDE,Emacs,MOM,OWL-S,App Inventor,Android Studio,RDF+,Analysis of file system variations,ETL,RSS"
Android
"Adaptation of existing file systems,File system utilities,Information Design,NodeJS,flask,Knowledge Management,ReactJs,Interfacing with Cloud APIs,MeanStack,AJAX,HTML,HTML5,AngularJS,Database-Basked Web Sites,CSS"
"Kali-Linux,Nano,GNU,Stetho,Emacs,visualisation,R,statistics,Keras,KDE,React Native,OpenSUSE,NLTK,Gnome,Windows,rebound,FUSE,Debian,buck,database management,conceal,Torch,VIM,Embedded Operating Systems,Data mining,bolts-android"
"3D modeling and animation,Pinguino,3D computer graphics,3D data visualization,Nvidia"
"Dropbox,Android,GraphQL,NoSQL,Android Studio"
"HTTP,Pinguino,Network Security,Flume,AMBARI,Socket Programming,Wireless,Raspberry Pi,Dropbox,VoIP,Assembly Level Language,x86,Tomcat,GraphQL,Security,Transistors,Processor design,MongoDB,Zookeeper,MapReduce,Kafka,ANT,SQL,HBASE,Cypress"
"Scrum,Java,Arduino,Microcontroller,Make,Microprocessor,UML,EAI,AMBARI,RDFS,SKOS,Software Configuration Management,BigData,Raspberry Pi,Debian,XML,SOA,Windows,C++,FUSE,Impala,RDF+,SPARQL,Zookeeper,HIVE,Kafka,ANT,RDF,OOP,MOM,OWL-S,HBASE"
"Web2.0,Network Security,.NET,HTTP,Mobility,Virtual Reality,SQL,IPV6,VR,GraphQL,Nvidia,Dropbox,Socket Programming,Cassandra"
"Scala,SaaS,Scrum,Software Forge,Fuchsia,automation,Cryptocurrency,GraphQL,OOP,Agile,Go,UML,DART,Analysis of file system variations"
"HTTP,Socket Programming,Assembly Level Language,RISC,Wireless,App Inventor,Security,Android,Android Studio"
"Leadership,SAP CRM,Software Engineering,Nano,KDE,Make,Ubuntu,VIM,Flash,Database-Basked Web Sites,Business Intelligence,FUSE,Emacs,Knowledge Management,LINUX,Cloud Computing,Enterprise Software,Debian,CSS,CRM"
"GIT,Shimmer,Bibtex,PathPicker,infer,bolts-android"
"3D computer graphics,NLP,similarity analysis,statistics,visualisation,Selenium,SaaS,3D modeling and animation,machine learning,Cryptocurrency,Labview,R,Algorithms,DBaaS,Tensorflow,Cinder,IaaS,Chromium,Artificial Intelligence"
"SOA,FOAF,NoSQL,RDFS,Processor design,Wireless,Embedded Operating Systems,Bibtex,VoIP,Security,ETL,RDF+"
Adaptation of existing file systems
"Virtual Reality,Nvidia,AR,GraphQL,SQL,Cassandra"
"Adaptation of existing file systems,Pinguino,File system utilities,Nanode,Arduino,Cypress,Microcontroller,GIT,Bibtex,Analysis of file system variations"
"3D modeling and animation,File system utilities,x86,Nova,DBaaS,Procedural generation of scenes,3D data visualization,OpenStack,IaaS,Transistors,Swift"
"makeitopen,buck,Torch,SDLC,Software Engineering,Program Management,React Native,Requirements Analysis,Android Studio,Integration,Resource Management,Leadership,App Inventor,Shimmer,Agile Methodologies,Product Management,Android,bolts-android,Stetho,RSS"
"3D modeling and animation,Microcontroller,x86,Nano,GNU,Windows,KDE,Make,Pinguino,VIM,3D computer graphics,Emacs,LINUX,Transistors,Cypress"
"clustering,similarity analysis,ReactJs,NodeJS,Keras,Cloud Computing,Flash,Perl,MeanStack,AJAX,HTML,HTML5,AngularJS,Natural language Processing,Tensorflow,Chromium,CSS"
"File system utilities,3D computer graphics,Procedural generation of scenes,Analysis of file system variations"
"Android,App Inventor,Android Studio"
"Adaptation of existing file systems,SAP CRM,Neural Networks,Requirements Analysis,Selenium,Integration,Resource Management,Business Intelligence,Enterprise Software,visualisation,Tensorflow,Program Management,Analysis of file system variations,CRM,clustering,NLP,statistics,Natural language Processing,NLTK,SDLC,python,Algorithms,similarity analysis,File system utilities,database management,Torch,Agile Methodologies,Data mining,Product Management,Business Analysis"
"Procedural generation of scenes,3D data visualization"
"EAI,SOA,GIT,SPARQL,Windows,LINUX,System Modelling,VIM,OpenSUSE,Embedded Operating Systems,Emacs,Kali-Linux,Ubuntu,Bibtex,FOAF,RSS"
"JQuery,ANT,Operating Systems,AngularJS,Tomcat,System Modelling,Database-Basked Web Sites,Cloud Computing,AWS,Hadoop,BigData,Lens,AJAX,Embedded Operating Systems,HTML5,Information Design,Knowledge Management,Spark,Impala,Interfacing with Cloud APIs,CSS"
"Flash,Selenium,Integration,Resource Management,Business Intelligence,Information Design,Tensorflow,Business Analysis,HTML,Fresco,Leadership,CRM,Product Development,python,Django,Labview,VR,AR,Shimmer,buck,Software Engineering,Torch,bolts-android"
"Neural Networks,Keras,Zookeeper,Selenium,MapReduce,ANT,R,Chromium,Artificial Intelligence"
"SAP CRM,Neural Networks,Nanode,Arduino,Pinguino,Integration,Resource Management,Business Intelligence,DBaaS,Tensorflow,Business Analysis,NLP,statistics,classification,Keras,Microcontroller,Agile Methodologies,Raspberry Pi,Natural language Processing,IaaS,CRM,Swift,Paas,Product Development,python,x86,R,Algorithms,Cinder,Transistors,Leadership,Program Management,Torch,SDLC"
"File system utilities,Scala,Software Forge,Fuchsia,DART,Go,Java,Android,automation,Android Studio"
"Make,GNU,Kali-Linux,VIM"
"App Inventor,Android Studio"
"XML,C,ETL,MOM"
"BigData,Scala,JavaScript,Fuchsia,Hadoop,DART,IPV4,EII,JQuery,EAI,Software Configuration Management,AWS,Interfacing with Cloud APIs,Lens,DIGITAL OCEAN,Spark,Web Semantics,FOAF,SOA,C,ReactJs,Tomcat,Knowledge Management,Software Forge,AJAX,HTML5,CSS,RDF+,Database-Basked Web Sites,Cloud Computing,Zookeeper,HIVE,Kafka,ANT,MOM,Flume"
"EAI,buck,Software Engineering,Program Management,conceal,rebound,redex,Integration,Resource Management,Leadership,Agile Methodologies,Product Management,Android,Android Studio,Enterprise Software,infer,bolts-android"
"JQuery,Information Design,AngularJS,Gnome,Windows,Knowledge Management,Make,VIM,AJAX,FUSE,Emacs,Kali-Linux,CSS"
"Flume,Requirements Analysis,Business Analysis,Software Engineering,Program Management,Enterprise Software,Zookeeper,AWS,HIVE,Agile Methodologies,SDLC,Business Intelligence,3D computer graphics,SAP CRM,3D data visualization,CRM,Impala,Product Development"
"App Inventor,Android Studio"
"NodeJS,flask,JavaScript,Interfacing with Cloud APIs,HTML,Angular2,Information Design,OpenStack,App Inventor,Android Studio"
"EAI,SOA,SPARQL,RDFS,XML,RDF,MOM,OWL-S,SKOS,ETL,RSS"
"Zookeeper,Impala,MapReduce,Tomcat"
"Dropbox,Scrum,Java,NoSQL,SQL,Windows,KDE,Virtual Reality,Software Configuration Management,Fuchsia,DART,Ubuntu,AR,Emacs,OOP,MongoDB,Nvidia,Go,UML,Make"
"XML,FOAF,SPARQL,RDFS,MongoDB,Embedded Operating Systems,GraphQL,MOM,SQL,EII,RDF,SKOS,Operating Systems,RDF+"
"EAI,makeitopen,File system utilities,SPARQL,RDFS,System Modelling,Embedded Operating Systems,MOM,EII,RDF+,Analysis of file system variations,infer,RSS"
"buck,Network Security,Assembly Level Language,HTTP,Mobility,Processor design,rebound,.NET,Fresco,RISC,Shimmer,Wireless,conceal,IPV4,IPV6,MIPS,Security,Analysis of file system variations,ARM,CISC,bolts-android"
"GIT,Nanode,Pinguino,Raspberry Pi,Bibtex,Transistors,x86"
"Java,Agile,.NET,Resource Management,Enterprise Software,DBaaS,OpenStack,Business Analysis,Network Security,IOT,SaaS,IaaS,Swift,CISC,Paas,Product Development,Software Forge,C++,Nova,Cinder,LAN,Cryptocurrency,OOP,SDLC,Product Management"
"PathPicker,Flume,makeitopen,AMBARI,Nutch,React Native,Fresco,BigData,infer,GIT,Tomcat,Bibtex,Impala,buck,conceal,Zookeeper,MapReduce,HIVE,Kafka,ANT,HBASE,bolts-android"
"GIT,Bibtex"
"EAI,AR,x86,RDFS,Arduino,RDF,Nvidia,EII,Android,Android Studio,ETL,RDF+"
"React Native,Stetho,Analysis of file system variations,PathPicker,3D modeling and animation"
"XML,Nano,conceal,redex,Fresco,Shimmer,Stetho,EII"
"Virtualisation,Network Security,Emacs,IPV6,MIPS,ETL,Web2.0,KDE,Virtual Reality,IOT,Debian,CISC,FOAF,HTTP,Gnome,Windows,VR,AR,App Inventor,Nvidia,LAN,Mobility,VIM,RSS"
"SAP CRM,Neural Networks,classification,Artificial Intelligence,Requirements Analysis,Selenium,Resource Management,Business Intelligence,visualisation,CRM,clustering,statistics,Leadership,Natural language Processing,C,Business Analysis,Software Forge,C++,automation,Go,R,Algorithms,Software Engineering,Labview,OOP,Agile Methodologies,Product Management,data analytics"
"Adaptation of existing file systems,File system utilities,3D modeling and animation,3D computer graphics,Analysis of file system variations"
"Neural Networks,classification,Selenium,visualisation,Tensorflow,clustering,NLP,statistics,BigData,IaaS,Flume,Tomcat,rebound,Impala,Spark,similarity analysis,database management,Zookeeper,machine learning,ANT,Data mining,Chromium,Artificial Intelligence"
"Adaptation of existing file systems,File system utilities,GIT,Bibtex,Operating Systems"
"Wireless,LAN,IOT,Network Security,Socket Programming,Assembly Level Language,IPV6,File system utilities,VoIP,IPV4,MIPS,HTTP,ARM,Processor design,Internet of THings"
"Microprocessor,Nanode,ReactJs,Integration,Business Intelligence,DBaaS,OpenStack,x86,HTML,Microcontroller,Interfacing with Cloud APIs,Raspberry Pi,IaaS,CRM,Web Semantics,Paas,Product Development,System Modelling,Django,AJAX,Embedded Operating Systems,Cinder,Transistors,Leadership,Database-Basked Web Sites,Cryptocurrency,Agile Methodologies,Product Management"
"Gnome,GNU,Windows,Make,Ubuntu,VIM,LINUX"
"Virtualisation,SAP CRM,HTTP,visualisation,classification,Requirements Analysis,Selenium,Resource Management,Labview,Business Intelligence,DBaaS,IPV6,MIPS,Business Analysis,clustering,NLP,Socket Programming,Microcontroller,SaaS,Wireless,Raspberry Pi,Natural language Processing,Swift,NLTK,CISC,Internet of THings,Paas,Assembly Level Language,Product Development,python,Torch,.NET,SDLC,Algorithms,Security,Transistors,Processor design,similarity analysis,Program Management,database management,machine learning,Cryptocurrency,Agile Methodologies,Data mining,Product Management,data analytics"
"Information Design,Flash,Nova,DBaaS,Stetho,Microprocessor,makeitopen,NodeJS,flask,React Native,SaaS,Interfacing with Cloud APIs,HTML,IaaS,Web Semantics,ReactJs,Knowledge Management,rebound,redex,Django,Labview,Angular2,JavaScript,conceal,Database-Basked Web Sites,Cloud Computing"
"3D modeling and animation,GIT,conceal,Bibtex,3D data visualization,Nvidia,Procedural generation of scenes"
"C,Scrum,Fuchsia,Software Configuration Management,Software Forge,DART,OOP,UML"
"Go,C,Software Configuration Management,Scrum"
Analysis of file system variations
"Dropbox,VR,makeitopen,GraphQL,Nvidia"
"JavaScript,Cloud Computing,ReactJs,AJAX,Interfacing with Cloud APIs,MeanStack,VR,Information Design,Web Semantics,CSS"
"clustering,NLP,Neural Networks,database management,python,Selenium,rebound,Artificial Intelligence,Fresco,machine learning,Labview,3D computer graphics,Procedural generation of scenes,NLTK,3D data visualization,Algorithms,R,infer,data analytics"
"GIT,SAP CRM,Business Analysis,Software Engineering,Program Management,Requirements Analysis,Integration,Resource Management,Business Intelligence,Leadership,Bibtex,Agile Methodologies,Nvidia,Product Management,CRM,Enterprise Software,AR,Product Development"
"C,File system utilities,SDLC,Software Engineering,Program Management,Agile,Software Configuration Management,Scala,Integration,Resource Management,automation,Go,Business Intelligence,Enterprise Software,Agile Methodologies,Product Management,Java,DART,Analysis of file system variations,CRM"
"File system utilities,Scala,Agile,Software Configuration Management,Software Forge,Bibtex,UML,Analysis of file system variations"
"buck,conceal,React Native,Fresco,VR,Bibtex,3D data visualization,Nvidia"
"clustering,Tensorflow,Labview,machine learning"
"Virtual Reality,Nvidia,App Inventor,AR,Android Studio"
"Java,Software Configuration Management,Fuchsia,OOP,DART"
"XML,Flash,AngularJS,NodeJS,flask,RDFS,ReactJs,Software Forge,automation,Django,MeanStack,HTML,HTML5,Information Design,OOP,Web Semantics,SPARQL"
"clustering,Scrum,Operating Systems,classification,Keras,Agile,Torch,Software Forge,machine learning,Labview,R,App Inventor,data analytics,Natural language Processing,Go,Tensorflow,Embedded Operating Systems,Perl,NLTK,Artificial Intelligence,Android Studio"
"Gnome,Nano,GNU,KDE,Make,Nova,VIM,OpenSUSE,FUSE,Cinder,Debian"
"Flume,Cryptocurrency,AMBARI,Nutch,Tomcat,Paas,AWS,SaaS,Hadoop,HIVE,Kafka,Lens,Nova,DBaaS,OpenStack,HBASE,Swift"
"Software Configuration Management,Scala,Microprocessor,EII,UML,Analysis of file system variations,EAI,Cypress,Microcontroller,Raspberry Pi,Swift,FOAF,Paas,Nanode,automation,SOA,Transistors,SKOS,RDF+,File system utilities,SPARQL,MOM,RSS"
"FOAF,3D modeling and animation,RDFS,RDF,Procedural generation of scenes,MOM,OWL-S,SKOS,RDF+"
"SOA,FOAF,SPARQL,RDF,EII,ETL,RDF+"
"3D computer graphics,Flash,Information Design,Cloud Computing,JavaScript,Interfacing with Cloud APIs,Django,MeanStack,HTML,Procedural generation of scenes,HTML5,AngularJS,Web Semantics,CSS"
"Web2.0,makeitopen,Nano,Windows,rebound,Assembly Level Language,FUSE,App Inventor,IPV4,Kali-Linux,Bibtex,Android,Android Studio,React Native,CISC,Internet of THings"
"FOAF,Nano,Windows,LINUX,System Modelling,Nova,VIM,OpenSUSE,Embedded Operating Systems,Procedural generation of scenes,DBaaS,Ubuntu,OpenStack,IaaS,Swift,Debian"
"System Modelling,Operating Systems"
"Adaptation of existing file systems,Neural Networks,Selenium,Hadoop,Shimmer,Stetho,Tensorflow,machine learning,Flume,NLP,statistics,AMBARI,Keras,Lens,DIGITAL OCEAN,Spark,infer,clustering,redex,GIT,python,rebound,Natural language Processing,Bibtex,Impala,buck,similarity analysis,File system utilities,database management,conceal,Zookeeper,MapReduce,HIVE,Kafka,Data mining,HBASE,Chromium,data analytics"
"EAI,Bibtex,NoSQL,Cassandra"
"SAP CRM,NoSQL,Fresco,Hadoop,Business Intelligence,CRM,Flume,AMBARI,Nutch,AWS,BigData,Lens,Dropbox,Spark,Product Development,redex,Integration,Impala,Software Engineering,Program Management,HIVE,Kafka,Agile Methodologies,SQL,Product Management"
"Adaptation of existing file systems,GIT,x86,Arduino,Microcontroller,Bibtex,Microprocessor,Android Studio,Transistors,Nanode"
"3D modeling and animation,GIT"
"conceal,buck,React Native,makeitopen"
"Dropbox,Microcontroller,Arduino,Cypress,Pinguino,SaaS,Cryptocurrency,Raspberry Pi,DBaaS,Cinder,OpenStack,Swift"
"buck,VR,makeitopen,HTML,Virtual Reality,Database-Basked Web Sites,React Native,redex,Fresco,Interfacing with Cloud APIs,Nvidia,AngularJS,AJAX,Stetho,PathPicker,Information Design,Knowledge Management,infer,HTML5"
"SAP CRM,Gnome,Nano,KDE,Make,Requirements Analysis,Integration,Resource Management,OpenSUSE,SDLC,Business Intelligence,Kali-Linux,CRM,Debian,Product Development"
"NoSQL,ReactJs,Android,Flume,AMBARI,AWS,Interfacing with Cloud APIs,Lens,AngularJS,DIGITAL OCEAN,Dropbox,Spark,Web Semantics,GraphQL,HTML5,Impala,CSS,Android Studio,MongoDB,MeanStack,SQL,HBASE,Cassandra"
"JQuery,SOA,GIT,NodeJS,flask,Cloud Computing,Flash,Interfacing with Cloud APIs,AJAX,HTML,Angular2,HTML5,Information Design,Android,Web Semantics,CSS"
"Web2.0,IOT,Network Security,.NET,HTTP,x86,Mobility,Microcontroller,Cypress,Assembly Level Language,RISC,Wireless,Raspberry Pi,Microprocessor,Pinguino,MIPS,Security,Transistors,ARM,Processor design,Internet of THings"
"Cryptocurrency,OpenStack,DBaaS,Paas"
"FOAF,buck,PathPicker,conceal,Fresco,rebound,SaaS,Nova,Shimmer,MOM,OWL-S,OpenStack,bolts-android,React Native,ETL,RSS"
"3D modeling and animation,3D data visualization,Agile Methodologies,Program Management,x86,Requirements Analysis,System Modelling,Integration,Arduino,Raspberry Pi,Business Intelligence,Leadership,Procedural generation of scenes,SDLC,Microprocessor,Product Management,Embedded Operating Systems,Enterprise Software,Operating Systems,Nanode"
"Adaptation of existing file systems,FOAF,SAP CRM,Integration,Resource Management,Business Intelligence,Enterprise Software,Android,Analysis of file system variations,Business Analysis,SOA,CRM,XML,Product Development,SDLC,RDF,App Inventor,RDF+,File system utilities,SPARQL,Software Engineering,MOM,RSS"
"SOA,EAI,GIT,RDFS,FOAF,Requirements Analysis,Integration,Enterprise Software,Bibtex,Agile Methodologies,Nvidia,RDF,RSS,ETL,OWL-S"
"Virtual Reality,AR,Nvidia"
"3D computer graphics,3D data visualization"
"GNU,C,Software Configuration Management,Java,Scala,Windows,Agile,Scrum,Fuchsia,C++,DART,OpenSUSE,Emacs,IPV4,Kali-Linux,Go,MIPS,Security,automation,Debian"
"Software Forge,x86,Agile,Cypress,Scrum,Fuchsia,Perl,Microprocessor,OOP,3D data visualization,DART"
"x86,Arduino,Microcontroller,Hadoop,MapReduce,Microprocessor,Transistors,Nutch"
"Scala,Agile,Software Forge,C++,DART,OOP,automation"
"Flume,AMBARI,Nutch,Zookeeper,AWS,Hadoop,HIVE,Kafka,Lens,DIGITAL OCEAN,Spark"
"FOAF,buck,makeitopen,classification,NLP,Selenium,Stetho,ETL"
"visualisation,JavaScript,Selenium,Integration,Business Intelligence,Information Design,Neural Networks,JQuery,statistics,Keras,flask,Interfacing with Cloud APIs,AngularJS,CRM,Pinguino,x86,Django,Labview,AJAX,Angular2,HTML5,ReactJs,Program Management,Cloud Computing,Requirements Analysis,data analytics,Artificial Intelligence"
"Business Analysis,Software Engineering,Program Management,Requirements Analysis,Integration,Business Intelligence,Leadership,GraphQL,SDLC,CRM,Product Development"
"GNU,Make,Nova,Emacs,PathPicker,makeitopen,KDE,SaaS,Dropbox,IaaS,Swift,Debian,Paas,GIT,Gnome,redex,GraphQL,Cinder,buck,conceal,infer,Cryptocurrency,LINUX"
"Adaptation of existing file systems,Virtualisation,SAP CRM,Network Security,Neural Networks,GNU,Requirements Analysis,Integration,Resource Management,Assembly Level Language,Business Intelligence,Kali-Linux,IPV6,HTTP,Analysis of file system variations,Leadership,Ubuntu,NLTK,VoIP,.NET,Business Analysis,RISC,R,Security,Processor design,LAN,File system utilities,Program Management,Mobility,VIM,Agile Methodologies,LINUX,Product Management,Chromium"
File system utilities
"Adaptation of existing file systems,LAN,Network Security,NoSQL,Processor design,CISC,IPV6,Virtualisation,3D computer graphics,GraphQL,IPV4,3D data visualization,SQL,HTTP,Security,Internet of THings,ARM,VoIP,Cassandra"
"Adaptation of existing file systems,Nvidia,Keras,Analysis of file system variations,Virtual Reality,Torch,Selenium,MongoDB,Labview,GraphQL,Natural language Processing,Data mining,Tensorflow,Chromium,NLTK,Artificial Intelligence,Cassandra"
"buck,AMBARI,Tomcat,AWS,Zookeeper,System Modelling,Hadoop,HIVE,Lens,Embedded Operating Systems,DIGITAL OCEAN,Impala,infer"
"Adaptation of existing file systems,NoSQL,Requirements Analysis,Hadoop,Business Intelligence,CRM,Flume,AMBARI,Nutch,AWS,Leadership,Dropbox,Tomcat,GraphQL,Impala,Software Engineering,MapReduce,HIVE,Agile Methodologies,Product Management,HBASE,Cassandra"
"3D modeling and animation,NoSQL,3D computer graphics,Procedural generation of scenes,SQL,Dropbox"
"Product Development,GIT,Nanode,Software Engineering,Requirements Analysis,Integration,Resource Management,Business Intelligence,Enterprise Software,Agile Methodologies,Business Analysis"
"Neural Networks,classification,GNU,Make,Selenium,Shimmer,Stetho,Kali-Linux,Tensorflow,clustering,NLP,makeitopen,Keras,React Native,Fresco,OpenSUSE,3D computer graphics,Ubuntu,Debian,Gnome,Labview,statistics,Algorithms,3D data visualization,database management,machine learning,R,Data mining,Chromium"
Android Studio
"clustering,NLP,similarity analysis,GIT,NoSQL,database management,python,Torch,System Modelling,Labview,Embedded Operating Systems,Bibtex,Natural language Processing,Tensorflow,statistics,R,Chromium,NLTK,data analytics"
"Web2.0,Virtualisation,HTTP,Mobility,Socket Programming,Assembly Level Language,LAN,Wireless,VR,AR,Nvidia,MIPS,Network Security,Security,Transistors,Processor design,Internet of THings"
"HTTP,SaaS,JavaScript,Hadoop,Nova,Information Design,IPV6,AMBARI,NodeJS,AWS,Interfacing with Cloud APIs,HTML,DIGITAL OCEAN,Swift,ReactJs,Tomcat,Knowledge Management,AJAX,Transistors,Processor design,Database-Basked Web Sites,Cloud Computing,MapReduce,HIVE,Kafka,MeanStack"
"FOAF,NoSQL,MongoDB,SQL,RDF,GraphQL,OWL-S"
"3D modeling and animation,visualisation,database management,python,Torch,Shimmer,Labview,Stetho,Procedural generation of scenes,3D data visualization,Keras,R,infer,Artificial Intelligence,bolts-android"
"C,SAP CRM,Product Development,Resource Management,Program Management,Software Configuration Management,Software Forge,Business Intelligence,C++,DART,VR,AR,OOP,SDLC,Nvidia,Product Management,Enterprise Software,CRM"
"File system utilities,Gnome,Windows,KDE,Make,Integration,Resource Management,VIM,Enterprise Software,Kali-Linux,Ubuntu,Product Management,Analysis of file system variations,Business Analysis"
"GIT,AMBARI,Hadoop,Scala,System Modelling,Software Configuration Management,Software Forge,MapReduce,C++,DART,ANT,Embedded Operating Systems,Bibtex,OOP,Zookeeper,DIGITAL OCEAN,Go,Kafka,Operating Systems"
"SAP CRM,classification,ReactJs,Selenium,DART,Information Design,JQuery,NLP,statistics,NodeJS,Interfacing with Cloud APIs,HTML,Web Semantics,Flash,python,Fuchsia,Torch,System Modelling,Embedded Operating Systems,Perl,JavaScript,similarity analysis,Program Management,database management,Requirements Analysis,Operating Systems,Artificial Intelligence"
"3D computer graphics,Procedural generation of scenes,3D data visualization"
"Business Analysis,Software Engineering,Requirements Analysis,Integration,Business Intelligence,Product Management"
"Flash,Database-Basked Web Sites,ReactJs,Interfacing with Cloud APIs,Django,AJAX,Information Design,Knowledge Management,Web Semantics"
Bibtex
"Android,Android Studio"
"Web2.0,Flash,NodeJS,Mobility,flask,Knowledge Management,Assembly Level Language,RISC,AJAX,HTML,Angular2,Processor design,IPV6,ReactJs,JavaScript,VoIP"
Android
"FOAF,RDF+,SPARQL,RSS"
"SOA,FOAF,Gnome,Nano,RDFS,KDE,Kali-Linux,GNU,FUSE,visualisation,Natural language Processing,NLP,RDF,SKOS,Debian,clustering"
"buck,NoSQL,conceal,MongoDB,rebound,redex,Stetho,SQL,bolts-android,infer,Cassandra"
"Virtualisation,Network Security,.NET,Shimmer,Assembly Level Language,Stetho,IPV4,IPV6,JQuery,makeitopen,flask,Flash,IOT,Fresco,Interfacing with Cloud APIs,Wireless,HTML,AngularJS,CISC,Internet of THings,FOAF,SOA,ReactJs,Knowledge Management,rebound,redex,RISC,AJAX,Angular2,Security,JavaScript,Processor design,buck,Mobility,conceal,MeanStack,OWL-S"
"SAP CRM,GNU,Integration,Enterprise Software,Emacs,CRM,3D modeling and animation,KDE,3D computer graphics,Procedural generation of scenes,Ubuntu,Debian,Gnome,Windows,FUSE,Software Engineering,Program Management,VIM,Agile Methodologies,LINUX,Product Management,Business Analysis"
"IOT,LAN,GIT,Nanode,Scala,Processor design,Microcontroller,Cypress,Assembly Level Language,Fuchsia,RISC,C++,IPV4,Microprocessor,Pinguino,Security,Software Configuration Management,CISC,Internet of THings"
"VIM,OpenSUSE,App Inventor,NLTK,DBaaS,Android,IaaS,Android Studio"
"Flume,Tomcat,HIVE,ANT,App Inventor,Android,Impala,Android Studio"
"3D modeling and animation,IOT,Gnome,Nano,GNU,Assembly Level Language,RISC,OpenSUSE,IPV4,VoIP"
"Adaptation of existing file systems,GIT,File system utilities,System Modelling,Bibtex,Analysis of file system variations"
"GIT,Product Development,Software Engineering,Program Management,Requirements Analysis,Resource Management,Bibtex,Agile Methodologies,Product Management,CRM"
"XML,EAI,OWL-S,Cypress,Requirements Analysis,System Modelling,EII,Enterprise Software,Microprocessor,SOA,Product Management,Transistors,SKOS,RDF+"
"Scrum,MongoDB,NoSQL,Nano,KDE,SQL,C++,DART,OpenSUSE,GraphQL,Kali-Linux,Ubuntu,Software Configuration Management,Cassandra"
"Business Intelligence,Virtualisation,VoIP"
"statistics,Tensorflow,database management,Chromium,Data mining,Cryptocurrency,Labview,visualisation,Cinder,OpenStack,Swift,data analytics"
"SOA,FOAF,Product Development,EAI,AR,Business Analysis,Software Engineering,Virtual Reality,CRM,Integration,XML,SDLC,VR,Embedded Operating Systems,MOM,Product Management,RDF+,Operating Systems,RSS"
"clustering,Adaptation of existing file systems,Gnome,NoSQL,python,Analysis of file system variations,Make,LINUX,VIM,OpenSUSE,Windows,GraphQL,Ubuntu,Chromium,Cassandra"
"Flume,AMBARI,Nutch,Tomcat,Zookeeper,BigData,HIVE,Kafka,Lens,MapReduce,File system utilities,Spark,Analysis of file system variations"
"C,AMBARI,Scrum,Fuchsia,BigData,Lens,OOP,DIGITAL OCEAN,Go,Impala"
"Adaptation of existing file systems,HTTP,Neural Networks,.NET,EII,Network Security,Analysis of file system variations,ETL,clustering,Socket Programming,IOT,Wireless,NLTK,VoIP,Internet of THings,XML,EAI,python,RISC,Labview,R,SKOS,Processor design,LAN,File system utilities,SPARQL,database management,Torch,RDF,Artificial Intelligence"