-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathggs.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 503.
2308 lines (2308 loc) · 141 KB
/
ggs.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
acronym;title;rank
3DIMPVT;International Conference on 3D Imaging, Modeling, Processing, Visualization & Transmission;
3DPVT;International Symposium on 3D Data Processing, Visualization and Transmission;
3DTV-CON;3Dtv-Conference: the True Vision - Capture, Transmission and Display of 3D Video;
3DUI;IEEE Symposium on 3D User Interfaces;
3DV;International Conference on 3D Vision;
3PGCIC;International Conference on P2P, Parallel, Grid, Cloud, and Internet Computing;
A-SSCC;Asian Solid-State Circuits Conference;
AAAC;Symposium of Asian Association for Algorithms and Computation;
AAAI;Conference on Artificial Intelligence;A++
AAIM;Algorithmic Applications in Management;
AAMAS;Adaptive Agents and Multi-Agents Systems;A
AAMAS-TRUST;Trust in Agent Societies;
ABZ;Abstract State Machines, Alloy, B and Z;
AC;Aiaa/Ceas Aeroacoustics Conference;
ACALCI;Australian Conference on Artificial Life and Computational Intelligence;
ACC;Applied Computing Conference;
ACCMCC;Australasian Conference on Combinatorial Mathematics and Combinatorial Computing;
ACCS;Conference Cognitive Science;
ACCT;International Workshop on Algebraic and Combinatorial Coding Theory;
ACCTT;International Conference on Advances in Computing, Control, and Telecommunication Technologies;
ACCV;Asian Conference on Computer Vision;B
ACE;Australasian Computing Education Conference (Ace);
ACHI;Advances in Computer-Human Interaction;
ACII;Affective Computing and Intelligent Interaction;B-
ACIIDS;Asian Conference on Intelligent Information and Database Systems;
ACIS ICIS;IEEE/Acis International Conference on Computer and Information Science;
ACISP;Australasian Conference on Information Security and Privacy;
ACIVS;Advanced Concepts for Intelligent Vision Systems;B-
ACL;Association of Computational Linguistics;A++
ACL2;Workshop on the Acl2 Theorem Prover and its Applications;
ACMDEV;ACM Symposium on Computing and Development;
ACML;Asian Conference on Machine Learning;
ACMMM;ACM Multimedia;A++
ACMSE;ACM Southeast Regional Conference;
ACNS;International Conference on Applied Cryptography and Network Security;A-
ACPR;Asian Conference on Pattern Recognition;
ACRA;Australasian Conference on Robotics and Automation;
ACRI;Cellular Automata for Research and Industry;
ACS;IEEE International Symposium on Asynchronous Circuits and Systems;
ACSAC;Annual Computer Security Applications Conference;A
ACSD;International Conference on Application of Concurrency to System Design;B-
ACSSC;Asilomar Conference on Signals, Systems and Computers;
ADA-EUROPE;International Conference on Reliable Software Technologies;
ADBIS;Advances in Databases and Information Systems;
ADC;Australasian Database Conference;
ADCOM;International Conference on Advanced Computing and Communications;
ADCS;Australasian Document Computing Symposium;
ADHOC-NOW;International Conference on Ad-Hoc Networks and Wireless;
ADHOCNETS;Ad Hoc Networks;B-
ADMA;International Conference on Advanced Data Mining and Applications;B-
ADMI;International Workshop on Agents and Data Mining Interaction;
ADPRL;IEEE International Symposium on Adaptive Dynamic Programming and Reinforcement Learning;
ADS;Agent-Directed Simulation;
ADT;Algorithmic Decision Theory;
AE;International Conference on Applied Electronics;
AEROCONF;IEEE Aerospace Conference;
AFRICACRYPT;International Conference on Cryptology in Africa;B-
AFRICON;Africon;
AFRIGRAPH;Computer Graphics, Virtual Reality, Visualisation and Interaction in Africa;
AGI;Artificial General Intelligence;
AGILE;Agile Conference on Geographic Information Science;
AH;Augmented Human International Conference;
AH-UM;International Conference on Adaptive Hypermedia and Adaptive Web-Based Systems;
AHS;Adaptive Hardware and Systems;
AI;Australasian Joint Conference on Artificial Intelligence;
AI*IA;Congress of the Italian Association for Artificial Intelligence;
AIAI;Artificial Intelligence Applications and Innovations;
AICCSA;Acs/IEEE International Conference on Computer Systems and Applications;
AICE;Australian Institute of Computer Ethics Conference;
AICI;Artificial Intelligence and Computational Intelligence;
AICT;Advanced Industrial Conference on Telecommunications;
AIED;International Conference on Artificial Intelligence in Education;B
AIIDE;Artificial Intelligence and Interactive Digital Entertainment;
AIM;International Conference on Advanced Intelligent Mechatronics;
AIME;Artificial Intelligence in Medicine in Europe;
AIML;Advances in Modal Logic;
AIMS;Autonomous Infrastructure, Management and Security;
AIMSA;Artificial Intelligence: Methodology, Systems, Applications;
AINA;Advanced Information Networking and Applications;B
AIPR;Applied Imagery Pattern Recognition Workshop;
AIPS;International Conference on Artificial Intelligence Planning Systems;
AIRS;Asia Information Retrieval Symposium;
AIRWEB;Adversarial Information Retrieval on the Web;
AISB;Artificial Intelligence and the Simulation of Behaviour;
AISC;Artificial Intelligence and Symbolic Computation;
AISC;Australasian Information Security Conference;
AISEC;Ai & Security Workshop;
AIST;International Conference on Analysis of Images, Social Networks and Texts;
AISTATS;International Conference on Artificial Intelligence and Statistics;A+
AJCAI;Australian Joint Conference on Artificial Intelligence;
AJIM;Aslib Journal of Information Management;
ALENEX;Workshop on Algorithm Engineering and Experiments;B
ALG;Engg Workshop on Algorithm Engineering;
ALGEBRA;European Conference on Computer Algebra;
ALGOSENSORS;Algorithmic Aspects of Wireless Sensor Networks;
ALIFE;IEEE International Symposium on Artificial Life;
ALLERTON;Allerton Conference on Communication, Control, and Computing;
ALT;Algorithmic Learning Theory;B
ALTA;Australasian Language Techology Workshop;
AMAST;Algebraic Methodology and Software Technology;
AMC;International Workshop on Advanced Motion Control;
AMCC;American Control Conference;A
AMCIS;Americas Conference on Information Systems;B
AMDO;Articulated Motion and Deformable Objects;
AMFG;Analysis and Modeling of Faces and Gestures;
AMI;Ambient Intelligence;
AMIA;American Medical Informatics Annual Fall Symposium;A-
AMR;Adaptive Multimedia Retrieval;
AMS;Asia International Conference on Modelling and Simulation;
AMSTA;Agent and Multi-Agent Systems: Technologies and Applications;
AMT;Active Media Technology;
AMTA;Conference of the Association for Machine Translation in the Americas;
AMW;Alberto Mendelzon International Workshop on Foundations of Data Management;
ANALCO;Workshop on Analytic Algorithmics and Combinatorics;
ANCS;Architectures for Networking and Communications Systems;B
AND;Analytics for Noisy Unstructured Text Data;
ANLP;Conference on Applied Natural Language Processing;
ANNPR;Artificial Neural Networks in Pattern Recognition;
ANSS;Annual Simulation Symposium;B
ANT;International Conference on Ambient Systems, Networks and Technologies;
ANTS;IEEE International Conference on Advanced Networks and Telecommunications Systems;
AOFA;International Conference on Probabilistic, Combinatorial, and Asymptotic Methods in the Analysis of Algorithms (Was Conference on Analysis of Algorithms);
AOIS;Agent-Oriented Information Systems Workshop;
AOMAM;Academy of Management Annual Meeting;
APBC;Asia-Pacific Bioinformatics Conference;
APCC;Asia Pacific Conference on Communications;
APCCAS;Asia Pacific Conference on Circuits and Systems;
APCCM;Asia-Pacific Conference on Conceptual Modelling;
APCHI;Asia-Pacific Computer and Human Interaction;
APEC;Applied Power Electronics Conference;
APGV;Applied Perception in Graphics and Visualization;
APL;International Conference on Apl;
APLAS;Asian Symposium on Programming Languages and Systems;B-
APMC;Asia-Pacific Microwave Conference;
APMPPI;International Symposium on Advanced Packaging Materials. Processes, Properties and Interfaces;
APMRC;Asia-Pacific Magnetic Recording Conference;
APMS;International Conference on Advances in Production Management Systems;
APNOMS;Asia-Pacific Network Operations and Management Symposium;
APORS;Conference of the Association of Asian-Pacific Operational Research Societies;
APPEEC;IEEE Pes Asia-Pacific Power and Energy Engineering Conference;
APPROX;International Workshop on Approximation Algorithms for Combinatorial Optimization Problems;B
APPROX/RANDOM;International Workshop and International Workshop on Approximation, Randomization, and Combinatorial Optimization. Algorithms and Techniques;
APSCC;Asia-Pacific Services Computing Conference;
APSCOM;International Conference Advances Power System Control, Operation and Management;
APSEC;Asia-Pacific Software Engineering Conference;B
APSIPA;Asia-Pacific Signal and Information Processing Association Annual Summit and Conference;
APSYS;Asia-Pacific Workshop on Systems;
APWEB;Asia-Pacific Web Conference;
APWEB-WAIM;Web and Big Data;
ARACS;International Symposium on Advanced Research in Asynchronous Circuits and Systems;
ARC;Applied Reconfigurable Computing;
ARCS;Architecture of Computing Systems;
ARES;Availability, Reliability and Security;B
ARFTG;Arftg Microwave Measurement Conference;
ARITH;IEEE Symposium on Computer Arithmetic;
AROB;International Symposium on Artificial Life and Robotics;
ARPI;International Conference on Applied Robotics for Power Industry;
ARRUE;International Conference on Advanced Robotics Robots in Unstructured Environments;
ARSO;Advanced Robotics and its Social Impacts;
ARTCOM;Advances in Recent Technologies in Communication and Computing;
ARTSIT;Artsit, Interactivity & Game Creation (Was International Conference on Arts and Technology);
ASAP;Application-Specific Systems, Architectures, and Processors;B
ASE;Automated Software Engineering;A
ASIA;the International Power Electronics Conference - Ecce Asia;
ASIACCS;Asia Conference on Information, Computer and Communications Security;A
ASIACRYPT;International Conference on the Theory and Application of Cryptology and Information Security;A+
ASICON;International Conference on Asic;
ASID;International Conference on Anti-Counterfeiting, Security, and Identification;
ASIST;Association for Information Science and Technology;
ASMC;Advanced Semiconductor Manufacturing Conference;
ASONAM;Advances in Social Networks Analysis and Mining;B
ASOR;National Conference of the Australian Society for Operations Research;
ASP-DAC;Asia and South Pacific Design Automation Conference;B
ASPAAI;Conference on Advanced Signal Processing : Algorithms, Architectures, and Implemenations;
ASPLOS;Architectural Support for Programming Languages and Operating Systems;A+
ASRU;IEEE Automatic Speech Recognition and Understanding Workshop;B-
ASSETS;International ACM Sigaccess Conference on Computers and Accessibility;A-
AST;Automation of Software Test;
ASWC;Asian Semantic Web Conference;
ASWEC;Australian Software Engineering Conference;
ASYNC;Symposium on Asynchronous Circuits and Systems;B-
ATC;Autonomic and Trusted Computing;
ATMOS;Algorithmic Approaches for Transportation Modeling, Optimization, and Systems;
ATNAC;Australasian Telecommunication Networks and Applications Conference;
ATS;American Thoracic Society International Conference;
ATSIP;International Conference on Advanced Technologies for Signal & Image Processing;
ATVA;Automated Technology for Verification and Analysis;B-
AUIC;Australasian User Interface Conference;
AUPEC;Australasian Universities Power Engineering Conference;
AUSDM;Australasian Data Mining Conference;
AUSPDC;Australasian Symposium on Parallel and Distributed Computing (Was Ausgrid);
AUTOMATA;Cellular Automata Theory and Applicatins;
AUTOMOTIVEUI;Automotive User Interfaces and Interactive Vehicular Applications;
AUTOTESTCON;Autotestcon;
AUV;IEEE/Oes Autonomous Underwater Vehicles;
AUVT;Symposium on Autonomous Underwater Vehicle Technology;
AVI;Advanced Visual Interfaces;B
AVSS;Advanced Video and Signal Based Surveillance;B
AWIC;Atlantic Web Intelligence Conference;
BALTIC HLT;Human Language Technologies - the Baltic Perspective;
BASYS;IEEE/Ifip International Conference on Information Technology for Balanced Automation Systems;
BCAA;Annual Battery Conference on Applications and Advances;
BCB;ACM International Conference on Bioinformatics and Computational Biology;
BCS-HCI;British Computer Society Conference on Human-Computer Interaction;
BCTM;Bipolar/Bicmos Circuits and Technology Meeting;
BDCAT;IEEE/ACM International Conference on Big Data Computing, Applications and Technologies;
BERKELEY;Berkeley Workshop;
BHI;Biomedical and Health Informatics;
BIBE;Bioinformatics and Bioengineering;
BIBM;Bioinformatics and Biomedicine;
BICA;Annual International Conference on Biologically Inspired Cognitive Architectures;
BICS;Brain-Inspired Cognitive Systems Conference;
BIG DATA;IEEE International Conference on Big Data;B
BIGCOMP;International Conference on Big Data and Smart Computing;
BIGDATA CONGRESS;International Congress on Big Data;
BIOCAS;Biomedical Circuits and Systems Conference;
BIODEVICES;International Conference on Biomedical Electronics and Devices;
BIOINFORMATICS;International Conference on Bioinformatics;
BIOKDD;Data Mining in Bioinformatics;
BIOMED;Biomedical Engineering;
BIOROB;IEEE International Conference on Biomedical Robotics and Biomechatronics;
BIOSIGNALS;International Conference on Bio-Inspired Systems and Signal Processing;
BIR;International Conference on Perspectives in Business Informatics Research;
BIRTE;International Workshop on Business Intelligence for the Real Time Enterprise;
BIS;Business Information Systems;
BLED;Bled Econference;
BMEI;Biomedical Engineering and Informatics;
BMSB;International Symposium on Broadband Multimedia Systems and Broadcasting;
BMVC;British Machine Vision Conference;A
BNCOD;British National Conference on Databases;
BODYNETS;International Conference on Body Area Networks;
BPEC;Brazilian Power Electronics Conference;
BPM;International Conference in Business Process Management;A
BROADNETS;Broadband Communications, Networks and Systems;B-
BSB;Brazilian Symposium on Bioinformatics;
BSC;Biennial Symposium on Communications;
BSN;Body Sensor Networks;
BTAS;IEEE International Conference on Biometrics: Theory, Applications and Systems;A-
BTE;Workshop on Beyond Time and Errors;
BTW;Datenbanksysteme Für Business, Technologie Und Web;
BWCCA;Broadband and Wireless Computing, Communication and Applications;
C&C;Creativity and Cognition;
C&T;Communities and Technologies;
C3P;Hypercube Concurrent Computers and Applications;
C5;Conference on Creating, Connecting and Collaborating Through Computing;
CAAD FUTURES;Computer-Aided Architectural Design Futures;
CAADRIA;Association for Computer-Aided Architectural Design Research in Asia (Caadria) Annual Conference;
CAAN;Workshop on Combinatorial and Algorithmic Aspects of Networking;
CAAP;Colloquium on Trees in Algebra and Programming;
CACSD;IEEE International Symposium on Computer Aided Control System Design;
CAD/GRAPHICS;Computer-Aided Design and Computer Graphics;
CADE;International Joint Conference on Automated Reasoning;A-
CAINE;Isca International Conference on Computer Applications in Industry and Engineering;
CAIP;International Conference on Computer Analysis of Images and Patterns;B-
CAISE;International Conference on Advanced Information Systems Engineering;A
CAIVDE;Computer Animation, Information Visualisation, and Digital Effects;
CALCO;Conference on Algebra and Coalgebra in Computer Science;
CAMAD;Computer Aided Modeling and Design of Communication Links and Networks;
CAMSAP;IEEE International Workshop on Computational Advances in Multi-Sensor Adaptive Processing;
CANS;Cryptology and Network Security;
CARDIS;Smart Card Research and Advanced Application Conference;B-
CARS;Computer Assisted Radiology and Surgery;
CASC;Computer Algebra in Scientific Computing;
CASCON;Conference of the Centre for Advanced Studies on Collaborative Research;B
CASE;Workshop on Computer-Aided Software Engineering;
CASES;International Conference on Compilers, Architecture, and Synthesis for Embedded Systems;B
CASON;Computational Aspects of Social Networks;
CATA;International Conference on Computers and Their Applications;
CAV;Computer Aided Verification;A+
CBI;IEEE Conference on Business Informatics;
CBMI;Content-Based Multimedia Indexing;
CBMS;Computer-Based Medical Systems;B
CBR;Chinese Conference on Biometric Recognition;
CBSE;Component-Based Software Engineering;
CC;International Conference on Compiler Construction;B
CCA;IEEE International Conference on Control Applications;B-
CCC;IEEE Conference on Computational Complexity;A
CCCG;Canadian Conference on Computational Geometry;
CCDC;Chinese Control and Decision Conference;
CCECE;Canadian Conference on Electrical and Computer Engineering;
CCEM;IEEE International Conference on Cloud Computing in Emerging Markets;
CCGRID;Cluster Computing and the Grid;A
CCNC;IEEE Consumer Communications and Networking Conference;B
CCS;ACM Conference on Computer and Communications Security;A++
CCST;Conference on Computational Structures Technology;
CCSW;Cloud Computing Security Workshop;
CCWC;IEEE Annual Computing and Communication Workshop and Conference;
CD-MAKE;International Cross-Domain Conference for Machine Learning and Knowledge Extraction;
CDC;Conference on Decision and Control;A-
CDS;Cooperative Distributed Systems;
CDVE;Cooperative Design, Visualization and Engineering;
CEA;International Conference on Computer Engineering and Applications;
CEC;IEEE Congress on Evolutionary Computation;A-
CEE;International Conference on Computer and Electrical Engineering;
CEFC;IEEE Conference on Electromagnetic Field Computation;
CEIDP;Conference on Electrical Insulation and Dielectric Phenomena;
CERIAS;Information Security Symposium;
CET;International Conference on Computer Engineering and Technology;
CF;ACM International Conference on Computing Frontiers;B-
CFI;Conference on the Future of the Internet;
CFP;Computers, Freedom and Privacy;
CGAMES;Computer Games;
CGI;Computer Graphics International;B-
CGIV;International Conference on Computer Graphics, Imaging and Visualisation;
CGO;IEEE/ACM International Symposium on Code Generation and Optimization;A
CHANTS;Workshop Challenged Networks;
CHASE;Cooperative and Human Aspects of Software Engineering;
CHES;Workshop on Cryptographic Hardware and Embedded Systems;A+
CHI;Conference on Human Factors in Computing Systems;A++
CHI PLAY;Annual Symposium on Computer-Human Interaction in Play;
CHIIR;Conference on Human Information Interaction and Retrieval;
CHINACOM;International Icst Conference on Communications and Networking in China;
CHINZ;New Zealand Chapter'S International Conference on Computer-Human Interaction;
CHIRA;International Conference on Computer-Human Interaction Research and Applications;
CHP;International Conference on Computers for Handicapped Persons;
CHPSN;International Conference on Computers Helping People With Special Needs;
CHSI;Conference on Human System Interactions;
CI;Computational Intelligence;
CIA;Cooperative Information Agents;
CIAA;International Conference on Implementation and Application of Automata;
CIAC;International Conference on Algorithms and Complexity;
CIARP;Iberoamerican Congress on Pattern Recognition;
CIBCB;IEEE Symposium on Computational Intelligence in Bioinformatics and Computational Biology;
CIC;International Conference on Communications in Computing;
CICA;IEEE Symposium on Computational Intelligence in Control and Automation;
CICC;Custom Integrated Circuits Conference;B
CICLING;Conference on Intelligent Text Processing and Computational Linguistics;B-
CICM;Conference on Intelligent Computer Mathematics;
CICN;International Conference on Computational Intelligence and Communication Networks;
CICS;IEEE Symposium on Computational Intelligence in Cyber Security;
CICSYN;Computational Intelligence, Communication Systems and Networks;
CIDM;IEEE Symposium on Computational Intelligence and Data Mining;
CIDR;Conference on Innovative Data Systems Research;A
CIE;Computability in Europe Conference;B-
CIEP;International Power Electronics Congress;
CIFER;IEEE Symposium on Computational Intelligence for Financial Engineering;
CIG;Computational Intelligence and Games;B
CIKM;ACM International Conference on Information and Knowledge Management;A+
CIMA;International Workshop on Combinations of Intelligent Methods and Applications;
CIMCA;Computational Intelligence for Modelling, Control and Automation;
CIMSA;International Conference on Computational Intelligence for Measurement Systems and Applications;
CIMSIM;International Conference on Computational Intelligence, Modelling and Simulation;
CIMSIVP;IEEE Symposium on Computational Intelligence for Multimedia Signal and Vision Processing;
CINC;Computing in Cardiology Conference;
CIP;International Conference on Critical Infrastructure Protection;
CIRA;Computational Intelligence in Robotics and Automation;
CIS;International Conference on Computational Intelligence and Security;B-
CISCHED;IEEE Symposium on Computational Intelligence in Scheduling;
CISDA;IEEE Symposium on Computational Intelligence for Security and Defence Applications;
CISIM;Computer Information Systems and Industrial Management Applications;
CISIS;Complex, Intelligent and Software Intensive Systems;
CISP;International Congress on Image and Signal Processing;
CISS;Conference on Information Sciences and Systems;
CISTI;Iberian Conference on Information Systems and Technologies;
CIT;Computer and Information Technology;B-
CITA;International Conference on It in Asia;
CIVR;Conference on Image and Video Retrieval;A-
CLA;Concept Lattices and Their Applications;
CLEF;Cross Language Evaluation Forum Workshop;B
CLEI;Latin American Conference on Informatics;
CLEO;Conference on Lasers and Electro-Optics;
CLIHC;Latin American Conference on Human-Computer Interaction;
CLIMA;International Workshop on Computational Logic in Multi-Agent Systems;
CLIN;Computational Linguistics in the Netherlands;
CLIP;Workshop on Cross-Language Information Processing;
CLOSER;International Conference on Cloud Computing and Services Science;
CLOUD;IEEE International Conference on Cloud Computing;A-
CLOUDCOM;IEEE International Conference on Cloud Computing Technology and Science;B
CLUSTER;Cluster Computing Conference;A
CMC;Communications and Mobile Computing;
CMCN;Conference on Multimedia Computing and Networking;
CMD;International Conference on Condition Monitoring and Diagnosis;
CME;IEEE/Icme International Conference on Complex Medical Engineering;
CMMR;International Symposium on Computer Music Modeling and Retrieval;
CMS;Congress on Modelling and Simulation;
CMSB;Computational Methods in Systems Biology;
CN;International Science Conference on Computer Networks;
CNS;Communications and Networking Symposium;
CNSM;Conference on Network and Service Management;B-
CNSR;Conference on Communication Networks and Services Research;
COCOA;Conference on Combinatorial Optimization and Applications;
COCOON;Computing and Combinatorics Conference;
COCS;Conference on Organizational Computing Systems;
CODASPY;Conference on Data and Application Security and Privacy;
CODES+ISSS;International Conference on Hardware/Software Codesign and System Synthesis;B
CODIT;International Conference on Control, Decision and Information Technologies;
COG;Conference on Games (Was Computational Intelligence and Games Cig);
COGINFOCOM;IEEE International Conference on Cognitive Infocommunications;
COGSCI;Annual Conference of the Cognitive Science Society;B
COGSIMA;IEEE Conference on Cognitive and Computational Aspects of Situation Management;
COIN;International Workshop on Coordination, Organizations, Institutions, Norms and Ethics for Governance of Multi-Agent Systems (Ethics Added 2020);
COLING;International Conference on Computational Linguistics;A
COLLABORATECOM;Collaborative Computing;
COLT;Conference on Learning Theory;A+
COMAD;International Conference on Management of Data;
COMMA;Computational Models of Argument;
COMPEL;Workshop on Control and Modeling for Power Electronics;
COMPEURO;Annual European Computer Conference;
COMPLEXIS;International Conference on Complexity, Future Information Systems and Risk;
COMPLIFE;International Symposium on Computational Life Science;
COMPSAC;Annual International Computer Software and Applications Conference;B
COMPSYSTECH;Computer Systems and Technologies;
COMSNETS;Communication Systems and Networks;
COMSWARE;Communication System Software and Middleware;
CONCUR;International Conference on Concurrency Theory;A
CONEXT;ACM International Conference on Emerging Networking Experiments and Technologies;A
CONF-IRM;International Conference on Information Resources Management;
CONIELECOMP;International Conference on Electronics, Communications, and Computers;
CONLL;Conference on Computational Natural Language Learning;A
CONPAR - VAPP;Joint International Conference on Vector and Parallel Processing: Parallel Processing;
CONTEXT;International and Interdisciplinary Conference on Modelling and Using Context;
CONTROL;Ukacc International Conference on Control;
COOLCHIPS;IEEE Cool Chips;
COOP;International Conference on the Design of Cooperative Systems;
COOPIS;Cooperative Information Systems;B
COORDINATION;International Conference on Coordination Models and Languages;
COOTS;Usenix Conference on Object-Oriented Technologies and Systems;
COPLAS;Workshop on Constraint Satisfaction for Planning and Scheduling;
CORES;Computer Recognition Systems;
COSADE;International Workshop Constructive Side-Channel Analysis and Secure Design;
COSIT;Conference on Spatial Information Theory;A-
COSN;Conference on Online Social Networks;
CP;International Conference on Principles and Practice of Constraint Programming;A
CPAIOR;Integration of Ai and Or Techniques in Constraint Programming;B-
CPEM;Conference on Precision Electromagnetic Measurements;
CPM;Combinatorial Pattern Matching;B
CPP;Certified Programs and Proofs;
CPR;ACM Sigcpr/Sigmis Conference on Computer Personnel Research;
CPRE;Conference for Protective Relay Engineers;
CRD;International Conference on Computer Research and Development;
CRISIS;International Conference on Risks and Security of Internet and Systems;
CRITIS;Critical Information Infrastructures Security;
CRIWG;International Workshop on Groupware;
CROWNC;International Conference on Cognitive Radio Oriented Wireless Networks and Communications;B
CRV;Canadian Conference on Computer and Robot Vision;
CRYPTO;Advances in Cryptology;A++
CSAE;IEEE International Conference on Computer Science and Automation Engineering;
CSCIT;International Conference on Computer Sciences and Convergence Information Technology;
CSCL;Computer Supported Collaborative Learning;A-
CSCLOUD;International Conference on Cyber Security and Cloud Computing;
CSCN;IEEE Conference on Standards for Communications and Networking;
CSCW;ACM Conference on Computer Supported Cooperative Work;A+
CSCWD;International Conference on Computer Supported Cooperative Work in Design;B-
CSE;Computational Science and Engineering;B-
CSEDU;Internation Conference on Computer Supported Education;
CSEE&T;Conference on Software Engineering Education and Training;
CSF;IEEE Computer Security Foundations Symposium;A
CSFW;IEEE Computer Security Foundations Workshop;
CSIC;IEEE Computer Society International Conference;
CSICC;International Csi Computer Conference;
CSICS;Compound Semiconductor Integrated Circuit Symposium;
CSIE;Computer Science and Information Engineering;
CSIIRW;Cyber Security and Information Intelligence Research Workshop;
CSIT;Computer Sciences and Information Technologies;
CSL;Annual Conference on Computer Science Logic;B
CSN;IEEE International Conference on Communication Software and Networks;
CSNDSP;Communication Systems Networks and Digital Signal Processing;
CSNT;International Conference on Communication Systems and Network Technologies;
CSO;Computational Sciences and Optimization;
CSPA;International Colloquium on Signal Processing and its Applications;
CSR;Computer Science Symposium in Russia;
CSS;Computational Social Science;
CSSE;Computer Science and Software Engineering;
CTS;Collaboration Technologies and Systems;
CTW;Cologne-Twente Workshop on Graphs and Combinatorial Optimization;
CUU;Conference on Universal Usability;
CV;IEEE Vgtc Conference on Visualization;
CVE;Collaborative Virtual Environments;
CVMP;Conference on Visual Media Production;
CVPR;IEEE Conference on Computer Vision and Pattern Recognition;A++
CW;Cyberworlds;
CYBER;IEEE International Conference on Cyber Technology in Automation, Control, and Intelligent Systems;
CYBERC;Cyber-Enabled Distributed Computing and Knowledge Discovery;
CYCON;International Conference on Cyber Conflict;
DAC;Design Automation Conference;A
DAFX;Digital Audio Effects Conference;B-
DAGM-PR;Dagm Conference on Pattern Recognition;
DAIS;Ifip International Conference on Distributed Applications and Interoperable Systems;
DALT;Declarative Agent Languages and Technologies;
DAMMCC;International Workshop on Discrete Algorithms and Methods for Mobile Computing and Communications;
DAMON;Data Management on New Hardware;
DARPA-ISCE;Darpa Information Survivability Conference and Exposition;
DARS;Distributed Autonomous Robotic Systems;
DAS;International Workshop on Document Analysis Systems;B
DASC;IEEE International Symposium on Dependable, Autonomic and Secure Computing;
DASFAA;Database Systems for Advanced Applications;B
DATA;International Conference on Data Science, Technology and Applications;
DATE;Design, Automation and Test in Europe Conference;A
DAWAK;Data Warehousing and Knowledge Discovery;B
DB&IS;International Baltic Conference on Databases and Information Systems;
DBISP2P;Databases, Information Systems, and Peer-to-Peer Computing;
DBPL;Database Programming Languages;B-
DBSEC;Ifip Wg 11.3 Working Conference on Data and Applications Security (Also Known As Dbsec);B-
DC;International Conference on Dublin Core and Metadata Applications;
DCAI;International Conference on Distributed Computing and Artificial Intelligence;
DCC;Data Compression Conference;B
DCM;International Workshop on Developments in Computational Models;
DCOSS;Distributed Computing in Sensor Systems;B
DCS;IEEE International Caracas Conference on Devices, Circuits and Systems;
DDECS;Design and Diagnostics of Electronic Circuits and Systems;
DEBS;Distributed Event-Based Systems;B-
DELFI;Fachtagung "E-Learning" Der Gesellschaft Für Informatik;
DELTA;Symposium/Workshop on Electronic Design, Test and Applications;
DEMPED;IEEE International Symposium on Diagnostics for Electric Machines, Power Electronics and Drives;
DEON;Deontic Logic in Computer Science;
DEPCOS;International Conference on Dependability of Computer Systems;
DES;International Workshop on Discrete Event Systems;
DESE;Developments in Esystems Engineering;
DESRIST;Design Science Research in Information Systems and Technology;
DEST;IEEE International Conference on Digital Ecosystems and Technologies;
DEXA;Database and Expert Systems Applications;B
DFRWS;Digital Forensic Research Workshop;
DFT;Defect and Fault Tolerance in Vlsi and Nanotechnology Systems;B
DGCI;Digital Geometry for Computer Imagery;
DGO;International Conference on Digital Government Research;
DHM;International Conference on Digital Human Modeling;
DIAGRAMS;the Theory and Application of Diagrams;
DIC;IEEE International D Systems Integration Conference;
DICTA;Digital Image Computing Techniques and Applications;
DICTAP;International Conference on Digital Information and Communication Technology and its Applications;
DIGRA;Digital Games Research Association Conference;
DILS;Data Integration in the Life Sciences;
DIM;Digital Identity Management;
DIMEA;ACM International Conference on Advances in Computer Entertainment (Merged With Dimea, Digital Interactive Media in Entertainment and Arts, in 2009);B-
DIMVA;Gi International Conference on Detection of Intrusions and Malware and Vulnerability Asessment;B
DIP;International Conference on Digital Image Processing;
DIS;Designing Interactive Systems;A-
DISC;International Symposium on Distributed Computing;B
DL;ACM International Conference on Digital Libraries;
DLS;Dynamic Languages Symposium;
DLT;Developments in Language Theory;B-
DM;Siam Conference on Discrete Mathematics;
DMCC;Distributed Memory Computing Conference;
DMS;Distributed Multimedia Systems;
DMSN;Data Management for Sensor Networks;
DNA;Dna Computing and Molecular Programming;B-
DNA COMPUTING;International Workshop on Dna-Based Computers;
DNIS;Databases in Networked Information Systems;
DOCENG;ACM Symposium on Document Engineering;B-
DOLAP;International Workshop on Data Warehousing and Olap;A-
DPPI;Designing Pleasurable Products and Interfaces;
DRCN;Design of Reliable Communication Networks;
DRPT;IEEE International Conference on Electric Utility Deregulation, Restructuring and Power Technologies;
DRR;Document Recognition and Retrieval;
DS;Discovery Science;
DS-RT;Distributed Simulation and Real-Time Applications;
DSAA;IEEE International Conference on Data Science and Advanced Analytics;
DSD;Digital Systems Design;
DSL;Conference on Domain-Specific Languages;
DSM;Workshop on Domain Specific Modelling;
DSN;Dependable Systems and Networks;A
DSOM;Distributed Systems: Operations and Management;
DSP;International Conference on Digital Signal Processing;B
DTIP;Symposium on Design, Test, Integration and Packaging of Mems/Moems;
DX;International Workshop on Principles of Diagnosis;
DYSPAN;IEEE International Symposium on Dynamic Spectrum Access Networks;B-
E-ENERGY;Energy-Efficient Computing and Networking;
E-SCIENCE;IEEE International Conference on E-Science and Grid Computing;B-
E4MAS;International Workshop on Environments for Multiagent Systems;
EACL;Conference of the European Chapter of the Association for Computational Linguistics;A
EAIT;International Conference on Emerging Applications of Information Technology;
EAMT;Conference of the European Association for Machine Translation;
EANN;International Conference on Engineering Applications of Neural Networks;
EASE;International Conference on Evaluation and Assessment in Software Engineering;B-
EATIS;Euro American Conference on Telematics and Information Systems;
EC;ACM Conference on Economics and Computation;A+
EC-TEL;European Conference on Technology Enhanced Learning;B-
EC-WEB;Electronic Commerce and Web Technologies;
ECAI;European Conference on Artificial Intelligence;A-
ECAL;European Conference on Artificial Life;B
ECC;European Control Conference;B
ECCB;European Conference on Computational Biology;B
ECCE;European Conference on Cognitive Ergonomics;
ECCO;European Conference on Evolutionary Computation in Combinatorial Optimization;B-
ECCTD;European Conference on Circuit Theory and Design;
ECCV;European Conference on Computer Vision;A++
ECDG;European Conference on Digital Government (Was European Conference on E-Government Eceg);
ECDIM;International Symposium on Environmentally Conscious Design and Inverse Manufacturing;
ECDL;European Conference on Research and Advanced Technology for Digital Libraries;
ECEOC;European Conference and Exhibition on Optical Communications;
ECIR;European Conference on Information Retrieval;A-
ECIS;European Conference on Information Systems;B
ECMDA;European Conference on Model Driven Architecture Foundations and Applications;B-
ECMFA;European Conference on Modelling Foundations and Applications;
ECML;European Conference on Machine Learning;A
ECMR;European Conference on Mobile Robots;
ECMS;International Conference on Modelling and Simulation (Was Esm European Simulation Multiconference);
ECOC;European Conference on Optical Communication;
ECOOP;European Conference on Object-Oriented Programming;A+
ECOWS;European Conference on Web Services;
ECRTS;Euromicro Conference on Real-Time Systems;A
ECSA;European Conference on Software Architecture;B
ECSCW;European Conference on Computer Supported Cooperative Work;B
ECSQARU;European Conference on Symbolic and Quantitative Approaches to Reasoning With Uncertainty;
ECT;International Conference on Electronics Computer Technology;
ECTC;Electronic Components and Technology Conference;
ECTI-CON;International Conference on Electrical Engineering/Electronics, Computer, Telecommunications and Information Technology;
ECWT;European Conference on Wireless Technology;
ED-MEDIA;World Conference on Educational Multimedia, Hypermedia and Telecommunications;
EDBT;Extending Database Technology;A
EDBT-ICDT;Edbt/Icdt Workshops;
EDCC;European Dependable Computing Conference;
EDM;Educational Data Mining;B
EDOC;IEEE International Enterprise Distributed Object Computing Conference;B
EDSSC;International Conference on Electron Devices and Solid-State Circuits;
EDTC;European Design and Test Conference;
EDUCON;Global Engineering Education Conference;
EDUTAINMENT;International Conference on E-Learning and Games;
EEE;International Conference on E-Product E-Service and E-Entertainment;
EEEI;Convention of Electrical and Electronics Engineers in Israel;
EEEIC;International Conference on Environment and Electrical Engineering;
EEM;International Conference on the European Energy Market;
EFTF;European Frequency and Time Forum;
EGOV;Electronic Government;
EGPGV;Eurographics Symposium on Parallel Graphics and Visualization;
EGSR;Eurographics Symposium on Rendering Techniques;
EGVE;Eurographics Symposium on Virtual Environments;
EH;Nasa/Dod Conference on Evolvable Hardware;
EIC;Electrical Insulation Conference;
EICS;Engineering Interactive Computing System;
EISGT;IEEE Pes International Conference and Exhibition on Innovative Smart Grid Technologies;
EISIC;European Intelligence and Security Informatics Conference;
EIT;Electro/Information Technology;
EJC;European-Japanese Conference on Information Modelling and Knowledge Bases;
EKAW;International Conference on Knowledge Engineering and Knowledge Management;B
ELECO;International Conference on Electrical and Electronics Engineering;
ELMAR;International Symposium Elmar;
ELPUB;International Conference on Electronic Publishing;
ELT;International Symposium on Electromagnetic Launch Technology;
EMAS;Emas (Merger of Dalt, Aose and Promas);
EMBC;International Conference of the IEEE Engineering in Medicine and Biology Society;A-
EMC;International Symposium on Electromagnetic Compatibility;
EMI;International Conference on Electronic Measurement and Instruments;
EMMCVPR;Energy Minimization Methods in Computer Vision and Pattern Recognition;
EMMSAD;Exploring Modelling Methods in Systems Analysis and Design;
EMNLP;Empirical Methods in Natural Language Processing;A+
EMO;International Conference on Evolutionary Multi-Criterion Optimization;A-
EMPD;International Conference on Energy Management and Power Delivery;
EMS;Ems Network Conference;
ENASE;International Conference on Evaluation of Novel Approaches to Software Engineering;
ENC;Mexican International Conference on Computer Science;
ENERGYCON;IEEE International Energy Conference;
ENERGYTECH;IEEE Energytech;
ENTER;Information and Communication Technologies in Tourism;
EOMAS;International Workshop on Enterprise and Organizational Modelling and Simulation;
EOS/ESD;Electrical Overstress/Electrostatic Discharge Symposium;
EPART;International Conference on Electronic Participation;
EPE;European Conference on Power Electronics and Applications;
EPEC;Electrical Power and Energy Conference;
EPEP;Electrical Performance of Electronic Packaging;
EPIA;Portuguese Conference on Artificial Intelligence;
EPTC;Electronics Packaging Technology Conference;
EQEC;European Quantum Electronics Conference;
ER;International Conference on Conceptual Modeling;B
ERA;International Conference on Entity-Relationship Approach;
ERCIM/CSCLP;Ercim Annual Workshop on Constraint Solving and Constraint Logic Programming;
ESA;European Symposium on Algorithms;A-
ESAIR;Exploiting Semantic Annotations in Information Retrieval;
ESANN;European Symposium on Artificial Neural Networks;B
ESARSP;Electrical Systems for Aircraft, Railway and Ship Propulsion;
ESEA;Euromicro International Conference on Software Engineering and Applications;
ESEC;European Software Engineering Conference;
ESEC/FSE;ACM Sigsoft Conference on the Foundations of Software Engineering;A+
ESEM;International Symposium on Empirical Software Engineering and Measurement;A-
ESOCC;European Conference on Service-Oriented and Cloud Computing;
ESOP;European Symposium on Programming;A
ESORICS;European Symposium on Research in Computer Security;A+
ESSCIRC;European Solid-State Circuits Conference;B
ESSDERC;European Solid-State Device Research Conference;
ESSEEB;ACM Workshop on Embedded Sensing Systems for Energy-Efficiency in Buildings;
ESSOS;Engineering Secure Software and Systems;
ESTC;Electronics System-Integration Technology Conference;
ESTIMEDIA;Embedded Systems for Real-Time Multimedia;
ESTS;Electric Ship Technologies Symposium;
ESWC;European Semantic Web Conference;A-
ETCS;International Workshop on Education Technology and Computer Science;
ETECT;International Conference on Emerging Trends in Electrical and Computer Technology;
ETFA;Emerging Technologies and Factory Automation;B
ETHICOMP;Ethicomp Conference;
ETRA;Eye Tracking Research and Applications;B
ETS;European Test Symposium;
ETX;Eclipse Technology Exchange;
EUC;Embedded and Ubiquitous Computing;
EUCAP;European Conference on Antennas and Propagation;
EUCNC;European Conference on Networks and Communications;
EUMAS;European Conference on Multi-Agent Systems;
EUMC;European Microwave Conference;
EURAD;European Radar Conference;
EURO;European Conference on Operations Research;
EURO VR;Euro Virtual Reality;
EURO-DAC;European Design Automation Conference;
EURO-PAR;European Conference on Parallel Computing;B
EUROCAST;Computer Aided Systems Theory;
EUROCG;European Workshop on Computational Geometry;
EUROCOLT;European Conference on Computational Learning Theory;
EUROCOMB;Euroconference on Combinatorics, Graph Theory and Applications;
EUROCON;Conference on Computer As A Tool;
EUROCRYPT;International Conference on the Theory and Application of Cryptographic Techniques;A++
EUROGP;European Conference on Genetic Programming;B
EUROHAPTICS;International Conference on Human Haptic Sensing and Touch Enabled Computer Applications;
EUROITV;European Conference on Interactive Tv;
EUROMPI;European Mpi Users Group Conference;
EURONLG;European Natural Language Generation Workshop;
EUROPKI;European Public Key Infrastructure Workshop;
EUROPLOP;European Conference on Pattern Languages of Programs;
EUROS&P;IEEE European Symposium on Security and Privacy;
EUROSEC;European Workshop on System Security;
EUROSIME;International Conference on Thermal, Mechanical and Multi-Physics Simulation and Experiments in Microelectronics and Microsystems;
EUROSPI;European Conference on Software Process Improvement;
EUROSSC;European Conference on Smart Sensing and Context;
EUROSYS;European Conference on Computer Systems;A+
EUROVA;Visual Analytics;
EUROVIS;Eurographics/IEEE Symposium on Visualization;B
EUSFLAT;Conference of the European Society for Fuzzy Logic and Technologies;
EUSIPCO;European Signal Processing Conference;B
EUSPN;International Conference on Emerging Ubiquitous Systems and Pervasive Networks;
EVOAPPLICATIONS;European Conference on Applications of Evolutionary Computation;
EVOBIO;European Conference on Evolutionary Computation, Machine Learning and Data Mining in Computational Biology;
EVT/WOTE;Conference on Electronic Voting Technology/Workshop on Trustworthy Elections;
EW;European Wireless Conference;
EWAEC;Evoworkshops on Applications of Evolutionary Computing;
EWPDP;Euromicro Workshop on Parallel and Distributed Processing;
EWSN;European Conference on Wireless Sensor Networks;A-
FAC;International Conference on Foundations of Augmented Cognition;
FASE;Fundamental Approaches to Software Engineering;B
FAST;Conference on File and Storage Technologies;A+
FAW;International Frontiers of Algorithmics Workshop;
FC;Financial Cryptography;A
FCCM;Field-Programmable Custom Computing Machines;A-
FCS;Annual Symposium on Frequency Control;
FCT;International Symposium on Fundamentals of Computation Theory;B-
FDG;Foundations of Digital Games;
FDL;Forum on Specification and Design Languages;
FDTC;Workshop on Fault Diagnosis and Tolerance in Cryptography;B-
FEDCSIS;Federated Conference on Computer Science and Information Systems;B-
FES;International Conference on Future Energy Systems;
FG;IEEE International Conference on Automatic Face and Gesture Recognition;A-
FGCN;International Conference on Future Generation Communication and Networking;
FIE;Frontiers in Education;B-
FIMH;International Conference on Functional Imaging and Modeling of Heart;
FIT;Frontiers of Information Technology;
FLAIRS;the Florida Ai Research Society;B-
FLINS;International Flins Conference on Robotics and Artificial Intelligence (Was International Fuzzy Logic and Intelligent Technologies in Nuclear Science Conference);
FLOPS;International Symposium on Functional and Logic Programming;
FM;Formal Methods;A
FMCAD;Formal Methods in Computer-Aided Design;B
FMICS;Formal Methods for Industrial Critical Systems;
FMIS;International Workshop on Formal Methods for Interactive Systems;
FMSE;Formal Methods in Security Engineering;
FNC;the International Conference on Future Networks and Communications;
FNMS;Future Network & Mobile Summit;
FOAL;Foundations of Aspect-Oriented Languages Workshop;
FOCI;Foundations of Computational Intelligence;
FOCS;IEEE Symposium on Foundations of Computer Science;A++
FOGA;Foundations of Genetic Algorithms;B
FOIKS;Foundations of Information and Knowledge Systems;
FOIS;International Conference on Formal Ontology in Information Systems;B-
FOMC;Foundations of Mobile Computing;
FOMI;Formal Ontologies Meet Industry;
FORMATS;Formal Modeling and Analysis of Timed Systems;
FORTE;Formal Methods for Open Object-Based Distributed Systems;B-
FOSSACS;Foundations of Software Science and Computation Structure;B
FPGA;ACM/Sigda International Symposium on Field-Programmable Gate Arrays;A
FPL;Field-Programmable Logic and Applications;B
FPT;Field-Programmable Technology;
FQAS;Flexible Query Answering Systems;
FROCOS;Frontiers of Combining Systems;
FRUCT;IEEE Conference of the Open Innovations Association Fruct;
FSCD;International Conference on Formal Structures for Computation and Deduction;
FSEW;Fast Software Encryption Workshop;A-
FSKD;Fuzzy Systems and Knowledge Discovery;
FSR;Field and Service Robotics;
FSTTCS;Foundations of Software Technology and Theoretical Computer Science;B
FTDCS;IEEE Computer Society Workshop on Future Trends of Distributed Computing Systems;
FTFJP;Workshop on Formal Techniques for Java-Like Programs;
FTS;Symposium on Fusion Technology;
FUELCELL;International Conference on Fuel Cell Science, Engineering and Technology, Fuelcell Collocated With Asme International Conference on Energy Sustainability;
FUN;Conference on Fun With Algorithms;
FUSION;International Conference on Information Fusion;B-
FUZZ-IEEE;IEEE International Conference on Fuzzy Systems;B
GAICS;IEEE Gallium Arsenide Integrated Circuit Symposium;
GAMESEC;Decision and Game Theory for Security;
GC;IEEE Grenoble Conference;
GCB;German Conference on Bioinformatics;
GCC;Grid and Cooperative Computing;
GCE;Grid Computing Environments;
GCPR;German Conference on Pattern Recognition;
GD;Graph Drawing;B
GDN;International Conference of Society for Group Decision and Negotiation;
GECCO;Genetic and Evolutionary Computation Conference;A
GECON;Grid Economics and Business Models;
GEFS;International Workshop on Genetic and Evolving Fuzzy Systems;
GEMIC;German Microwave Conference;
GENSIPS;IEEE International Workshop on Genomic Signal Processing and Statistics;
GEOINFO;Simpósio Brasileiro De Geoinformática;
GEOINFORMATICS;International Conference on Geoinformatics;
GFP;International Conference on Group Iv Photonics;
GGTACS;International Workshop on Graph-Grammars and Their Application to Computer Science;
GHTC;Global Humanitarian Technology Conference;
GI;Graphics Interface;A-
GI;IEEE Global Internet Symposium;
GIIS;Global Information Infrastructure and Networking Symposium;
GIR;Geographic Information Retrieval;
GISCIENCE;Geographic Information Science;
GLOBALSIP;IEEE Global Conference on Signal and Information Processing;
GLOBE;Conference on Data Management in Grid and P2P Systems;
GLOBECOM;IEEE Global Telecommunications Conference;A-
GLSVLSI;ACM Great Lakes Symposium on Vlsi;B
GMP;Geometric Modeling and Processing;
GPC;Advances in Grid and Pervasive Computing;B-
GPCE;International Conference on Generative Programming and Component Engineering;A-
GPGPU;General Purpose Processing on Graphics Processing Units;
GRAPH-HOC;Workshop on Applications of Graph Theory in Wireless Ad Hoc Networks and Sensor Networks;
GRAPP;International Conference on Computer Graphics Theory and Applications;
GRC;Granular Computing;
GREC;Graphics Recognition;
GREENCOM;Green Computing and Communications;
GREENTECH;Green Technologies Conference;
GRID;Grid Computing;A-
GROUP;International Conference on Supporting Group Work;A-
GTN;International Conference on Game Theory for Networks;
GWC;International Wordnet Conference (Global Wordnet Conference);
HAEG;IEEE International Workshop on Haptic Audio Visual Environments and Games;
HAI;Human-Agent Interaction;
HAIS;International Conference on Hybrid Artificial Intelligence Systems;
HAPTICS;IEEE Haptics Symposium;B
HASE;IEEE International Symposium on High Assurance Systems Engineering;B-
HASKELL;Haskell Workshop;B-
HC;Humans and Computers;
HCCLE;IEEE Symposia on Human-Centric Computing Languages and Environments;
HCIST;Hcist - International Conference on Health and Social Care Information Systems and Technologies;
HCOMP;Aaai Conference on Human Computation and Crowdsourcing;
HCS;IEEE Hot Chips Symposium;
HCW;Heterogeneity in Computing Workshop;
HEALTHCOM;IEEE International Conference on Ehealth Networking Applications and Services (Was International Workshop on Enterprise Networking and Computing in Health Care Industry, Changed 2006);
HEALTHINF;International Conference on Health Informatics;
HIC;Health Informatics Conference;
HICSS;Annual Hawaii International Conference on System Sciences;A
HIHCS;IEEE International Workshop on Horizontal Interactive Human-Computer Systems;
HIPC;International Conference on High Performance Computing;B
HIPEAC;High Performance Embedded Architectures and Compilers;
HIPS;International Workshop on High-Level Parallel Programming Models and Supportive Environments;
HIS;International Conference on Hybrid Intelligent Systems;
HLDVT;High Level Design Validation and Test;
HLPP;International Workshop on High-Level Parallel Programming and Applications;
HLT;Human Language Technology;
HLTR;International Conference on Human Language Technology Research;
HM;International Workshop on Hybrid Metaheuristics;
HOLM;Holm Conference on Electrical Contacts;
HOLOMAS;Holonic and Multi-Agent Systems for Manufacturing;
HOPL;ACM Sigplan Conference on History of Programming Languages;
HOST;Hardware-Oriented Security and Trust;B
HOTCLOUD;Usenix Conference on Hot Topics in Cloud Ccomputing;
HOTDEP;Hot Topics in System Dependability;
HOTI;IEEE Symposium on High-Performance Interconnects;A-
HOTMOBILE;Workshop on Mobile Computing Systems and Applications;A-
HOTNETS;ACM Workshop on Hot Topics in Networks;A-
HOTOS;Usenix Workshop on Hot Topics in Operating Systems;B
HOTPAR;Usenix Conference on Hot Topics in Parallelism;
HOTSEC;Usenix Conference on Hot Topics in Security;
HOTSTORAGE;Usenix Conference on Hot Topics in Storage and File Systems;
HOTWEB;IEEE Workshop on Hot Topics in Web Systems and Technologies;
HPC ASIA;International Conference and Exhibition on High Performance Computing in the Asia-Pacific Region;
HPCA;High-Performance Computer Architecture;A+
HPCC;High Performance Computing and Communications;
HPCS;IEEE International Conference on High Performance Computing and Simulation;B-
HPDC;ACM International Symposium on High Performance Distributed Computing;A
HPEC;IEEE High Performance Extreme Computing Conference;
HPG;High Performance Graphics;
HPSC;International Conference on High Performance Scientific Computing;
HPSR;High Performance Switching and Routing;
HRI;Human-Robot Interaction;A
HSCC;ACM International Conference Hybrid Systems: Computation and Control;
HSI;Human System Interaction;
HST;IEEE International Conference on Technologies for Homeland Security;
HUMANOIDS;IEEE Ras International Conference on Humanoids Robots;B
HVC;Haifa Verification Conference;
HVEI;Human Vision and Electronic Imaging Conference;
HWWS;Siggraph/Eurographics Conference on Graphics Hardware;
HYPERTEXT;ACM Conference on Hypertext;B
I&CPS;IEEE/Ias Industrial and Commercial Power Systems Technical Conference;
I-KNOW;International Conference on Knowledge Management and Knowledge Technologies;
I-SEMANTICS;International Conference on Semantic Systems;
I-SOCIETY;International Conference on Information Society;
I-SPAN;International Symposium on Parallel Architectures, Algorithms and Networks;B-
I3D;ACM Symposium on Interactive 3D Graphics and Games;A
I3E;Ifip Conference on E-Commerce E-Business and E-Government;
I4CS;International Conference on Innovations for Community Services (Was Innovative Internet Computer Systems Iics Until 2014);
IA;Intelligent Agents;
IAAI;Conference on Innovative Applications in Artificial Intelligence;B-
IACC;IEEE International Advance Computing Conference;
IADIS AC;Iadis International Conference Applied Computing;
IAHMAS;International Conference on Industrial Applications of Holonic and Multi-Agent Systems;
IAIT;International Conference on Advances in Information Technology;
IAS;IEEE Industry Applications Society Annual Conference;A-
IASTED ISC;Iasted International Conference on Intelligent Systems and Control;
IAT;ACM International Conference on Intelligent Agent Technology;B
IAWTIC;International Conference on Intelligent Agents, Web Technologies, and Internet Commerce;
IBERAMIA;Ibero-American Artificial Intelligence Conference;
IBICA;International Conference on Innovations in Bio-Inspired Computing and Applications;
IBPRIA;Iberian Conference on Pattern Recognition and Image Analysis;
IC;International Conference on Internet Computing;
IC-AI;International Conference on Artificial Intelligence;
IC3;International Conference on Contemporary Computing;
IC3K;International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management;
ICA3PP;International Conference on Algorithms and Architectures for Parallel Processing;
ICAART;International Conference on Agents and Artificial Intelligence;
ICAC;IEEE International Conference on Autonomic Computing;B
ICACSIS;International Conference on Advanced Computer Science and Information Systems;
ICACT;International Conference on Advanced Communication Technology;
ICACTE;International Conference on Advanced Computer Theory and Engineering;
ICAD;International Conference on Auditory Display;
ICADL;International Conference on Asian Digital Libraries;
ICAESM;IEEE-International Conference on Advances in Engineering, Science and Management;
ICAIL;International Conference on Artificial Intelligence and Law;B-
ICAIS;International Conference on Adaptive and Intelligent Systems;
ICAISC;International Conference on Artificial Intelligence and Soft Computing;
ICAL;International Conference on Automation and Logistics;
ICALIP;International Conference on Audio, Language and Image Processing;
ICALP;International Colloquium on Automata Languages and Programming;A
ICALT;IEEE International Conference on Advanced Learning Technologies;B
ICANN;International Conference on Artificial Neural Networks;B-
ICANNGA;International Conference on Adaptive and Natural Computing Algorithms;
ICAPR;International Conference on Advances in Pattern Recognition;
ICAPS;International Conference on Automated Planning and Scheduling;A
ICAR;International Conference on Advanced Robotics;B-
ICARCV;International Conference on Control, Automation, Robotics and Vision;
ICARIS;International Conference on Artificial Immune Systems;
ICAS;International Conference on Autonomic and Autonomous Systems;
ICASS;International Conference on Independent Component Analysis and Signal Separation;
ICASSP;International Conference on Acoustics, Speech, and Signal Processing;A
ICAT;International Conference on Artificial Reality and Telexistence;
ICATPN;Applications and Theory of Petri Nets;B
ICB;International Conference on Biometrics;B
ICBBE;International Conference on Bioinformatics and Biomedical Engineering;
ICBHI;IEEE-Embs International Conference on Biomedical and Health Informatics;
ICC;IEEE International Conference on Communications;A
ICCA;International Conference on Control and Automation;
ICCABS;IEEE International Conference on Computational Advances in Bio and Medical Sciences;
ICCAD;IEEE/ACM International Conference on Computer-Aided Design;A
ICCAE;International Conference on Computer and Automation Engineering;
ICCAM;International Congress on Computational and Applied Mathematics;
ICCAS;International Conference on Control, Automation and Systems;
ICCASM;International Conference on Computer Application and System Modeling;
ICCBR;International Conference on Case-Based Reasoning;B-
ICCC;IEEE International Conference Computer and Communications;B-
ICCCA;International Conference on Computing, Communication and Automation;
ICCCAS;International Conference on Communications, Circuits and Systems;
ICCCCM;International Colloquium on Computing, Communication, Control, and Management;
ICCCE;International Conference on Computer and Communication Engineering;
ICCCI;International Conference on Computational Collective Intelligence;
ICCCN;International Conference on Computer Communications and Networks;B
ICCCNT;International Conference on Computing, Communication and Networking Technologies;
ICCCT;International Conference on Computer and Communication Technology;
ICCD;International Conference on Computer Design;A-
ICCE;International Conference on Computers in Education;
ICCE-BERLIN;International Conference on Consumer Electronics - Berlin;
ICCEP;International Conference on Clean Electrical Power;
ICCES;International Conference on Communication and Electronics Systems;
ICCGC;International Conference on Cloud and Green Computing;
ICCGI;International Multi-Conference on Computing in Global Information Technology;
ICCI*CC;IEEE International Conference on Cognitive Informatics;
ICCIC;International Conference on Computational Intelligence and Computing Research;
ICCIT;International Conference on Convergence Information Technology;
ICCL;IEEE International Conference on Computer Languages;
ICCL;International Conference on Computational Logistics;
ICCMS;International Conference on Computer Modeling and Simulation;
ICCN;IEEE International Conference on Cloud Networking;
ICCP;IEEE International Conference on Intelligent Computer Communication and Processing;
ICCPS;International Conference on Cyber-Physical Systems;
ICCS;International Conference on Computational Science;B
ICCS;International Conference on Conceptual Structures;B
ICCSA;International Conference on Computational Science and its Applications;
ICCSCE;IEEE International Conference on Control System, Computing and Engineering;
ICCSE;International Conference on Computer Science and Education;
ICCSIT;International Conference on Computer Science and Information Technology;
ICCSNT;International Conference on Computer Science and Network Technology;
ICCSP;International Conference on Communication and Signal Processing;
ICCST;International Carnahan Conference on Security Technology;
ICCT;International Conference on Communication Technology;
ICCTA;International Conference on Computing: Theory and Applications;
ICCV;IEEE International Conference on Computer Vision;A++
ICCVE;International Conference on Connected Vehicles and Expo;
ICCVG;International Conference on Computer Vision and Graphics;
ICDAR;IEEE International Conference on Document Analysis and Recognition;A
ICDCIT;International Conference on Distributed Computing and Internet Technology;
ICDCN;IEEE International Conference on Distributed Computing and Networking;
ICDCS;International Conference on Distributed Computing Systems;A
ICDCSW;International Conference on Distributed Computing Systems Workshops;
ICDE;International Conference on Data Engineering;A++
ICDF;International Conference on Digital Forensics;
ICDIM;International Conference on Digital Information Management;
ICDKE;Data and Knowledge Engineering;
ICDL;International Conference on Dielectric Liquids;
ICDM;IEEE International Conference on Data Mining;A++
ICDS;International Conference on Digital Society;
ICDSC;ACM/IEEE International Conference on Distributed Smart Cameras;
ICDSE;IEEE International Conference on Data Science and Engineering;
ICDT;International Conference on Database Theory;A-