-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcore.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 1 column, instead of 6 in line 5.
972 lines (972 loc) · 100 KB
/
core.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
acronym;title;ranksys;rank;field
AAAC;Symposium of Asian Association for Algorithms and Computation;CORE2023;C;Theory of computation
AAAI;National Conference of the American Association for Artificial Intelligence;CORE2023;A*;Artificial intelligence
AAIM;Conference on Algorithmic Aspects in Information and Management;CORE2023;C;Theory of computation
AAMAS;International Joint Conference on Autonomous Agents and Multiagent Systems;CORE2023;A*;Artificial intelligence
ABZ;International Conference Abstract State Machines, Alloy, B, TLA, VDM, and Z;CORE2023;C;Software engineering
ACC;Applied Computing Conference;CORE2023;C;Applied computing
ACCMCC;Australasian Conference on Combinatorial Mathematics and Combinatorial Computing;CORE2023;Australasian C;Theory of computation
ACCT;International Workshop on Algebraic and Combinatorial Coding Theory;CORE2023;National;Theory of computation
ACCV;Asian Conference on Computer Vision;CORE2023;B;Computer vision and multimedia computation
ACE;ACM International Conference on Advances in Computer Entertainment;CORE2023;C;Graphics, augmented reality and games
ACE;Australasian Computing Education Conference (ACE);CORE2023;Australasian B;Human-centred computing
ACHI;International Conference on Advances in Computer-Human Interactions;CORE2023;C;Human-centred computing
ACII;International Conference on Affective Computing and Intelligent;CORE2023;C;Human-centred computing
ACIIDS;Asian Conference on Intelligent Information and Database Systems;CORE2023;B;Data management and data science
ACISP;Australasian Conference on Information Security and Privacy;CORE2023;Australasian B;Cybersecurity and privacy
ACIVS;Advanced Concepts for Intelligent Vision Systems;CORE2023;B;Computer vision and multimedia computation
ACL;Association for Computational Linguistics;CORE2023;A*;Artificial intelligence
ACML;Asian Conference on Machine Learning;CORE2023;;Machine learning
ACMMM;ACM Multimedia;CORE2023;A*;Computer vision and multimedia computation
ACNS;International Conference on Applied Cryptography and Network Security;CORE2023;B;Cybersecurity and privacy
ACRA;Australasian Conference on Robotics and Automation;CORE2023;Australasian C;Artificial intelligence
ACSAC;Annual Computer Security Applications Conference;CORE2023;A;Cybersecurity and privacy
ACSSC;Asilomar Conference on Signals, Systems and Computing;CORE2023;National: USA;Distributed computing and systems software
ADBIS;Symposium on Advances in DB and Information Systems;CORE2023;C;Data management and data science
ADC;Australasian Database Conference;CORE2023;Australasian B;Data management and data science
ADCS;Australasian Document Computing Symposium;CORE2023;Australasian B;Data management and data science
ADMA;International Conference on Advanced Data Mining and Applications;CORE2023;C;Data management and data science
ADPRL;IEEE International Symposium on Adaptive Dynamic Programming and Reinforcement Learning;CORE2023;C;Machine learning
AI;Australasian Joint Conference on Artificial Intelligence;CORE2023;Australasian B;Artificial intelligence
AIAI;Artificial Intelligence Applications and Innovations;CORE2023;C;Applied computing
AICCSA;ACS/IEEE International Conference on Computer Systems and Applications;CORE2023;C;Information And Computing Sciences
AICE;Australian Institute of Computer Ethics Conference;CORE2023;Australasian C;Human-centred computing
AIED;International Conference on Artificial Intelligence in Education;CORE2023;A;Applied computing
AIME;International Conference on Artificial Intelligence in Medicine;CORE2023;B;Applied computing
AIMSA;International Conference on Artificial Intelligence: Methodology, Systems, Applications;CORE2023;National: Bulgaria;Artificial intelligence
AINA;International Conference on Advanced Information Networking and Applications;CORE2023;B;Distributed computing and systems software
AISC;Australasian Information Security Conference;CORE2023;Australasian C;Cybersecurity and privacy
AIST;International Conference on Analysis of Images, Social Networks and Texts;CORE2023;National: Russia;Artificial intelligence
AISTATS;International Conference on Artificial Intelligence and Statistics;CORE2023;A;Machine learning
ALENEX;Workshop on Algorithm Engineering and Experiments;CORE2023;A;Theory of computation
ALIFE;International Conference on the Simulation and Synthesis of Living Systems;CORE2023;C;Artificial intelligence
ALT;Algorithmic Learning Theory;CORE2023;B;Machine learning
ALTA;Australasian Language Technology Workshop;CORE2023;Australasian C;Artificial intelligence
AMIA;American Medical Informatics Annual Fall Symposium;CORE2023;National: USA;Applied computing
AMTA;Conference of the Association for Machine Translation in the Americas;CORE2023;National: /Regional;Artificial intelligence
ANT;International Conference on Ambient Systems, Networks and Technologies;CORE2023;;Distributed computing and systems software
APBC;Asia-Pacific Bioinformatics Conference;CORE2023;B;Applied computing
APCC;Asia Pacific Conference on Communications;CORE2023;C;Distributed computing and systems software
APCCM;Asia-Pacific Conference on Conceptual Modelling;CORE2023;Australasian C;Data management and data science
APLAS;ASIAN Symposium on Programming Languages and Systems;CORE2023;B;Software engineering
APNOMS;Asia-Pacific Network Operations and Management Symposium;CORE2023;C;Distributed computing and systems software
APORS;Conference of the Association of Asian-Pacific Operational Research Societies;CORE2023;C;Artificial intelligence
APPROX/RANDOM;International Workshop on Approximation Algorithms for Combinatorial Optimization Problems and International Conference on Randomization and Computation;CORE2023;A;Theory of computation
APSCC;Asia-Pacific Services Computing Conference;CORE2023;C;Distributed computing and systems software
APSEC;Asia-Pacific Software Engineering Conference;CORE2023;C;Software engineering
APWEB;Web and Big Data;CORE2023;C;Data management and data science
ARES;International Conference on Availability, Reliability and Security;CORE2023;B;Cybersecurity and privacy
ARITH;IEEE Symposium on Computer Arithmetic;CORE2023;C;Theory of computation
AROB;International Symposium on Artificial Life and Robotics;CORE2023;C;Artificial intelligence
ASAP;International Conference on Application-specific Systems, Architectures and Processors;CORE2018;A;Distributed computing and systems software
ASE;Automated Software Engineering Conference;CORE2023;A*;Software engineering
ASIACRYPT;International Conference on the Theory and Application of Cryptology and Information Security;CORE2023;A;Cybersecurity and privacy
ASONAM;IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining;CORE2023;B;Data management and data science
ASOR;National Conference of The Australian Society for Operations Research;CORE2023;Australasian C;Artificial intelligence
ASPDAC;Asia and South Pacific Design Automation Conference;CORE2023;C;Distributed computing and systems software
ASPLOS;Architectural Support for Programming Languages and Operating Systems;CORE2023;A*;Software engineering
ASRU;IEEE Automatic Speech Recognition and Understanding Workshop;CORE2023;C;Artificial intelligence
ASSETS;International ACM SIGACCESS Conference on Computers and Accessibility;CORE2023;A;Human-centred computing
AST;Automation of Software Test;CORE2023;C;Software engineering
ATC;International Conference on Advanced and Trusted Computing;CORE2023;C;Cybersecurity and privacy
ATMOS;Workshop on Algorithmic Approaches for Transportation Modelling, Optimization, and Systems;CORE2023;C;Theory of computation
ATSIP;International Conference on Advanced Technologies For Signal & Image Processing;CORE2023;National: Tunisia;Computer vision and multimedia computation
ATVA;International Symposium on Automated Technology for Verification and Analysis;CORE2023;B;Software engineering
AVI;Advanced Visual Interfaces;CORE2023;B;Human-centred computing
AVSS;IEEE International Conference on Advanced Video and Signal Based Surveillance;CORE2023;B;Computer vision and multimedia computation
AdCom;International Conference on Advanced Computing and Communications;CORE2023;National: India;Distributed computing and systems software
Ada-Europe;International Conference on Reliable Software Technologies;CORE2023;;Software engineering
AiML;Advances in Modal Logic;CORE2023;B;Theory of computation
Algosensors;International Symposium on Algorithms and Experiments for Wireless Networks;CORE2023;C;Distributed computing and systems software
Alife;IEEE International Symposium on Artificial Life;CORE2023;C;Artificial intelligence
AofA;International Conference on Probabilistic, Combinatorial, and Asymptotic Methods in the Analysis of Algorithms;CORE2023;C;Theory of computation
ArtsIT;ArtsIT, Interactivity & Game Creation;CORE2023;C;Graphics, augmented reality and games
AsiaCCS;Asia Conference on Information, Computer and Communications Security;CORE2023;A;Cybersecurity and privacy
AusDM;Australian Data Mining Conference;CORE2023;Australasian C;Data management and data science
AusPDC;Australasian Symposium on Parallel and Distributed Computing;CORE2023;Australasian C;Distributed computing and systems software
BDCAT;IEEE/ACM International Conference on Big Data Computing, Applications and Technologies;CORE2023;C;Machine learning
BIBE;IEEE Bioinformatics and Bioengineering;CORE2023;C;Applied computing
BMVC;British Machine Vision Conference;CORE2023;A;Computer vision and multimedia computation
BPM;International Conference in Business Process Management;CORE2023;A;Software engineering
BSN;Body Sensor Networks;CORE2023;C;Applied computing
BTW;Datenbanksysteme für Business, Technologie und Web;CORE2023;National: Germany;Data management and data science
BigData;IEEE International Conference on Big Data;CORE2023;B;Data management and data science
Broadnets;International Conference on Broadband Communications, Networks and Systems;CORE2023;C;Distributed computing and systems software
BuildSys;ACM International Conference on Systems for Energy-Efficient Built Environments;CORE2018;A;Distributed computing and systems software
CAADRIA;Association for Computer-Aided Architectural Design Research in Asia (CAADRIA) annual conference;CORE2023;C;Applied computing
CADE;International Conference on Automated Deduction;CORE2023;A;Artificial intelligence
CAINE;ISCA International Conference on Computer Applications in Industry and Engineering;CORE2023;C;Applied computing
CAIP;International Conference on Computer Analysis of Images and Patterns;CORE2023;C;Computer vision and multimedia computation
CALCO;Conference on Algebra and Coalgebra in Computer Science;CORE2023;B;Theory of computation
CANS;International Conference on Cryptology and Network Security;CORE2023;B;Cybersecurity and privacy
CARDIS;Smart Card Research and Advanced Application Conference;CORE2023;C;Cybersecurity and privacy
CASC;Computer Algebra in Scientific Computing;CORE2023;B;Theory of computation
CASE;IEEE International Conference on Automation Science and Engineering;CORE2023;;(missing)
CASES;International Conference on Compilers, Architecture, and Synthesis for Embedded Systems;CORE2023;B;Distributed computing and systems software
CATA;International Conference on Computers and their Applications;CORE2023;National: USA;Applied computing
CAV;Computer Aided Verification;CORE2023;A*;Software engineering
CAivDE;Computer Animation, Information Visualisation, and Digital Effects;CORE2023;C;Graphics, augmented reality and games
CC;International Conference on Compiler Construction;CORE2023;B;Distributed computing and systems software
CCA;International Conference on Computability and Complexity in Analysis;CORE2023;C;Theory of computation
CCC;IEEE Conference on Computational Complexity;CORE2023;A;Theory of computation
CCEM;IEEE International Conference on Cloud Computing in Emerging Markets;CORE2023;National: India;Distributed computing and systems software
CCGRID;IEEE International Symposium on Cluster, Cloud and Grid Computing;CORE2023;B;Distributed computing and systems software
CCNC;IEEE Consumer Communications and Networking Conference;CORE2023;B;Distributed computing and systems software
CCS;ACM Conference on Computer and Communications Security;CORE2023;A*;Cybersecurity and privacy
CD-MAKE;International Cross-Domain Conference for Machine Learning and Knowledge Extraction;CORE2023;C;Artificial intelligence
CDC;IEEE Conference on Decision and Control;CORE2018;A;Electronics, sensors and digital hardware
CDVE;Cooperative Design, Visualization, and Engineering;CORE2023;C;Human-centred computing
CEC;IEEE Congress on Evolutionary Computation;CORE2023;B;Artificial intelligence
CERIAS;Information Security Symposium;CORE2023;National: USA;Cybersecurity and privacy
CGI;Computer Graphics International;CORE2023;C;Graphics, augmented reality and games
CGO;International Symposium on Code Generation and Optimization;CORE2023;A;Software engineering
CHES;Workshop on Cryptographic Hardware and Embedded Systems;CORE2023;A;Cybersecurity and privacy
CHI;International Conference on Human Factors in Computing Systems;CORE2023;A*;Human-centred computing
CHI PLAY;CHI PLAY: The Annual Symposium on Computer-Human Interaction in Play;CORE2023;;Human-centred computing
CHIRA;International Conference on Computer-Human Interaction Research and Applications;CORE2023;C;Human-centred computing
CIAA;International Conference on Implementation and Application of Automata;CORE2023;C;Theory of computation
CIAC;International Conference on Algorithms and Complexity;CORE2023;C;Theory of computation
CIARP;IberoAmerican Congress on Pattern Recognition;CORE2023;C;Computer vision and multimedia computation
CIBCB;IEEE Symposium on Computational Intelligence in Bioinformatics and Computational Biology;CORE2023;C;Applied computing
CICA;IEEE Symposium on Computational Intelligence in Control and Automation;CORE2023;C;Artificial intelligence
CICLING;International Conference on Intelligent Text Processing and Computational Linguistics;CORE2023;C;Artificial intelligence
CICM;Conference on Intelligent Computer Mathematics;CORE2023;C;Theory of computation
CICS;IEEE Symposium on Computational Intelligence in Cyber Security;CORE2023;C;Cybersecurity and privacy
CIDM;IEEE Symposium on Computational Intelligence and Data Mining;CORE2023;C;Data management and data science
CIDR;Conference on Innovative Data Systems Research;CORE2023;A;Data management and data science
CIFEr;IEEE Symposium on Computational Intelligence for Financial Engineering;CORE2023;C;Applied computing
CIKM;ACM International Conference on Information and Knowledge Management;CORE2023;A;Data management and data science
CIMA;International Workshop on Combinations of Intelligent Methods and Applications;CORE2023;C;Artificial intelligence
CIMSIVP;IEEE Symposium on Computational intelligence for Multimedia Signal and Vision Processing;CORE2023;C;Computer vision and multimedia computation
CIS;IEEE International Conference on Cybernetics and Intelligent Systems;CORE2023;C;Artificial intelligence
CIS;International Conference on Computational Intelligence and Security;CORE2023;National: China;Cybersecurity and privacy
CISDA;IEEE Symposium on Computational Intelligence for Security and Defence Applications;CORE2023;C;Applied computing
CISIS;Computational Intelligence in Security for Information Systems;CORE2023;National: Spain;Cybersecurity and privacy
CISIS;International Conference on Complex, Intelligent and Software Intensive Systems;CORE2023;C;Distributed computing and systems software
CISS;Conference on Information Sciences and Systems;CORE2023;National: USA;Distributed computing and systems software
CIT;IEEE International Conference on Computer and Information Technology;CORE2023;C;Information And Computing Sciences
CLEI;Latin American Conference on Informatics;CORE2023;C;Artificial intelligence
CLOSER;International Conference on Cloud Computing and Services Science;CORE2023;C;Distributed computing and systems software
CLOUD;IEEE International Conference on Cloud Computing;CORE2023;B;Distributed computing and systems software
CLUSTER;IEEE International Conference on Cluster Computing;CORE2023;B;Distributed computing and systems software
CNSM;International Conference on Network and Service Management;CORE2023;B;Distributed computing and systems software
COCOA;Conference on Combinatorial Optimization and Applications;CORE2023;C;Artificial intelligence
COCOON;International Conference on Computing and Combinatorics;CORE2023;National: China;Theory of computation
CODES+ISSS;International Conference on Hardware/Software Codesign and System Synthesis;CORE2023;C;(missing)
COG;Conference on Games;CORE2023;C;Graphics, augmented reality and games
COINE;International Workshop on Coordination, Organizations, Institutions, Norms and Ethics for Governance of Multi-Agent Systems (Ethics added 2020);CORE2023;C;Artificial intelligence
COLING;International Conference on Computational Linguistics;CORE2023;B;Artificial intelligence
COLT;Conference on Learning Theory;CORE2023;A*;Machine learning
COMAD;International Conference on Management of Data;CORE2023;National: India;Data management and data science
COMPLEXIS;International Conference on Complexity, Future Information Systems and Risk;CORE2023;C;Theory of computation
COMPSAC;International Computer Software and Applications Conference;CORE2023;B;Applied computing
COMSNETS;International Conference on COMmunication Systems & NETworkS;CORE2023;National: India;Distributed computing and systems software
CONCUR;International Conference on Concurrency Theory;CORE2023;A;Theory of computation
COPLAS;Workshop on Constraint Satisfaction for Planning and Scheduling;CORE2023;C;Artificial intelligence
CP;International Conference on Principles and Practice of Constraint Programming;CORE2023;A;Artificial intelligence
CPAIOR;International Conference on Integration of Artificial Intelligence and Operations Research Techniques in Constraint Programming for Combinatorial Optimization Problems;CORE2023;B;Artificial intelligence
CPM;Combinatorial Pattern Matching;CORE2023;B;Computer vision and multimedia computation
CRITIS;International Workshop on Critical Information Infrastructures Security;CORE2023;C;Cybersecurity and privacy
CRYPTO;Advances in Cryptology;CORE2023;A*;Cybersecurity and privacy
CRiSIS;International Conference on Risks and Security of Internet and Systems;CORE2023;C;Cybersecurity and privacy
CSCW;ACM Conference on Computer Supported Cooperative Work;CORE2023;A;Human-centred computing
CSCWD;International Conference on Computer Supported Cooperative Work in Design;CORE2023;C;Human-centred computing
CSEDU;International Conference on Computer Supported Education;CORE2023;B;Human-centred computing
CSEET;Conference on Software Engineering Education and Training;CORE2023;C;Human-centred computing
CSF;IEEE Computer Security Foundations Symposium;CORE2023;A;Cybersecurity and privacy
CSICC;International CSI Computer Conference;CORE2023;National: Iran;Theory of computation
CSIT;Computer Sciences and Information Technologies;CORE2023;National;Artificial intelligence
CSL;Annual Conference on Computer Science Logic;CORE2023;B;Theory of computation
CSR;International Computer Science Symposium in Russia;CORE2023;National: Russia;Information And Computing Sciences
CT-RSA;Cryptographers Track at RSA Conference;CORE2023;B;Cybersecurity and privacy
CTW;Cologne-Twente Workshop on Graphs and Combinatorial Optimization;CORE2023;C;Theory of computation
CVPR;IEEE Conference on Computer Vision and Pattern Recognition;CORE2023;A*;Computer vision and multimedia computation
CW;International Conference on Cyberworlds;CORE2023;C;Graphics, augmented reality and games
CaiSE;International Conference on Advanced Information Systems Engineering;CORE2023;A;Data management and data science
CiE;Computability in Europe: Logic and Theory of Algorithms;CORE2023;C;Theory of computation
CloudCom;IEEE International Conference on Cloud Computing Technology and Science;CORE2023;C;Distributed computing and systems software
CoDIT;International Conference on Control, Decision and Information Technologies;CORE2023;C;Software engineering
CoNEXT;ACM International Conference on Emerging Networking Experiments and Technologies;CORE2023;A;Distributed computing and systems software
CoNLL;Conference on Computational Natural Language Learning;CORE2023;B;Artificial intelligence
CoRL;Conference on Robot Learning;CORE2023;;Artificial intelligence
CogSIMA;IEEE Conference on Cognitive and Computational Aspects of Situation Management;CORE2023;National: USA;Distributed computing and systems software
CogSci;Annual Meeting of the Cognitive Science Society;CORE2023;B;Artificial intelligence
CollaborateCom;International Conference on Collaborative Computing: Networks, Applications and Worksharing;CORE2023;C;Distributed computing and systems software
CoopIS;International Conference on Cooperative Information Systems;CORE2023;B;Human-centred computing
Coordination;International Conference on Coordination Models and Languages;CORE2023;C;Distributed computing and systems software
DAC;Design Automation Conf;CORE2023;;(missing)
DAC;Design Automation Conference;CORE2018;A;Distributed computing and systems software
DAFX;Digital Audio Effects Conference;CORE2023;C;Computer vision and multimedia computation
DAIS;IFIP International Conference on Distributed Applications and Interoperable Systems;CORE2023;C;Distributed computing and systems software
DAS;International Workshop on Document Analysis Systems;CORE2023;B;Data management and data science
DASC;International Conference on Dependable, Autonomic and Secure Computing;CORE2023;C;Cybersecurity and privacy
DASFAA;International Conference on Database Systems for Advanced Applications;CORE2023;B;Data management and data science
DATA;International Conference on Data Science, Technology and Applications;CORE2023;C;Data management and data science
DATE;Design, Automation and Test in Europe Conference;CORE2023;B;(missing)
DB&IS;International Baltic Conference on Databases and Information Systems;CORE2023;Regional: Baltic;Data management and data science
DBSEC;IFIP WG 11.3 Working Conference on Data and Applications Security (also known as DBSEC);CORE2023;B;Cybersecurity and privacy
DC;International Conference on Dublin Core and Metadata Applications;CORE2023;C;Data management and data science
DCAI;International Conference on Distributed Computing and Artificial Intelligence;CORE2023;National: Spain;Artificial intelligence
DCC;Data Compression Conference;CORE2023;B;Data management and data science
DCOSS;IEEE International Conference on Distributed Computing in Sensor Systems;CORE2023;B;Distributed computing and systems software
DEPCoS;International Conference on Dependability of Computer Systems;CORE2023;National: Poland;Distributed computing and systems software
DEXA;International Conference on Database and Expert Systems Applications;CORE2023;C;Data management and data science
DIAGRAMS;The Theory and Application of Diagrams;CORE2023;C;Artificial intelligence
DICTA;Digital Image Computing Techniques and Applications;CORE2023;Australasian C;Computer vision and multimedia computation
DIGRA;Digital Games Research Conference;CORE2023;C;Graphics, augmented reality and games
DIMVA;GI International Conference on Detection of Intrusions and Malware, and Vulnerability Assessment;CORE2023;C;Cybersecurity and privacy
DIS;Designing Interactive Systems;CORE2023;A;Human-centred computing
DISC;International Symposium on Distributed Computing;CORE2023;A;Distributed computing and systems software
DLS;Dynamic Languages Symposium;CORE2023;C;Software engineering
DLT;Developments in Language Theory;CORE2023;C;Theory of computation
DM;SIAM Conference on Discrete Mathematics;CORE2023;C;Theory of computation
DNA;DNA Computing and Molecular Programming;CORE2023;B;Applied computing
DOLAP;International Workshop on Data Warehousing and OLAP;CORE2023;C;Data management and data science
DS;Discovery Science;CORE2023;B;Machine learning
DS-RT;International Symposium on Distributed Simulation and Real Time Applications;CORE2023;C;Distributed computing and systems software
DSAA;IEEE International Conference on Data Science and Advanced Analytics;CORE2023;B;Data management and data science
DSM;Workshop on Domain Specific Modelling;CORE2023;C;Software engineering
DSN;IEEE/IFIP International Conference on Dependable Systems and Networks;CORE2023;A;Distributed computing and systems software
DX;International Workshop on Principles of Diagnosis;CORE2023;C;Software engineering
DaMoN;International Workshop on Data Management on New Hardware;CORE2023;C;Data management and data science
DaWaK;Data Warehousing and Knowledge Discovery;CORE2023;B;Data management and data science
DeSE;Developments in eSystems Engineering;CORE2023;C;Information And Computing Sciences
DocEng;ACM Symposium on Document Engineering;CORE2023;B;Data management and data science
EACL;European Association for Computational Linguistics;CORE2023;A;Artificial intelligence
EAMT;Conference of the European Association for Machine Translation;CORE2023;C;Artificial intelligence
EANN;International Conference on Engineering Applications of Neural Networks;CORE2023;C;Machine learning
EASE;International Conference on Evaluation and Assessment in Software Engineering;CORE2023;A;Software engineering
EATIS;EURO AMERICAN CONFERENCE ON TELEMATICS AND INFORMATION SYSTEMS;CORE2023;C;Distributed computing and systems software
EC;ACM Conference on Economics and Computation;CORE2023;A*;Artificial intelligence
EC-TEL;European Conference on Technology Enhanced Learning;CORE2023;B;Applied computing
ECAI;European Conference on Artificial Intelligence;CORE2023;A;Artificial intelligence
ECCB;European Conference on Computational Biology;CORE2023;C;Applied computing
ECCO;European Chapter on Combinatorial Optimization;CORE2023;C;Theory of computation
ECCV;European Conference on Computer Vision;CORE2023;A*;Computer vision and multimedia computation
ECDG;European Conference on Digital Government;CORE2023;C;Applied computing
ECIR;European Conference on Information Retrieval;CORE2023;A;Data management and data science
ECMFA;European Conference on Modelling Foundations and Applications;CORE2023;B;Software engineering
ECML PKDD;European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Database;CORE2023;A;Machine learning
ECMS;International Conference on Modelling and Simulation;CORE2023;;Artificial intelligence
ECOOP;European Conference on Object-Oriented Programming;CORE2023;A;Software engineering
ECRTS;Euromicro Conference on Real-Time Systems;CORE2023;B;Distributed computing and systems software
ECSA;European Conference on Software Architecture;CORE2023;A;Software engineering
ECSCW;European Conference on Computer Supported Cooperative Work;CORE2023;B;Human-centred computing
ECSQARU;European Conference on Symbolic and Quantitative Approaches to Reasoning with Uncertainty;CORE2023;C;Artificial intelligence
ED-MEDIA;World Conference on Educational Multimedia, Hypermedia and Telecommunications;CORE2023;C;Applied computing
EDBT;Extending Database Technology;CORE2023;A;Data management and data science
EDCC;European Dependable Computing Conference;CORE2023;;Cybersecurity and privacy
EDM;Educational Data Mining;CORE2023;B;Applied computing
EDOC;IEEE International Enterprise Distributed Object Computing Conference;CORE2023;B;Distributed computing and systems software
EGPGV;Eurographics Symposium on Parallel Graphics and Visualization;CORE2023;C;Graphics, augmented reality and games
EGVE;International Conference on Artificial Reality and Telexistance & Eurographics Symposium on Virtual Environments;CORE2023;C;Graphics, augmented reality and games
EICS;Engineering Interactive Computing Systems;CORE2023;;Human-centred computing
EJC;European-Japanese Conference on Information Modelling and Knowledge Bases;CORE2023;C;Data management and data science
EKAW;International Conference on Knowledge Engineering and Knowledge Management;CORE2023;B;Data management and data science
EMAS;EMAS;CORE2023;B;Artificial intelligence
EMMSAD;Exploring Modelling Methods in Systems Analysis and Design;CORE2023;C;Software engineering
EMNLP;Empirical Methods in Natural Language Processing;CORE2023;A*;Artificial intelligence
EMSOFT;ACM Conference on Embedded Software;CORE2023;;Distributed computing and systems software
ENASE;International Conference on Evaluation of Novel Approaches to Software Engineering;CORE2023;B;Software engineering
ENTER;International Conference on Information and Communication Technologies in Tourism;CORE2023;C;Applied computing
EOMAS;International Workshop on Enterprise and Organizational Modelling and Simulation;CORE2023;C;Software engineering
EPIA;Portuguese Conference on Artificial Intelligence;CORE2023;National: Portugal;Artificial intelligence
ER;International Conference on Conceptual Modelling;CORE2023;A;Data management and data science
ESA;European Symposium on Algorithms;CORE2023;A;Theory of computation
ESANN;European Symposium on Artificial Neural Networks;CORE2023;B;Machine learning
ESEM;International Symposium on Empirical Software Engineering and Measurement;CORE2023;A;Software engineering
ESOP;European Symposium on Programming;CORE2023;A;Software engineering
ESORICS;European Symposium On Research In Computer Security;CORE2023;A;Cybersecurity and privacy
ESWC;Extended Semantic Web Conference;CORE2023;B;Data management and data science
ETFA;IEEE International Conference on Emerging Technologies and Factory Automation;CORE2023;;(missing)
ETHICOMP;ETHICOMP Conference;CORE2023;C;Human-centred computing
ETRA;Eye Tracking Research and Applications;CORE2023;B;Human-centred computing
ETS;IEEE European Test Symposium;CORE2023;;(missing)
EUC;IEEE/IFIP International Conference on Embedded and Ubiquitous Computing;CORE2023;C;Distributed computing and systems software
EUMAS;European Conference on Multi-Agent Systems;CORE2023;C;Artificial intelligence
EURO;European Conference on Operations Research;CORE2023;C;Artificial intelligence
EUROGP;European Conference on Genetic Programming;CORE2023;B;Artificial intelligence
EUSFLAT;Conference of the European Society for Fuzzy Logic and Technologies;CORE2023;C;Artificial intelligence
EUSPN;International Conference on Emerging Ubiquitous Systems and Pervasive Networks;CORE2023;;Distributed computing and systems software
EUroComb;EuroConference on Combinatorics, Graph Theory and Applications;CORE2023;C;Theory of computation
EWSN;International Conference on Embedded Wireless Systems and Networks (wasEuropean Conference on Wireless Sensor Networks);CORE2023;B;Distributed computing and systems software
Euro VR;Euro Virtual Reality;CORE2023;C;Graphics, augmented reality and games
EuroCG;European Workshop on Computational Geometry;CORE2023;C;Theory of computation
EuroCrypt;International Conference on the Theory and Application of Cryptographic Techniques;CORE2023;A*;Cybersecurity and privacy
EuroMPI;European MPI Users' Group Conference;CORE2023;C;Distributed computing and systems software
EuroPLop;European Conference on Pattern Languages of Programs;CORE2023;National: Germany;Software engineering
EuroPar;International European Conference on Parallel and Distributed Computing;CORE2023;B;Distributed computing and systems software
EuroS&P;IEEE European Symposium on Security and Privacy;CORE2023;A;Cybersecurity and privacy
EuroSPI;European SPI;CORE2023;B;Software engineering
EuroSys;Eurosys Conference;CORE2023;A;Distributed computing and systems software
EuroVA;Visual Analytics;CORE2023;C;Human-centred computing
EuroVis;Eurographics/IEEE Symposium on Visualization;CORE2023;B;Graphics, augmented reality and games
EvoApplications;International Conference on Applications of Evolutionary Computation;CORE2023;B;Artificial intelligence
EvoCOP;European Conference on Evolutionary Computation in Combinatorial Optimisation;CORE2023;B;Artificial intelligence
EvoMUSART;International Conference on Artificial Intelligence in Music, Sound, Art and Design;CORE2023;C;Artificial intelligence
FASE;Fundamental Approaches to Software Engineering;CORE2023;B;Software engineering
FAST;Conference on File and Storage Technologies;CORE2023;A;Data management and data science
FAW;International Frontiers of Algorithmics Workshop;CORE2023;National: China;Theory of computation
FC;Financial Cryptography and Data Security Conference;CORE2023;A;Cybersecurity and privacy
FCCM;IEEE Symposium on Field Programmable Custom Computing Machines;CORE2023;B;(missing)
FCT;International Symposium on Fundamentals of Computation Theory;CORE2023;B;Theory of computation
FDG;International Conference on the Foundations of Digital Games;CORE2023;C;Graphics, augmented reality and games
FDL;Forum on Specification and Design Languages;CORE2023;C;Software engineering
FDTC;Workshop on Fault Diagnosis and Tolerance in Cryptography;CORE2023;C;Cybersecurity and privacy
FG;IEEE International Conference on Automatic Face and Gesture Recognition;CORE2023;B;Computer vision and multimedia computation
FIE;Frontiers in Education;CORE2023;C;Human-centred computing
FIT;International Conference on Frontiers of Information Technology;CORE2023;National: Pakistan;Information And Computing Sciences
FLINS;International FLINS Conference on Robotics and Artificial Intelligence;CORE2023;C;Artificial intelligence
FLOPS;International Symposium on Functional and Logic Programming;CORE2023;National: Japan;Theory of computation
FM;International Symposium on Formal Methods;CORE2023;A;Software engineering
FMCAD;Formal Methods in Computer-Aided Design;CORE2023;B;Software engineering
FMICS;Int. Workshop on Formal Methods for Industrial Critical Systems;CORE2023;C;Software engineering
FMIS;International Workshop on Formal Methods for interactive Systems;CORE2023;C;Software engineering
FNC;The International Conference on Future Networks and Communications;CORE2023;;Distributed computing and systems software
FOCS;IEEE Symposium on Foundations of Computer Science;CORE2023;A*;Theory of computation
FOGA;Foundations of Genetic Algorithms;CORE2023;A;Artificial intelligence
FOIS;International Conference on Formal Ontology in Information Systems;CORE2023;B;Artificial intelligence
FORTE;IFIP Joint International Conference on Formal Description Techniques and Protocol Specification, Testing, And Verification;CORE2023;C;Software engineering
FOSSACS;Foundations of Software Science and Computational Structures;CORE2023;A;Theory of computation
FPGA;ACM Int'l Symposium on Field Programmable Gate Arrays;CORE2023;;(missing)
FPL;Field Programmable Logic and Applications;CORE2023;;(missing)
FQAS;Flexible Query-Answering Systems;CORE2023;C;Data management and data science
FRUCT;IEEE Conference of the Open Innovations Association FRUCT;CORE2023;Regional;Distributed computing and systems software
FSCD;International Conference on Formal Structures for Computation and Deduction;CORE2023;B;Theory of computation
FSE;ACM International Conference on the Foundations of Software Engineering;CORE2023;A*;Software engineering
FSE;International Workshop on Fast Software Encryption;CORE2023;;Cybersecurity and privacy
FSR;International Conference on Field and Service Robotics;CORE2018;A;Artificial intelligence
FST&TCS;Foundations of Software Technology and Theoretical Computer Science;CORE2023;National: India;Theory of computation
FTfJP;Workshop on Formal Techniques for Java-like Programs;CORE2023;C;Software engineering
FUN;Conference on Fun with Algorithms;CORE2023;National: Italy;Theory of computation
FUSION;International Conference on Information Fusion;CORE2023;C;Data management and data science
FUZZ-IEEE;IEEE International Conference on Fuzzy Systems;CORE2023;B;Artificial intelligence
FedCSIS;CONFERENCE ON COMPUTER SCIENCE AND INTELLIGENCE SYSTEMS;CORE2023;;Artificial intelligence
FlAIRS;Florida Artificial Intelligence Research Society Conference;CORE2023;National: USA;Artificial intelligence
GD;Graph Drawing;CORE2023;A;Theory of computation
GECCO;Genetic and Evolutionary Computations;CORE2023;A;Artificial intelligence
GI;Graphics Interface;CORE2023;B;Graphics, augmented reality and games
GI;IEEE Global Internet Symposium;CORE2023;C;Distributed computing and systems software
GLOBECOM;IEEE Global Telecommunications Conference;CORE2023;B;Distributed computing and systems software
GMP;Geometry Modeling and Processing;CORE2023;C;Theory of computation
GPC;International Conference on Green, Pervasive and Cloud Computing;CORE2023;C;Distributed computing and systems software
GPCE;International Conference on Generative Programming and Component Engineering;CORE2023;B;Software engineering
GRC;Visualization In Science and Education;CORE2023;National: USA;Human-centred computing
GWC;International Wordnet Conference (Global Wordnet Conference);CORE2023;C;Data management and data science
Graph-hoc;Workshop on Applications of Graph Theory in Wireless Ad hoc Networks and Sensor Networks;CORE2023;C;Distributed computing and systems software
Group;ACM Special Interest Group on Supporting Group Work;CORE2023;B;Human-centred computing
HAI;Human-Agent Interaction;CORE2023;B;Human-centred computing
HAIS;International Conference on Hybrid Artificial Intelligence Systems;CORE2023;National: Spain;Artificial intelligence
HASKELL;Haskell Workshop;CORE2023;C;Software engineering
HCI;British Computer Society Conference on Human-Computer Interaction;CORE2023;National;Human-centred computing
HCOMP;AAAI Conference on Human Computation and Crowdsourcing;CORE2023;B;Human-centred computing
HCW;Heterogeneity in Computing Workshop;CORE2023;C;Distributed computing and systems software
HCist;HCist - International Conference on Health and Social Care Information Systems and Technologies;CORE2023;;Applied computing
HIC;Health Informatics Conference;CORE2023;Australasian C;Applied computing
HIPS;International Workshop on High-Level Parallel Programming Models and Supportive Environments;CORE2023;C;Distributed computing and systems software
HIS;International Conference on Hybrid Intelligent Systems;CORE2023;C;Artificial intelligence
HLPP;International workshop on High-Level Parallel Programming and Applications;CORE2023;C;Distributed computing and systems software
HOTCHIPS (HCS);Symposium on High Performance Chips;CORE2023;C;Distributed computing and systems software
HOTI;IEEE Symposium on High-Performance Interconnects;CORE2023;National: USA;Distributed computing and systems software
HOTMOBILE;Workshop on Mobile Computing Systems and Applications;CORE2023;National: USA;Distributed computing and systems software
HOTNETS;ACM Workshop on Hot Topics in Networks;CORE2023;National: USA;Distributed computing and systems software
HPC Asia;International Conference and Exhibition on High Performance Computing in the Asia-Pacific Region;CORE2023;C;Distributed computing and systems software
HPCA;International Symposium on High Performance Computer Architecture;CORE2023;A*;(missing)
HPCC;IEEE International Conference on High Performance Computing and Communications;CORE2023;C;Distributed computing and systems software
HPDC;ACM International Symposium on High Performance Distributed Computing;CORE2023;A;Distributed computing and systems software
HPSC;International Conference on High Performance Scientific Computing;CORE2023;National: Vietnam;Distributed computing and systems software
HPSR;IEEE Workshop on High Performance Switching and Routing;CORE2023;C;Distributed computing and systems software
HRI;ACM/IEEE International Conference on Human-Robot Interaction;CORE2023;A;Human-centred computing
HSI;Human System Interaction;CORE2023;C;Human-centred computing
HealthCom;IEEE international conference on ehealth networking applications and services;CORE2023;C;Applied computing
HiPC;International Conference on High Performance Computing;CORE2023;National: India;Distributed computing and systems software
HotOS;USENIX Workshop on Hot Topics in Operating Systems;CORE2023;A;Distributed computing and systems software
I3DG;ACM-SIGRAPH Interactive 3D Graphics and Games;CORE2023;B;Graphics, augmented reality and games
I4CS;International Conference on Innovations for Community Services;CORE2023;C;Applied computing
IAAI;Innovative Applications in AI;CORE2023;C;Artificial intelligence
IADIS AC;IADIS International Conference Applied Computing;CORE2023;C;Applied computing
IAS;IEEE Industry Applications Society Annual Conference;CORE2023;National: USA;Applied computing
IAS;International Symposium on Information Assurance and Security;CORE2023;C;Cybersecurity and privacy
IC-AI;International Conference on Artificial Intelligence;CORE2023;National: USA;Artificial intelligence
IC3K;International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management;CORE2023;C;Data management and data science
ICA3PP;International Conference on Algorithms and Architectures for Parallel Processing;CORE2023;C;Distributed computing and systems software
ICAART;International Conference on Agents and Artificial Intelligence;CORE2023;B;Artificial intelligence
ICAIL;International Conference on Artificial Intelligence and Law;CORE2023;C;Artificial intelligence
ICAISC;International Conference on Artificial Intelligence and Soft Computing;CORE2023;National: Poland;Artificial intelligence
ICALP;International Colloquium on Automata Languages and Programming;CORE2023;A;Theory of computation
ICALT;IEEE International Conference on Advanced Learning Technologies;CORE2023;B;Applied computing
ICANN;International Conference on Artificial Neural Networks;CORE2023;C;Machine learning
ICAPS;International Conference on Automated Planning and Scheduling;CORE2023;A*;Artificial intelligence
ICARCV;International Conference on Control, Automation, Robotics and Vision;CORE2023;C;Artificial intelligence
ICASSP;IEEE International Conference on Acoustics, Speech and Signal Processing;CORE2018;B;Communications engineering
ICBC;IEEE International Conference on Blockchain and Cryptocurrency;CORE2023;C;Distributed computing and systems software
ICC;IEEE International Conference on Communications;CORE2018;B;Communications engineering
ICCAD;IEEE/ACM International Conference on Computer-Aided Design;CORE2023;A;(missing)
ICCAM;International Congress on Computational and Applied Mathematics;CORE2023;C;Theory of computation
ICCBR;International Conference on Case-Based Reasoning;CORE2023;C;Artificial intelligence
ICCC;International Conference on Computational Creativity;CORE2023;C;Information And Computing Sciences
ICCCI;International Conference on Computational Collective Intelligence;CORE2023;B;Artificial intelligence
ICCCN;International Conference on Computer Communication and Networks;CORE2023;B;Distributed computing and systems software
ICCD;IEEE International Conference on Computer Design;CORE2023;;(missing)
ICCE;International Conference on Computers in Education;CORE2023;C;Applied computing
ICCHP;International Conference on Computers Helping People with Special Needs;CORE2023;C;Applied computing
ICCI;IEEE International Conference on Cognitive Informatics;CORE2023;C;Artificial intelligence
ICCP;IEEE International Conference on Intelligent Computer Communication and Processing;CORE2023;National: Romania;Artificial intelligence
ICCS;International Conference on Computational Science;CORE2023;;Applied computing
ICCS;International Conference on Conceptual Structures;CORE2021;B;Theory of computation
ICCSA;International Conference on Communication Systems and Applications;CORE2023;C;Distributed computing and systems software
ICCSA;International Conference on Computational Science and its Applications;CORE2023;C;Information And Computing Sciences
ICCV;IEEE International Conference on Computer Vision;CORE2023;A*;Computer vision and multimedia computation
ICCVG;International Conference on Computer Vision and Graphics;CORE2023;National: Poland;Computer vision and multimedia computation
ICDAR;IEEE International Conference on Document Analysis and Recognition;CORE2023;A;Data management and data science
ICDCIT;International Conference on Distributed Computing and Internet Technologies;CORE2023;National: India;Distributed computing and systems software
ICDCN;International Conference on Distributed Computing and Networking;CORE2023;National: India;Distributed computing and systems software
ICDCS;International Conference on Distributed Computing Systems;CORE2023;A;Distributed computing and systems software
ICDE;International Conference on Data Engineering;CORE2023;A*;Data management and data science
ICDM;IEEE International Conference on Data Mining;CORE2023;A*;Data management and data science
ICDS;International Conference on Digital Society;CORE2023;C;Applied computing
ICDSE;IEEE International Conference on Data Science and Engineering;CORE2023;National: India;Data management and data science
ICDT;International Conference on Database Theory;CORE2023;A;Data management and data science
ICEC;International Conference on Electronic Commerce;CORE2023;C;Applied computing
ICEC;International Conference on Entertainment Computing;CORE2023;C;Graphics, augmented reality and games
ICECCS;IEEE International Conference on Engineering of Complex Computer Systems;CORE2023;B;Software engineering
ICER;International Computing Education Research Workshop;CORE2023;A;Human-centred computing
ICFCA;International Conference Formal Concept Analysis Conference;CORE2023;C;Theory of computation
ICFEC;IEEE International Conference on Fog and Edge Computing;CORE2023;C;Distributed computing and systems software
ICFEM;International Conference on Formal Engineering Methods;CORE2023;C;Software engineering
ICFHR;International Conference on Frontiers of Handwriting Recognition;CORE2023;B;Computer vision and multimedia computation
ICFP;International Conference on Functional Programming;CORE2023;A;Software engineering
ICGSE;IEEE International Conference on Global Software Engineering;CORE2023;C;Software engineering
ICGT;International Conference on Graph Transformations;CORE2023;B;Theory of computation
ICIAP;International Conference on Image Analysis and Processing;CORE2023;National: Italy;Computer vision and multimedia computation
ICICS;International Conference on Information and Communications Security;CORE2023;C;Cybersecurity and privacy
ICICSE;International Conference on Internet Computing in Science and Engineering;CORE2023;C;Distributed computing and systems software
ICIDS;International Conference on Interactive Digital Storytelling;CORE2023;C;Graphics, augmented reality and games
ICIG;International Conference on Image and Graphics;CORE2023;National: China;Graphics, augmented reality and games
ICIMP;International Conference on Internet Monitoring and Protection;CORE2023;C;Cybersecurity and privacy
ICIN;Conference on Innovation in Clouds, Internet and Networks;CORE2023;National: France;Distributed computing and systems software
ICINCO;International Conference on Informatics in Control, Automation and Robotics;CORE2023;C;Artificial intelligence
ICIP;IEEE International Conference on Image Processing;CORE2023;B;Computer vision and multimedia computation
ICIS;IEEE/ACIS International Conference on Computer and Information Science;CORE2023;C;Information And Computing Sciences
ICISC;International Conference on Information Security and Cryptology;CORE2023;National: Korea;Cybersecurity and privacy
ICISP;International Conference on Image and Signal Processing;CORE2023;C;Computer vision and multimedia computation
ICISS;International Conference on Information Systems Security;CORE2023;National: India;Cybersecurity and privacy
ICISSP;International Conference on Information Systems Security and Privacy;CORE2023;C;Cybersecurity and privacy
ICITA;International Conference on Information Technology and Applications;CORE2023;Australasian C;Applied computing
ICIW;International Conference on Internet and Web Applications and Services;CORE2023;C;Distributed computing and systems software
ICLP;International Conference on Logic Programming;CORE2023;A;Theory of computation
ICLR;International Conference on Learning Representations;CORE2023;A*;Machine learning
ICME;IEEE International Conference on Multimedia and Expo;CORE2023;A;Computer vision and multimedia computation
ICMI;International Conference on Multimodal Interaction;CORE2023;B;Human-centred computing
ICML;International Conference on Machine Learning;CORE2023;A*;Machine learning
ICMLA;International Conference on Machine Learning and Applications;CORE2023;C;Machine learning
ICMLC;International Conference on Machine Learning and Cybernetics;CORE2023;National: China;Machine learning
ICMR;International Conference on Multimedia Retrieval;CORE2023;B;Computer vision and multimedia computation
ICMV;International Conference on Machine Vision;CORE2023;C;Computer vision and multimedia computation
ICNC;International Conference on Natural Computation;CORE2023;National: China;Artificial intelligence
ICNP;International Conference on Network Protocols;CORE2023;B;Distributed computing and systems software
ICOCI;International Conference on Computing and Informatics;CORE2023;C;Information And Computing Sciences
ICONIP;International Conference on Neural Information Processing;CORE2023;B;Machine learning
ICORES;International Conference on Operations Research and Enterprise Systems;CORE2023;C;Artificial intelligence
ICOST;International Conference on Smart homes and health Telematics;CORE2023;C;Applied computing
ICOTA;International Conference on Optimization: Techniques And Applications;CORE2023;C;Artificial intelligence
ICPADS;International Conference on Parallel and Distributed Systems;CORE2023;B;Distributed computing and systems software
ICPC;IEEE International Conference on Program Comprehension;CORE2023;A;Software engineering
ICPE;ACM/SPEC International Conference on Performance Engineering;CORE2023;B;Software engineering
ICPM;International Conference on Process Mining;CORE2023;B;Data management and data science
ICPP;International Conference on Parallel Processing;CORE2023;B;Distributed computing and systems software
ICPR;International Conference on Pattern Recognition;CORE2023;B;Computer vision and multimedia computation
ICPRAM;International Conference on Pattern Recognition Applications and Methods;CORE2023;C;Computer vision and multimedia computation
ICRA;IEEE International Conference on Robotics and Automation;CORE2023;A*;Artificial intelligence
ICS;ACM International Conference on Supercomputing;CORE2023;A;(missing)
ICSA;International Conference on Software Architecture;CORE2023;A;Software engineering
ICSE;International Conference on Software Engineering;CORE2023;A*;Software engineering
ICSEA;International Conference on Software Engineering Advances;CORE2023;C;Software engineering
ICSEng;International Conference on Systems Engineering;CORE2023;C;Information And Computing Sciences
ICSME;IEEE International Conference on Software Maintenance and Evolution;CORE2023;A;Software engineering
ICSOC;International Conference on Service Oriented Computing;CORE2023;A;Distributed computing and systems software
ICSR;International Conference on Software Reuse;CORE2023;B;Software engineering
ICSSP;International Conference on Software and System Processes;CORE2023;B;Software engineering
ICST;International Conference on Software Testing, Verification and Validation;CORE2023;A;Software engineering
ICSoft;International Conference on Software and Data Technologies;CORE2023;C;Software engineering
ICT4AWE;International Conference on Information and Communication Technologies for Ageing Well and e-Health;CORE2023;C;Applied computing
ICTAC;International Colloquium on Theoretical Aspects of Computing;CORE2023;C;Theory of computation
ICTAI;International Conference on Tools with Artificial Intelligence;CORE2023;B;Artificial intelligence
ICTD;International Conference on Information and Communication Technologies and Development;CORE2023;C;Applied computing
ICTERI;ICT in Education, Research, and Industrial Applications;CORE2023;National: Ukraine;Applied computing
ICTIR;International Conference on the Theory of Information Retrieval;CORE2023;;Data management and data science
ICTSS;International Conference on Testing Software and Systems;CORE2023;C;Software engineering
ICVR;International Conference on Virtual Rehabilitation;CORE2023;;Applied computing
ICVS;International Conference on Computer Vision Systems;CORE2023;C;Computer vision and multimedia computation
ICWE;International Conference on Web Engineering;CORE2023;B;Data management and data science
ICWS;IEEE International Conference on Web Services;CORE2023;A;Distributed computing and systems software
ICWSM;International Conference on Web and Social Media;CORE2023;A;Applied computing
IDA;Intelligent Data Analysis;CORE2023;B;Data management and data science
IDC;Intelligent Distributed Computing;CORE2023;;Distributed computing and systems software
IDC;Interaction Design and Children (ACM);CORE2023;B;Human-centred computing
IDDM;International Conference on Informatics & Data-Driven Medicine;CORE2023;C;Machine learning
IDEAL;International Conference on Intelligent Data Engineering and Automated Learning;CORE2023;C;Information And Computing Sciences
IDEAS;International Database Engineering and Applications Symposium;CORE2023;C;Data management and data science
IE;Interactive Entertainment;CORE2023;Australasian C;Graphics, augmented reality and games
IE;The International Conference on Intelligent Environments;CORE2023;B;Artificial intelligence
IEA/AIE;International Conference on Industrial and Engineering Applications of Artificial Intelligence and Expert Systems;CORE2023;C;Artificial intelligence
IECON;IEEE Industrial Electronics Society;CORE2023;;(missing)
IES;Asia Pacific Symposium on Intelligent and Evolutionary Systems;CORE2023;C;Artificial intelligence
IFIP SEC;IFIP Information Security & Privacy Conference;CORE2023;B;Cybersecurity and privacy
IFM;Integrated Formal Methods;CORE2023;B;Software engineering
IFSA;IFSA World Congress;CORE2023;C;Artificial intelligence
IGARSS;IEEE International Geoscience and Remote Sensing Symposium;CORE2023;C;Applied computing
IH&MMSec;Information Hiding and Multimedia Security Workshop;CORE2023;C;Cybersecurity and privacy
IIWAS;Information Integration and Web-based Applications and Services;CORE2023;C;Information And Computing Sciences
IJCAI;International Joint Conference on Artificial Intelligence;CORE2023;A*;Artificial intelligence
IJCAR;International Joint Conference on Automated Reasoning;CORE2023;A;Artificial intelligence
IJCB;International Joint Conference on Biometrics;CORE2023;B;Computer vision and multimedia computation
IJCCI;International Joint Conference on Computational Intelligence;CORE2023;C;Artificial intelligence
IJCNLP;International Joint Conference on Natural Language Processing;CORE2023;B;Artificial intelligence
IJCNN;IEEE International Joint Conference on Neural Networks;CORE2023;B;Machine learning
IJCRS (was RSCTC);International Joint Conference on Rough Sets (2014 International Conference on Rough Sets and Current Trends in Computing joined with 3 others);CORE2023;C;Artificial intelligence
IKE;International Conference on Information and Knowledge Engineering;CORE2023;National: USA;Artificial intelligence
ILP;Inductive Logic Programming;CORE2023;B;Theory of computation
IM;IFIP/IEEE International Symposium on Integrated Management (even years sharing with NOMS);CORE2023;B;Distributed computing and systems software
IMACC;IMA International Conference on Cryptography and Coding;CORE2023;C;Cybersecurity and privacy
IMC;Internet Measurement Conference;CORE2023;A;Distributed computing and systems software
IMVIP;International Machine Vision and Image Processing Conference;CORE2023;National: Ireland;Computer vision and multimedia computation
INDIN;IEEE International Conference on Industrial Informatics;CORE2023;;(missing)
INDOCRYPT;International Conference on Cryptology in India;CORE2023;National: India;Cybersecurity and privacy
INFOCOM;IEEE International Conference on Computer Communications;CORE2023;A*;Distributed computing and systems software
INFOCOMP;International Conference on Advanced Communications and Computation;CORE2023;;Information And Computing Sciences
INISTA;International Symposium on Innovations in Intelligent Systems and Applications;CORE2023;C;Artificial intelligence
INLG;International Natural Language Generation Conference;CORE2023;B;Artificial intelligence
INOC;International Network Optimization Conference;CORE2023;C;Distributed computing and systems software
IOLTS;IEEE International On-Line Testing Symposium;CORE2023;C;Software engineering
IPCCC;IEEE International Performance Computing and Communications Conference;CORE2023;C;Distributed computing and systems software
IPCO;Conference on Integer Programming and Combinatorial Optimization;CORE2023;A;Theory of computation
IPDPS;IEEE International Parallel and Distributed Processing Symposium;CORE2023;A;Distributed computing and systems software
IPEC;International Symposium on Parameterized and Exact Computation;CORE2023;B;Theory of computation
IPIN;International Conference on Indoor Positioning and Indoor Navigation;CORE2023;C;Distributed computing and systems software
IPMU;International Conference on Information Processing and Management of Uncertainty;CORE2023;C;Data management and data science
IPSN;Information Processing in Sensor Networks;CORE2023;A*;Distributed computing and systems software
IRI;IEEE International Conference on Information Reuse and Integration;CORE2023;National: USA;Data management and data science
IROS;IEEE/RSJ International Conference on Intelligent Robots and Systems;CORE2023;A;Artificial intelligence
IS;IEEE International Conference on Intelligent Systems;CORE2023;C;Artificial intelligence
ISAAC;International Symposium on Algorithms and Computation;CORE2023;A;Theory of computation
ISADS;International Symposium on Autonomous Decentralized Systems;CORE2023;C;Distributed computing and systems software
ISAGA;Conference for the International Simulation and Gaming Association;CORE2023;C;Graphics, augmented reality and games
ISAIM;International Symposium on Artificial Intelligence and Mathematics;CORE2023;National: USA;Artificial intelligence
ISARC;International Symposium on Automation and Robotics in Construction;CORE2023;C;Artificial intelligence
ISC;ISC High Performance;CORE2023;C;Distributed computing and systems software
ISC;Industrial Simulation Conference;CORE2023;C;Artificial intelligence
ISC;Information Security Conference;CORE2023;C;Cybersecurity and privacy
ISCA;ACM International Symposium on Computer Architecture;CORE2023;A*;(missing)
ISCAS;IEEE International Symposium on Circuits and Systems;CORE2023;;(missing)
ISCC;IEEE Symposium on Computers and Communications;CORE2023;C;Distributed computing and systems software
ISCO;International Symposium on Combinatorial Optimisation;CORE2023;C;Theory of computation
ISDA;International Conference on Intelligent Systems Designs and Applications;CORE2023;C;Artificial intelligence
ISGC;International Symposium on Grids and Clouds;CORE2023;C;Distributed computing and systems software
ISI;IEEE International Conference on Intelligence and Security Informatics;CORE2023;C;Cybersecurity and privacy
ISIT;IEEE International Symposium on Information Theory;CORE2023;B;Theory of computation
ISITA;International Symposium on Information Theory and Its Applications;CORE2023;C;Theory of computation
ISKE;International Conference on Intelligent Systems and Knowledge Engineering;CORE2023;National: China;Artificial intelligence
ISM;IEEE International Symposium on Multimedia;CORE2023;C;Computer vision and multimedia computation
ISMAR;IEEE/ACM International Symposium on Mixed and Augmented Reality;CORE2023;A*;Graphics, augmented reality and games
ISMB;Intelligent Systems in Molecular Biology;CORE2023;;Applied computing
ISMIS;International Symposium on Foundations of Intelligent Systems;CORE2023;C;Artificial intelligence
ISMM;International Symposium on Memory Management;CORE2023;C;Distributed computing and systems software
ISNCC;International Symposium on Networks, Computers and Communications;CORE2023;C;Distributed computing and systems software
ISNN;International Symposium on Neural Networks;CORE2023;C;Machine learning
ISORC;IEEE International Symposium on Real-Time Distributed Computing;CORE2023;C;Distributed computing and systems software
ISPA;IEEE International Symposium on Parallel and Distributed Processing with Applications;CORE2023;C;Distributed computing and systems software
ISPASS;IEEE International Symposium on Performance Analysis of Systems and Software;CORE2023;B;Software engineering
ISPDC;International Symposium on Parallel and Distributed Computing;CORE2023;C;Distributed computing and systems software
ISPEC;Information Security Practice and Experience Conference;CORE2023;C;Cybersecurity and privacy
ISPR;Annual International Workshop on Presence;CORE2023;C;Graphics, augmented reality and games
ISR;International Symposium on Robotics;CORE2018;A;Control engineering, mechatronics and robotics
ISRR;International Symposium on Robotics Research;CORE2023;C;Artificial intelligence
ISS;ACM International Conference on Interactive Surfaces and Spaces;CORE2023;;Human-centred computing
ISSAC;International Symposium on Symbolic and Algebraic Computation;CORE2023;A;Theory of computation
ISSCC;IEEE International Solid-State Circuits Conference;CORE2018;A;Electronics, sensors and digital hardware
ISSDQ;International Symposium on Spatial Data Quality;CORE2023;C;Applied computing
ISSRE;International Symposium on Software Reliability Engineering;CORE2023;A;Software engineering
ISSTA;International Symposium on Software Testing and Analysis;CORE2023;A;Software engineering
ISTAS;International Symposium on Technology and Society;CORE2023;C;Information And Computing Sciences
ISUVR;International Symposium on Ubiquitous Virtual Reality;CORE2023;National: S. Korea;Graphics, augmented reality and games
ISVC;International Symposium on Visual Computing;CORE2023;National: USA;Graphics, augmented reality and games
ISWC;IEEE International Symposium on Wearable Computers;CORE2023;;Human-centred computing
ISWC;International Semantic Web Conference;CORE2023;A;Data management and data science
ISoLA;International Symposium on Leveraging Applications of Formal Methods, Verification and Validation;CORE2023;C;Software engineering
ITA;International Conference on Internet Technologies and Applications;CORE2023;National: USA;Information And Computing Sciences
ITC;IEEE International Test Conference;CORE2023;;(missing)
ITC;International Teletraffic Congress;CORE2023;;Distributed computing and systems software
ITCS;Innovations in Theoretical Computer Science;CORE2023;A;Theory of computation
ITNAC;International Telecommunication Networks and Applications Conference;CORE2023;Australasian C;Distributed computing and systems software
ITP;Conference on Interactive Theorem Proving;CORE2023;A;Theory of computation
ITS;International Conference on Intelligent Tutoring Systems;CORE2023;B;Applied computing
ITW;Information Theory Workshop;CORE2023;B;Theory of computation
ITiCSE;Annual Conference on Innovation and Technology in Computer Science Education;CORE2023;B;Human-centred computing
IUI;International Conference on Intelligent User Interfaces;CORE2023;A;Human-centred computing
IV;Intelligent Vehicles Conference;CORE2023;B;Artificial intelligence
IV;International Conference on Information Visualisation;CORE2023;C;Human-centred computing
IV-App;Applications of Information Visualization;CORE2023;C;Human-centred computing
IVA;Intelligent Virtual Agents;CORE2023;B;Artificial intelligence
IVBI;Information Visualization in Biomedical Informatics;CORE2023;C;Applied computing
IVCNZ;Image and Vision Computing Conference;CORE2023;Australasian C;Computer vision and multimedia computation
IWANN;International Work-Conference on Artificial and Natural Neural Networks;CORE2023;National: Spain;Machine learning
IWCIA;International Workshop on Combinatorial Image Analysis: Theory and Applications;CORE2023;C;Computer vision and multimedia computation
IWCMC;ACM International Wireless Communications and Mobile Computing Conference;CORE2023;B;Distributed computing and systems software
IWDW;International Workshop on Digital Watermarking;CORE2023;C;Cybersecurity and privacy
IWINAC;International Work-conference on the Interplay between Natural and Artificial Computation;CORE2023;National;Artificial intelligence
IWOCA;International Workshop on Combinatorial Algorithm;CORE2023;C;Theory of computation
IWQoS;IEEE International Workshop on Quality of Service;CORE2023;B;Distributed computing and systems software
IWSEC;International Workshop on Security;CORE2023;National: Japan;Cybersecurity and privacy
IWSM Mensura;Joint Conference of the International Workshop on Software Measurement and the International Conference on Software Process and Product Measurement;CORE2023;C;Software engineering
InSITE;Informing Science and Information Technology Education;CORE2023;C;Human-centred computing
IndiaHCI;Indian Conference on Human-Computer Interaction;CORE2023;National: India;Human-centred computing
InfVis;Information Visualisation Theory and Practice;CORE2023;C;Human-centred computing
Informatics;IEEE International Scientific Conference on Informatics;CORE2023;National: Slovakia;Theory of computation
Inscrypt;SKLOIS Conference on Information Security and Cryptology;CORE2023;National: China;Cybersecurity and privacy
Interact;IFIP TC13 Conference on Human-Computer Interaction;CORE2023;B;Human-centred computing
Interspeech;Interspeech;CORE2023;A;Artificial intelligence
IoTBDS;International Conference on Internet of Things, Big Data and Security;CORE2023;C;Cybersecurity and privacy
JADT;International Conference on the Statistical Analysis of Textual Data;CORE2023;C;Artificial intelligence
JELIA;Logics in Artificial Intelligence, European Conference;CORE2023;A;Theory of computation
JSSPP;Workshop on Job Scheduling Strategies for Parallel Processing;CORE2023;C;Distributed computing and systems software
JURIX;International Conference on Legal Knowledge and Information Systems;CORE2023;C;Applied computing
K-CAP;Knowledge capture;CORE2023;B;Data management and data science
KDD;ACM International Conference on Knowledge Discovery and Data Mining;CORE2023;A*;Data management and data science
KDViz;Knowledge Domain Visualisation;CORE2023;National: Uk;Human-centred computing
KEOD;International Conference on Knowledge Engineering and Ontology Development;CORE2023;C;Data management and data science
KES;International Conference on Knowledge-Based and Intelligent Information and Engineering Systems;CORE2023;B;Artificial intelligence
KES AMSTA;International KES Conference on Agents and Multiagent systems - Technologies and Applications;CORE2023;C;Artificial intelligence
KES IDT;KES International Symposium on Intelligent Decision Technologies;CORE2023;C;Artificial intelligence
KR;International Conference on the Principles of Knowledge Representation and Reasoning;CORE2023;A*;Artificial intelligence
KSEM;International Conference on Knowledge Science, Engineering and Management;CORE2023;C;Artificial intelligence
KV;Knowledge Visualization and Visual Thinking;CORE2023;C;Human-centred computing
LAGOS;Latin-American Algorithms, Graphs and Optimization Symposium;CORE2023;C;Theory of computation
LAK;International Conference on Learning Analytics and Knowledge;CORE2023;A;Human-centred computing
LANMAN;IEEE LAN/MAN Workshop;CORE2023;C;Distributed computing and systems software
LATA;International Conference on Language and Automata Theory and Applications;CORE2023;C;Theory of computation
LATIN;International Symposium on Latin American Theoretical Informatics;CORE2023;B;Theory of computation
LCN;IEEE Conference on Local Computer Networks;CORE2023;B;Distributed computing and systems software
LCTES;ACM SIGPLAN Conference on Languages, Tools, and Compilers for Embedded Systems;CORE2023;B;Distributed computing and systems software
LDK;Language, Data and Knowledge;CORE2023;C;Artificial intelligence
LFCS;Logical Foundations of Computer Science;CORE2023;National: USA;Theory of computation
LICS;IEEE Symposium on Logic in Computer Science;CORE2023;A*;Theory of computation
LOPSTR;International Symposium on Logic-based Program Synthesis and Transformation;CORE2023;C;Theory of computation
LPAR;Logic Programming and Automated Reasoning;CORE2023;B;Theory of computation
LPNMR;International Conference on Logic Programming and Non-monotonic Reasoning;CORE2023;B;Artificial intelligence
LREC;Language Resources and Evaluation Conference;CORE2023;B;Artificial intelligence
M2VIP;Mechatronics and Machine Vision in Practice;CORE2018;B;Machine learning
MABS;International Workshop on MultiAgent Based Simulation;CORE2023;C;Artificial intelligence
MASCOTS;Symposium Model Analysis and Simulation of Computer and Telecommunications Systems;CORE2023;B;Distributed computing and systems software
MASS;IEEE International Conference on Mobile Ad-hoc and Sensor Systems;CORE2023;B;Distributed computing and systems software
MCU;Machines, Computations and Universality;CORE2023;C;Theory of computation
MDAI;International Conference on Modelling Decisions for Artificial Intelligence;CORE2023;B;Artificial intelligence
MDM;International Conference on Mobile Data Management;CORE2023;B;Data management and data science
MEDES;International Conference on Management of Digital EcoSystems;CORE2023;C;Distributed computing and systems software
MEDI;International Conference on Model and Data Engineering;CORE2023;C;Data management and data science
MEMOCODE;International Conference on Formal Methods and Models for Co-Design;CORE2023;C;Software engineering
MFCS;International Symposium on Mathematical Foundations of Computer Science;CORE2023;A;Theory of computation
MFPS;International Conference on Mathematical Foundations of Programming Semantics;CORE2023;B;Theory of computation
MICC;Malaysia International Conference on Communications;CORE2023;Regional;Distributed computing and systems software
MICCAI;Medical Image Computing and Computer-Assisted Intervention;CORE2023;A;Applied computing
MICRO;International Symposium on Microarchitecture;CORE2018;A;Applied computing
MICRO;International Symposium on Microarchitecture;CORE2023;;(missing)
MIS4TEL;International Conference in Methodologies and Intelligent Systems for Technology Enhanced Learning;CORE2023;National: Spain;Applied computing
MISE;International Workshop on Modelling in Software Engineering;CORE2023;C;Software engineering
MISSI;Multimedia and Network Information Systems;CORE2023;National: Poland;Computer vision and multimedia computation
MMAR;International Conference on Methods and Models in Automation and Robotics;CORE2023;National: Poland;Machine learning
MMM;International Conference on Multimedia Modelling;CORE2023;B;Computer vision and multimedia computation
MMSP;International Workshop on Multimedia Signal Processing;CORE2023;C;Computer vision and multimedia computation
MOBICOM;ACM International Conference on Mobile Computing and Networking;CORE2023;A*;Distributed computing and systems software
MOBIHOC;ACM Symposium on Mobile Ad Hoc Networking and Computing;CORE2023;A;Distributed computing and systems software
MODELS;International Conference on Model Driven Engineering Languages and Systems;CORE2023;A;Software engineering
MODELSWARD;International Conference on Model-Driven Engineering and Software Development;CORE2023;C;Distributed computing and systems software
MODSIM;International Congress on Modelling and Simulation;CORE2023;Australasian C;Artificial intelligence
MOMM;International Conference on Advances in Mobile Computing and Multimedia;CORE2023;C;Distributed computing and systems software
MOPTA;Modelling and Optimization: Theory and Applications;CORE2023;National: USA;Artificial intelligence
MPC;Mathematics of Program Construction;CORE2023;B;Theory of computation
MPLR;International Conference on Managed Programming Languages and Runtimes;CORE2023;C;Software engineering
MSR;IEEE International Working Conference on Mining Software Repositories;CORE2023;A;Software engineering
MSST;IEEE Conference on Mass Storage Systems and Technologies;CORE2023;National: USA;Distributed computing and systems software
MSWIM;ACM/IEEE International Conference on Modelling, Analysis and Simulation of Wireless and Mobile Systems;CORE2023;A;Distributed computing and systems software
MT SUMMIT;Machine Translation Summit;CORE2023;C;Artificial intelligence
MTNS;International Symposium on the Mathematical Theory of Networks and Systems;CORE2023;C;Distributed computing and systems software
MUM;Mobile and Ubiquitous Multimedia (ACM);CORE2023;B;Human-centred computing
MVA;Machine Vision Applications;CORE2023;National: Japan;Computer vision and multimedia computation
Middleware;ACM/IFIP/USENIX International Middleware Conference;CORE2023;A;Distributed computing and systems software
MobiSPC;International Conference on Mobile Systems and Pervasive Computing;CORE2023;;Distributed computing and systems software
MobileHCI;International Conference on Human-Computer Interaction with Mobile Devices and Services;CORE2023;B;Human-centred computing
Mobiquitous;International Conference on Mobile and Ubiquitous Systems: Networks and Services;CORE2023;C;Distributed computing and systems software
Mobisys;ACM SIGMOBILE International Conference on Mobile Systems, Applications and Services;CORE2023;A;Distributed computing and systems software
MuC;Mensch & Computer;CORE2023;National: Germany;Human-centred computing
NAACL;North American Association for Computational Linguistics;CORE2023;A;Artificial intelligence
NCA;IEEE International Symposium on Network Computing and Applications;CORE2023;B;Distributed computing and systems software
NDSS;Usenix Network and Distributed System Security Symposium;CORE2023;A*;Cybersecurity and privacy
NLDB;Applications of Natural Language to Data Bases;CORE2023;C;Artificial intelligence
NOMS;IEEE Network Operations and Management Symposium;CORE2023;B;Distributed computing and systems software
NOSSDAV;Network and Operating System Support for Digital Audio and Video;CORE2023;B;Distributed computing and systems software
NPC;IFIP International Conference on Network and Parallel Computing;CORE2023;C;Distributed computing and systems software
NSDI;Symposium on Networked Systems, Design and Implementation;CORE2023;National: USA;Distributed computing and systems software
NSPW;New Security Paradigms Workshop;CORE2023;C;Cybersecurity and privacy
NSS;International Conference on network and System Security;CORE2023;B;Cybersecurity and privacy
NZGDC;New Zealand Game Developers Conference;CORE2023;Australasian C;Graphics, augmented reality and games
NetSoft;International Conference on Network Softwarization;CORE2023;B;Distributed computing and systems software
Networking;IFIP International Conference on Networking;CORE2023;B;Distributed computing and systems software
NeurIPS;Advances in Neural Information Processing Systems;CORE2023;A*;Machine learning
NordiCHI;Nordic Conference on Human-Computer Interaction;CORE2023;Regional: Scandinavia;Human-centred computing
OOPSLA;ACM Conference on Object Oriented Programming Systems Languages and Applications;CORE2023;A;Software engineering
OP;SIAM Conference on Optimization;CORE2023;C;Artificial intelligence
OPENSYM;International Symposium on Open Collaboration;CORE2023;C;Software engineering
OPODIS;International Conference on Principles of Distributed Systems;CORE2023;B;Distributed computing and systems software
OSDI;Usenix Symposium on Operating Systems Design and Implementation;CORE2023;A*;Distributed computing and systems software
OZCHI;Australian Computer Human Interaction Conference;CORE2023;Australasian B;Human-centred computing
Onward;International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software;CORE2023;C;Software engineering
PAAMS;Practical Applications of Agents and Multiagent Systems;CORE2023;National: Spain;Artificial intelligence
PACBB;International Conference on Practical Applications of Computational Biology & Bioinformatics;CORE2023;National: Spain;Artificial intelligence
PACLIC;Pacific Asia Conference on Language, Information and Computation;CORE2023;C;Artificial intelligence
PACT;International Conference on Parallel Architecture and Compilation Techniques;CORE2023;B;Distributed computing and systems software
PADL;Practical Aspects of Declarative Languages;CORE2023;C;Software engineering
PADS;ACM SIGSIM Conference on Principles of Advanced Discrete Simulation;CORE2023;B;Distributed computing and systems software
PAKDD;Pacific-Asia Conference on Knowledge Discovery and Data Mining;CORE2023;B;Data management and data science
PAM;Passive and Active Measurement Conference;CORE2023;B;Distributed computing and systems software
PATAT;Practice and Theory of Automated Timetabling;CORE2023;C;Applied computing
PCS;International Picture Coding Symposium;CORE2023;C;Computer vision and multimedia computation
PDCAT;International Conference on Parallel and Distributed Computing, Applications and Technologies;CORE2023;C;Distributed computing and systems software
PDP;Euromicro International Conference on Parallel, Distributed and Network Based Processing;CORE2023;C;Distributed computing and systems software
PDPTA;International Conference on Parallel and Distributed Processing Techniques and Applications;CORE2023;National: USA;Distributed computing and systems software
PEMWN;IFIP/IEEE International Conference on Performance Evaluation and Modeling in Wired and Wireless Networks;CORE2023;C;Distributed computing and systems software
PEPM;ACM SIGPLAN Workshop on Partial Evaluation and Program Manipulation;CORE2023;C;Software engineering
PERCOM;IEEE International Conference on Pervasive Computing and Communications;CORE2023;A*;Human-centred computing
PERFORMANCE;IFIP International Symposium on Computing Performance, Modelling, Measurement and Evaluation;CORE2023;;Software engineering
PETS;Privacy Enhancing Technologies Symposium;CORE2023;A;Cybersecurity and privacy
PG;Pacific Conference on Computer Graphics and Applications;CORE2023;;Graphics, augmented reality and games
PIMRC;IEEE International Symposium on Personal and Indoor Mobile Radio Conference;CORE2023;B;Distributed computing and systems software
PKAW;Pacific Rim Knowledge Acquisition Workshop;CORE2023;C;Artificial intelligence
PKC;International Conference on Practice and Theory in Public Key Cryptography;CORE2023;B;Cybersecurity and privacy
PLDI;ACM-SIGPLAN Conference on Programming Language Design and Implementation;CORE2023;A*;Software engineering
PLOP;Pattern Languages of Programs;CORE2023;C;Software engineering
PLOS;Workshop on Programming Languages and Operating Systems;CORE2023;C;Distributed computing and systems software
PODC;ACM Symposium on Principles of Distributed Computing;CORE2023;A*;Distributed computing and systems software
PODS;ACM SIGMOD-SIGACT-SIGART Conference on Principles of Database Systems;CORE2023;A*;Data management and data science
POPL;ACM-SIGACT Symposium on Principles of Programming Languages;CORE2023;A*;Software engineering
PPAM;International Conference on Parallel Processing and Applied Mathematics;CORE2023;National: Poland;Distributed computing and systems software
PPDP;International Conference on Principles and Practice of Declarative Programming;CORE2023;C;Theory of computation
PPSN;Parallel Problem Solving from Nature;CORE2023;A;Machine learning
PPoPP;Principles and Practice of Parallel Programming;CORE2023;B;Distributed computing and systems software
PQCrypto;International Workshop on Post-Quantum Cryptography;CORE2023;C;Cybersecurity and privacy
PRDC;Pacific Rim International Symposium on Dependable Computing;CORE2023;C;Software engineering
PRICAI;Pacific Rim International Conference on Artificial Intelligence;CORE2023;B;Artificial intelligence
PRIMA;International Conference on Principles of Practice in Multi-Agent Systems;CORE2023;B;Artificial intelligence
PRO-VE;IFIP Working Conferences on Virtual Enterprises;CORE2023;C;Distributed computing and systems software
PROFES;Product Focused Software Process Improvement;CORE2023;B;Software engineering
PSB;Pacific Symposium on Biocomputing;CORE2023;National: USA;Applied computing
PSC;Prague Stringology Conference;CORE2023;National: Czech;Theory of computation
PSD;Privacy in Statistical Databases;CORE2023;C;Cybersecurity and privacy
PSIVT;Pacific-Rim Symposium on Image and Video Technology;CORE2023;C;Computer vision and multimedia computation
PST;Annual Conference on Privacy, Security and Trust;CORE2023;C;Cybersecurity and privacy
PacificVis;IEEE Pacific Visualization Symposium;CORE2023;B;Human-centred computing
Pairing;International Conference on Pairing-based Cryptography;CORE2023;C;Cybersecurity and privacy
Petri Nets;International Conference on the Application and Theory of Petri Nets and Concurrency;CORE2023;B;Distributed computing and systems software
PoEM;IFIP WG8.1 Working Conference on the Practice of Enterprise Modeling;CORE2023;;Information And Computing Sciences
ProvSec;International Conference on Provable Security;CORE2023;C;Cybersecurity and privacy
QCE;IEEE International Conference on Quantum Computing and Engineering;CORE2023;;(missing)
QRS;Software Quality, Reliability, and Security;CORE2023;C;Software engineering
QUATIC;International Conference on the Quality of Information and Communications Technology;CORE2023;C;Software engineering
QoMEX;International Conference on Quality of Multimedia Experience;CORE2023;B;Human-centred computing
Qshine;International Conference on Heterogeneous Networking for Quality, Reliability, Security and Robustness;CORE2023;C;Distributed computing and systems software
RAID;The International Symposium on Research in Attacks, Intrusions and Defenses;CORE2023;A;Cybersecurity and privacy
RAMiCS;International Conference on Relational and AlgebraicMethods in Computer Science;CORE2023;C;Theory of computation
RANDOM;International Workshop on Randomization and Computation;CORE2021;A;Theory of computation
RANLP;International Conference on Recent Advances in Natural Language Processing;CORE2023;National: Bulgaria;Artificial intelligence
RC;International Conference on Reversible Computation;CORE2023;C;Theory of computation
RCIS;International Conference on Research Challenges in Information Science;CORE2023;B;Information And Computing Sciences
RE;IEEE International Requirements Engineering Conference;CORE2023;A;Software engineering
RECOMB;International Conference on Computational Molecular Biology;CORE2023;B;Applied computing
REFSQ;International Workshop on Requirements Engineering: Foundation for Software Quality;CORE2023;B;Software engineering
RFID;IEEE International Conference on Radio Frequency Identification;CORE2018;B;Communications engineering
RSP;IEEE International Symposium on Rapid System Prototyping;CORE2023;C;Software engineering
RSS;Robotics: Science and Systems;CORE2018;A*;Machine learning
RSS;Robotics: Science and Systems;CORE2023;;(missing)
RTAS;IEEE Real-Time and Embedded Technology and Applications Symposium;CORE2023;A;Distributed computing and systems software
RTCSA;International Conference on Embedded and Real Time Computing Systems and Applications;CORE2023;B;Distributed computing and systems software
RTNS;International Conference on Real-Time and Network Systems;CORE2023;National: France;Distributed computing and systems software
RTSS;Real Time Systems Symposium;CORE2023;A*;Distributed computing and systems software
RV;International Conference on Runtime Verification;CORE2023;B;Software engineering
RecSys;ACM International Conference on Recommender Systems;CORE2023;A;Data management and data science
Redundancy;International Symposium 'Problems of Redundancy in Information and Control Systems';CORE2023;National: Russia;Cybersecurity and privacy
RoVISP;International Conference on Robotics, Vision, Signal Processing and Power Applications;CORE2023;National: Malaysia;Computer vision and multimedia computation
RoboCup;Robot Soccer World Cup;CORE2023;C;Artificial intelligence
RuleML+RR;International Joint Conference on Rules and Reasoning;CORE2023;B;Artificial intelligence
SAC;ACM Symposium on Applied Computing;CORE2023;;Applied computing
SAC;Selected Areas in Cryptography;CORE2023;B;Cybersecurity and privacy
SACI;International Symposium on Applied Computational Intelligence and Informatics;CORE2023;National: Romania;Artificial intelligence
SACMAT;ACM Symposium on Access Control Models and Technologies;CORE2023;C;Cybersecurity and privacy
SAFECOMP;International Conference on Computer Safety, Reliability and Security;CORE2023;B;Cybersecurity and privacy
SAFEProcess;IFAC Symposium on Fault Detection, Supervision and Safety of Technical Processes;CORE2023;C;Cybersecurity and privacy
SAGT;International Symposium on Algorithmic Game Theory;CORE2023;B;Theory of computation
SAMI;International Symposium on Applied Machine Intelligence and Informatics;CORE2023;National: Slovakia;Artificial intelligence
SANER;IEEE International Conference on Software Analysis, Evolution and Reengineering;CORE2023;A;Software engineering
SAS;Static Analysis Symposium;CORE2023;B;Software engineering
SASHIMI;Simulation and Synthesis in Medical Imaging;CORE2023;C;Artificial intelligence
SAT;International Conference on Theory and Applications of Satisfiability Testing;CORE2023;A;Artificial intelligence
SBAC-PAD;International Symposium on Computer Architecture and High Performance Computing;CORE2023;C;Distributed computing and systems software
SC;International Conference for High Performance Computing, Networking, Storage and Analysis;CORE2023;A;(missing)
SCA;ACM SIGGRAPH/Eurographics Symposium on Computer Animation;CORE2023;B;Graphics, augmented reality and games
SCAM;IEEE International Working Conference on Source Code Analysis and Manipulation;CORE2023;C;Software engineering
SCN;Conference on Security and Cryptography for Networks;CORE2023;National: Italy;Cybersecurity and privacy
SCOPES;International Workshop on Software and Compilers for Embedded Systems;CORE2023;C;Distributed computing and systems software
SDH;International Symposium on Spatial Data Handling;CORE2023;C;Applied computing
SDM;SIAM International Conference on Data Mining;CORE2023;A;Data management and data science
SEA;International Symposium on Experimental Algorithms;CORE2023;B;Theory of computation
SEAA;Euromicro Conference on Software Engineering and Advanced Applications;CORE2023;B;Software engineering
SEAMS;International Symposium on Software Engineering for Adaptive and Self-Managing Systems;CORE2023;A;Software engineering
SEC;ACM/IEEE Symposium on Edge Computing;CORE2023;;Distributed computing and systems software
SECON;IEEE International Conference on Sensing, Communication and Networking;CORE2023;B;Distributed computing and systems software
SECRYPT;International Conference on Information Security and Cryptography;CORE2023;C;Cybersecurity and privacy
SEFM;International Conference on Software Engineering and Formal Methods;CORE2023;B;Software engineering
SEIT;International Conference on Sustainable Energy Information Technology;CORE2023;;Applied computing
SEKE;International Conference on Software Engineering and Knowledge Engineering;CORE2023;C;Software engineering
SENSYS;ACM Conference on Embedded Networked Sensor Systems;CORE2023;A*;Distributed computing and systems software
SERA;ACIS Conference on Software Engineering Research, Management and Applications;CORE2023;C;Software engineering
SERVICES;IEEE Congress on Services;CORE2023;B;Distributed computing and systems software
SETA;International Conference on Sequences and their Applications;CORE2023;C;Cybersecurity and privacy
SETIT;International Conference: Sciences of Electronics, Technologies of information and Telecommunication;CORE2023;;Information And Computing Sciences
SETTA;International Symposium on Software Engineering: Theories, Tools, and Applications;CORE2023;National: China;Software engineering
SEW;IEEE Software Engineering Workshop;CORE2023;C;Software engineering
SGAI;SGAI International Conference on Artificial Intelligence;CORE2023;National: Uk;Artificial intelligence
SGP;Symposium on Geometry Processing;CORE2023;B;Graphics, augmented reality and games
SIGCOMM;ACM Conference on Applications, Technologies, Architectures, and Protocols for Computer Communication;CORE2023;A*;Distributed computing and systems software
SIGCSE;ACM Special Interest Group on Computer Science Education Conference;CORE2023;A;Human-centred computing
SIGGRAPH;ACM SIG International Conference on Computer Graphics and Interactive Techniques;CORE2023;A*;Graphics, augmented reality and games
SIGIR;ACM International Conference on Research and Development in Information Retrieval;CORE2023;A*;Data management and data science
SIGITE;ACM Information Technology Education;CORE2023;National: USA;Human-centred computing
SIGMETRICS;Measurement and Modeling of Computer Systems;CORE2023;A*;Software engineering
SIGMOD;ACM Special Interest Group on Management of Data Conference;CORE2023;A*;Data management and data science
SIGSPATIAL;ACM International Conference on Advances in Geographic Information Systems;CORE2023;A;Applied computing
SIGUCCS;ACM SIGUCCS Conference on User Services;CORE2023;National: USA;Applied computing
SIGdial;Annual Meeting of the Special Interest Group on Discourse and Dialog;CORE2023;B;Artificial intelligence
SIMULTECH;International Conference on Simulation and Modeling Methodologies, Technologies and Applications;CORE2021;C;Distributed computing and systems software
SIN;International Conference on Security of Information and Networks;CORE2023;C;Cybersecurity and privacy
SIROCCO;International Colloquium on Structural Information and Communication Complexity;CORE2023;B;Theory of computation
SIS;IEEE Swarm Intelligence Symposium;CORE2023;C;Artificial intelligence
SISAP;International Conference on Similarity Search and Applications;CORE2023;B;Data management and data science
SISY;International Symposium on Intelligent Systems and Informatics;CORE2023;National: Serbia;Artificial intelligence
SLE;International Conference on Software Language Engineering;CORE2023;B;Software engineering
SMC;IEEE Conference on Systems, Man and Cybernetics;CORE2023;B;Human-centred computing
SNPD;International Conference on Software Engineering, Artificial Intelligence, Networking and Parallel/Distributed Computing;CORE2023;C;Software engineering
SODA;ACM/SIAM Symposium on Discrete Algorithms;CORE2023;A*;Theory of computation
SOFA;International Workshop on Soft Computing Applications;CORE2023;National: Romania;Applied computing
SOFSEM;Current Trends in Theory and Practice of Computer Science;CORE2023;B;Information And Computing Sciences
SOFTCOM;Conference on Software in Telecommunications and Computer Networks;CORE2023;National: Croatia;Distributed computing and systems software
SOSP;ACM SIGOPS Symposium on Operating Systems Principles;CORE2023;A*;Distributed computing and systems software
SOUPS;Symposium On Usable Privacy and Security;CORE2023;B;Human-centred computing
SP;IEEE Symposium on Security and Privacy;CORE2023;A*;Cybersecurity and privacy
SPAA;Symposium on Parallelism in Algorithms and Architectures;CORE2023;B;Distributed computing and systems software
SPICE;Software Process Improvement and Capability Determination;CORE2023;C;Software engineering
SPIRE;International Symposium on String Processing and Information Retrieval;CORE2023;C;Data management and data science
SPLC;Software Product Lines Conference;CORE2023;B;Software engineering
SPM;ACM Symposium on Solid and Physical Modelling;CORE2023;C;Graphics, augmented reality and games
SQM;International Conference on Software Quality Management;CORE2023;C;Software engineering
SRDS;Symposium on Reliable Distributed Systems;CORE2023;B;Distributed computing and systems software
SSBSE;International Symposium on Search Based Software Engineering;CORE2023;B;Software engineering
SSDBM;International Conference on Scientific and Statistical Data Base Management;CORE2023;B;Data management and data science
SSE;IEEE International Conference on Software Services Engineering;CORE2023;B;Distributed computing and systems software
SSPR;Structural and Syntactical Pattern Recognition;CORE2023;B;Computer vision and multimedia computation
SSS;Symposium on Stabilization, Safety, and Security of Distributed Systems;CORE2023;C;Cybersecurity and privacy
SSSC;IFAC Conference on System Structure and Control;CORE2023;C;Software engineering
SST;Australasian Speech Science and Technology;CORE2023;Australasian C;Artificial intelligence
SSTD;International Symposium on Spatial and Temporal Databases;CORE2023;B;Applied computing
STACS;International Symposium on Theoretical Aspects of Computer Science;CORE2023;A;Theory of computation
STOC;ACM Symposium on Theory of Computing;CORE2023;A*;Theory of computation
SYNASC;International Symposium on Symbolic and Numeric Algorithms for Scientific Computing;CORE2023;National: Romania;Theory of computation
SYSTOR;The ACM International System and Storage Conference;CORE2023;National: Israel;Distributed computing and systems software
SecureComm;International Conference on Security and Privacy for Communication Networks;CORE2023;C;Cybersecurity and privacy
Semantics;Semantics - International Conference on Semantic Systems;CORE2023;National: Austria;Data management and data science
SiggraphA;SIGGRAPH Asia;CORE2023;;Graphics, augmented reality and games
SimTecT;Simulation Technology and Training Conference;CORE2023;Australasian C;Artificial intelligence
SoCG;International Symposium on Computational Geometry;CORE2023;A;Theory of computation
SoCS;The Symposium of Combinatorial Search;CORE2023;B;Artificial intelligence
SoMeT;International Conference on Intelligent Software Methodologies, Tools, and Techniques;CORE2023;C;Software engineering
TABLEAUX;International Conference on Theorem Proving with Analytic Tableaux and Related Methods;CORE2023;B;Theory of computation
TACAS;Tools and Algorithms for Construction and Analysis of Systems;CORE2023;A;Software engineering
TAMC;Conference on Theory and Applications of Models of Computation;CORE2023;C;Theory of computation
TAP;International Conference on Tests and Proofs;CORE2023;C;Software engineering
TARK;Theoretical Aspects of Rationality and Knowledge;CORE2023;A;Theory of computation
TASE;International Symposium on Theoretical Aspects of Software Engineering;CORE2023;National: China;Software engineering
TCC;Theory of Cryptography Conference;CORE2023;A;Cybersecurity and privacy
TEI;Tangible, Embedded, and Embodied Interaction;CORE2023;B;Human-centred computing
TIME;International Symposium on Temporal Representation and Reasoning;CORE2023;C;Artificial intelligence
TPDL;International Conference on Theory and Practice of Digital Libraries;CORE2023;B;Data management and data science
TRB;International Visualization in Transportation Symposium;CORE2023;National: USA;Human-centred computing
Tapia;Richard Tapia Celebration of Diversity in Computing Conference;CORE2023;National: USA;Information And Computing Sciences
TechDebt;International Conference on Technical Debt;CORE2023;B;Software engineering
Tencon;IEEE Region 10 Conference;CORE2023;C;Information And Computing Sciences
TridentCom;Testbeds and Research Infrastructures for the Development of Networks and Communities;CORE2023;National: China;Distributed computing and systems software
TrustBus;International Conference on Trust, Privacy and Security in Digital Business;CORE2023;B;Cybersecurity and privacy
TrustCom;International Conference on Trust, Security and Privacy in Computing and Communications;CORE2023;B;Cybersecurity and privacy
UAI;Conference in Uncertainty in Artificial Intelligence;CORE2023;A;Artificial intelligence
UBICOMM;International Conference on Mobile Ubiquitous Computing, Systems, Services and Technologies;CORE2023;C;Distributed computing and systems software
UC;International Conference on Unconventional Computation and Natural Computation;CORE2023;C;Theory of computation
UCC;Utility and Cloud Computing;CORE2023;;Distributed computing and systems software
UIC;International Conference on Ubiquitous Intelligence and Computing;CORE2023;C;Distributed computing and systems software
UIST;ACM Symposium on User Interface Software and Technology;CORE2023;A*;Human-centred computing
UMAP;International Conference on User Modelling, Adaptation, and Personalization;CORE2023;B;Human-centred computing
USEC;Usable Security and Privacy;CORE2023;National: USA;Cybersecurity and privacy
USENIX;Usenix Annual Technical Conference;CORE2023;A;Distributed computing and systems software
USENIX-Security;Usenix Security Symposium;CORE2023;A*;Cybersecurity and privacy
UbiComp;ACM International Joint Conference on Pervasive and Ubiquitous Computing;CORE2023;;Human-centred computing
VCIP;IEEE International Conference on Visual Communications and Image Processing;CORE2023;C;Computer vision and multimedia computation
VDA;Conference on Visualization and Data Analysis;CORE2023;National: USA;Human-centred computing
VECoS;The International Conference on Verification and Evaluation of Computer and Communication Systems;CORE2023;C;Distributed computing and systems software
VEE;International Conference on Virtual Execution Environments;CORE2023;B;Distributed computing and systems software
VEHITS;International Conference on Vehicle Technology and Intelligent Transport Systems;CORE2023;C;Distributed computing and systems software
VINCI;Visual Information Communication and Interaction;CORE2023;C;Human-centred computing
VIS;IEEE Visualization;CORE2023;A;Human-centred computing
VISIGRAPP;Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications;CORE2023;;Computer vision and multimedia computation
VISSOFT;IEEE International Working Conference on Software Visualisation;CORE2023;B;Human-centred computing
VL/HCC;IEEE Symposium on Visual Languages and Human-Centric Computing;CORE2023;B;Human-centred computing
VLDB;International Conference on Very Large Databases;CORE2023;A*;Data management and data science
VLSI;Symposia on VLSI Technology and Circuits;CORE2018;A;Electronics, sensors and digital hardware
VLSID;International Conference on VLSI Design;CORE2023;National: India;Distributed computing and systems software
VMCAI;Verification, Model Checking and Abstract Interpretation;CORE2023;B;Software engineering
VR;IEEE Conference on Virtual Reality and 3D User Interfaces;CORE2023;A*;Graphics, augmented reality and games
VRST;ACM Virtual Reality Software and Technology;CORE2023;A;Graphics, augmented reality and games
VTC;IEEE Vehicular Technology Conference;CORE2023;B;Distributed computing and systems software
VTS;IEEE VLSI Test Symposium;CORE2023;;(missing)
VizSec;International Workshop on Visualization for Cyber Security;CORE2023;C;Human-centred computing
W2GIS;International Workshop on Web and Wireless Geographical Information Systems;CORE2023;C;Applied computing
WABI;Workshop on Algorithms in Bioinformatics;CORE2023;C;Applied computing
WACV;IEEE Workshop on Applications of Computer Vision;CORE2023;A;Computer vision and multimedia computation
WADS;Algorithms and Data Structures Symposium;CORE2023;B;Theory of computation
WAFR;International Workshop on the Algorithmic Foundations of Robotics;CORE2023;C;Artificial intelligence
WAIFI;Workshop on the Arithmetic of Finite Fields;CORE2023;C;Theory of computation
WALCOM;International Conference and Workshops on Algorithms and Computation;CORE2023;B;Theory of computation
WAOA;Workshop on Approximation and Online Algorithms;CORE2023;B;Theory of computation
WAW;Workshop on Algorithms And Models For The Web Graph;CORE2023;C;Theory of computation
WCAE;Workshop on Computer Architecture Education;CORE2023;National: USA;Human-centred computing
WCNC;IEEE Wireless Communications and Networking Conference;CORE2023;B;Distributed computing and systems software
WCO;Workshop on Computational Optimization;CORE2023;C;Theory of computation
WEBIST;International Conference on Web Information Systems and Technologies;CORE2023;C;Information And Computing Sciences
WETICE;International Workshops on Enabling Technologies: Infrastructures for Collaborative Enterprises;CORE2023;C;Distributed computing and systems software
WG;International Workshop on Graph-Theoretic Concepts in Computer Science;CORE2023;B;Theory of computation
WI;IEEE/WIC/ACM International Conference on Web Intelligence;CORE2023;B;Artificial intelligence
WINCOM;International Conference on Wireless Networks and Mobile Communications;CORE2023;National: Morocco;Distributed computing and systems software
WISA;International Workshop on Information Security Applications;CORE2023;National: Korea;Cybersecurity and privacy
WISE;International Conference on Web Information Systems Engineering;CORE2023;B;Data management and data science
WISTP;Workshop in Information Security Theory and Practices;CORE2023;C;Cybersecurity and privacy
WMSCI;World Multi-Conference on Systemics, Cybernetics and Informatics;CORE2023;National: USA;Information And Computing Sciences
WORLDCOMP;World Congress in Computer Science, Computer Engineering, and Applied Computing;CORE2023;National: USA;Information And Computing Sciences
WSC;Winter Simulation Conference;CORE2023;C;Artificial intelligence
WSCG;International Conferences in Central Europe on Computer Graphics, Visualization and Computer Vision;CORE2023;National: Czecholslovakia;Graphics, augmented reality and games
WSDM;ACM International Conference on Web Search and Data Mining;CORE2023;A;Data management and data science
WWW;International World Wide Web Conference;CORE2023;A*;Distributed computing and systems software
WiMob;IEEE International Conference on Wireless and Mobile Computing, Networking and Communications;CORE2023;B;Distributed computing and systems software
WiOpt;International Symposium on Modelling and Optimization in Mobile, Ad Hoc, and Wireless Networks;CORE2023;B;Distributed computing and systems software
WiSec;ACM Conference on Security and Privacy in Wireless and Mobile Networks;CORE2023;B;Cybersecurity and privacy
WoLLIC;Workshop on Logic, Language, Information and Computation;CORE2023;C;Theory of computation
WoWMoM;IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks;CORE2023;B;Distributed computing and systems software
WorldCIST;World Conference on Information Systems and Technologies;CORE2023;C;Information And Computing Sciences
XP;Conference on Agile Software Development;CORE2023;B;Software engineering
e-Science;IEEE International Conference on e-Science and Grid Computing;CORE2023;B;Distributed computing and systems software
iEMSs;Intenational Environmental Modelling and Software Society;CORE2023;C;Applied computing
iLRN;International Conference of the Immersive Learning Research Network;CORE2023;C;Applied computing