-
Notifications
You must be signed in to change notification settings - Fork 227
/
libraries.json
6555 lines (6555 loc) · 170 KB
/
libraries.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "R Icons",
"description": "R and RStudio icons.",
"authors": [
{
"name": "Jumping Rivers",
"url": "https://www.jumpingrivers.com"
}
],
"source": "jumpingrivers/r.excalidrawlib",
"preview": "jumpingrivers/r.png",
"created": "2021-08-22",
"updated": "2021-08-22",
"version": 1,
"id": "6TGNPXCpuVy"
},
{
"name": "Snowflake datawarehousing Icons",
"description": "Collection of Snowflake datawarehouse icons.",
"authors": [
{
"name": "Thijs de Vries",
"url": "https://binx.io/blog/team/thijs-de-vries/"
}
],
"source": "thijsdev/snowflake.excalidrawlib",
"preview": "thijsdev/snowflake.png",
"created": "2021-06-10",
"updated": "2021-06-10",
"version": 1,
"id": "9Ui0oAbe0x3"
},
{
"name": "Robots",
"description": "Collection of robots in different moods.",
"authors": [
{
"name": "Kaligule",
"url": "https://schauderbasis.de"
}
],
"source": "kaligule/robots.excalidrawlib",
"preview": "kaligule/robots.png",
"created": "2021-03-23",
"updated": "2021-03-23",
"version": 1,
"id": "jXpa3f12fQ"
},
{
"name": "Polygons",
"description": "Collection of regular polygons: triangle, pentagon, hexagon, octagon, decagon & dodecagon.",
"authors": [
{
"name": "Lipis",
"url": "https://twitter.com/lipis"
}
],
"source": "lipis/polygons.excalidrawlib",
"preview": "lipis/polygons.png",
"created": "2020-12-02",
"updated": "2020-12-02",
"version": 1,
"id": "3MQwFMPiYkC"
},
{
"name": "Stars",
"description": "Collection of regular stars.",
"authors": [
{
"name": "Lipis",
"url": "https://twitter.com/lipis"
}
],
"source": "lipis/stars.excalidrawlib",
"preview": "lipis/stars.png",
"created": "2020-12-02",
"updated": "2020-12-02",
"version": 1,
"id": "A0qy8Favqlu"
},
{
"name": "Gadgets",
"description": "Collection of technical gadgets: Smartphone, MP3-Player, Smartwatch, Tablet, Laptop.",
"authors": [
{
"name": "MorgeMoensch",
"url": "https://morgemoensch.dev/"
}
],
"source": "morgemoensch/gadgets.excalidrawlib",
"preview": "morgemoensch/gadgets.png",
"created": "2020-12-15",
"updated": "2020-12-15",
"version": 1,
"id": "8mFhaPGiMd6"
},
{
"name": "Android",
"description": "Collection of Android components.",
"authors": [
{
"name": "[email protected]",
"url": "https://github.com/g-script"
}
],
"source": "g-script/android.excalidrawlib",
"preview": "g-script/android.png",
"created": "2020-12-16",
"updated": "2020-12-16",
"version": 1,
"id": "f8Sxc3iGNE"
},
{
"name": "Charts",
"description": "Collection of charts: bar, column, line, pie.",
"authors": [
{
"name": "[email protected]",
"url": "https://github.com/g-script"
}
],
"source": "g-script/charts.excalidrawlib",
"preview": "g-script/charts.png",
"created": "2020-12-17",
"updated": "2020-12-17",
"version": 1,
"id": "9GO7hOfboY4"
},
{
"name": "Forms",
"description": "Collection of form components.",
"authors": [
{
"name": "[email protected]",
"url": "https://github.com/g-script"
}
],
"source": "g-script/forms.excalidrawlib",
"preview": "g-script/forms.png",
"created": "2020-12-17",
"updated": "2020-12-17",
"version": 1,
"id": "4AutOE2P3k9"
},
{
"name": "Medias",
"description": "Collection of components related to media: coverflow, video player, playback controls, volume slider, street map, webcam.",
"authors": [
{
"name": "[email protected]",
"url": "https://github.com/g-script"
}
],
"source": "g-script/medias.excalidrawlib",
"preview": "g-script/medias.png",
"created": "2020-12-17",
"updated": "2020-12-17",
"version": 1,
"id": "2Jj1buS9o6a"
},
{
"name": "Raspberry Pi 3",
"description": "A Raspberry Pi 3 header component.",
"authors": [
{
"name": "revolunet",
"url": "https://github.com/revolunet"
}
],
"source": "revolunet/raspberrypi3.excalidrawlib",
"preview": "revolunet/raspberrypi3.png",
"created": "2020-12-18",
"updated": "2020-12-18",
"version": 1,
"id": "3OyE2rxaGlg"
},
{
"name": "Stick Figures",
"description": "Collection of stick figures.",
"authors": [
{
"name": "Youri Tjang",
"github": "https://github.com/youritjang",
"twitter": "https://twitter.com/YouriTjang",
"url": "https://github.com/youritjang"
}
],
"source": "youritjang/stick-figures.excalidrawlib",
"preview": "youritjang/stick-figures.jpg",
"created": "2020-12-18",
"updated": "2022-08-07",
"version": 2,
"itemNames": [
"Stick man",
"Moustache man",
"Girl",
"Guy",
"Grandma",
"Child",
"Shrug",
"Happy",
"Sad"
],
"id": "832Zp5zaukx"
},
{
"name": "Data Viz",
"description": "Collection of charts commonly used in data visualisations.",
"authors": [
{
"name": "dbs-sticky",
"url": "https://twitter.com/dbs_sticky"
}
],
"source": "dbssticky/data-viz.excalidrawlib",
"preview": "dbssticky/data-viz.png",
"created": "2020-12-19",
"updated": "2020-12-19",
"version": 1,
"id": "A3fEOoJwyZa"
},
{
"name": "Hearts",
"description": "Collection of hearts.",
"authors": [
{
"name": "dwelle",
"url": "https://twitter.com/dluzar"
}
],
"source": "dwelle/hearts.excalidrawlib",
"preview": "dwelle/hearts.png",
"created": "2020-12-22",
"updated": "2020-12-22",
"version": 1,
"id": "g4uL8GonQ2"
},
{
"name": "Apple Devices Frames",
"description": "Collection of size-accurate frames for Apple mobile devices (iPhone, iPad, Apple Watch).",
"authors": [
{
"name": "François Best",
"url": "https://francoisbest.com/posts/2020/mobile-device-frames-for-excalidraw"
}
],
"source": "franky47/apple-devices-frames.excalidrawlib",
"preview": "franky47/apple-devices-frames.png",
"created": "2020-12-29",
"updated": "2020-12-29",
"version": 1,
"id": "9XVMoHrsPqn"
},
{
"name": "Software Architecture",
"description": "Collection of software architecture components: microservice, database, cache, event bus or pipeline, documents or code, browser, and mobile device",
"authors": [
{
"name": "Youri Tjang",
"url": "https://github.com/youritjang"
}
],
"source": "youritjang/software-architecture.excalidrawlib",
"preview": "youritjang/software-architecture.png",
"created": "2020-12-30",
"updated": "2020-12-30",
"version": 1,
"id": "mzQjGLHnDi"
},
{
"name": "Dropdowns",
"description": "Collection of dropdowns.",
"authors": [
{
"name": "Arun",
"url": "https://arun.app"
}
],
"source": "h7y/dropdowns.excalidrawlib",
"preview": "h7y/dropdowns.png",
"created": "2021-01-04",
"updated": "2021-01-04",
"version": 1,
"id": "KM3naTKRqB"
},
{
"name": "Information Architecture",
"description": "A visual vocabulary for describing information architecture and interaction design, by Jesse James Garrett.",
"authors": [
{
"name": "inwardmovement",
"github": "https://github.com/inwardmovement",
"twitter": "",
"url": "https://inwardmovement.github.io"
}
],
"source": "inwardmovement/information-architecture.excalidrawlib",
"preview": "inwardmovement/information-architecture.jpg",
"created": "2021-01-11",
"updated": "2022-01-10",
"version": 2,
"itemNames": [
"page",
"file",
"flow reference",
"page stack",
"file stack",
"cluster",
"decision point",
"conditional branch",
"conditonal selector",
"concurrent set",
"continuation x",
"continuation y",
"area",
"iterative area",
"conditional area",
"flow area x",
"flow area y"
],
"id": "6llg42UDA6i"
},
{
"name": "IT Logos",
"description": "A collection of IT logos, including languages, frameworks and tools for building web applications.",
"authors": [
{
"name": "Pierre Clainchard",
"github": "https://github.com/pclainchard",
"twitter": "https://twitter.com/clainchoupi",
"url": "https://github.com/pclainchard"
}
],
"source": "pclainchard/it-logos.excalidrawlib",
"preview": "pclainchard/it-logos.jpg",
"created": "2021-01-12",
"updated": "2023-11-07",
"version": 2,
"id": "9WHt2cojRbW",
"itemNames": [
"Angular v2",
"Angular v1",
"Argo CD",
"BonitaSoft",
"Docker",
"Excalidraw v1",
"Excalidraw v2",
"Firebase",
"Flux CD",
"GitLab",
"Kafka",
"Kanoma",
"Kubernetes",
"LinkedIn",
"Lobe AI",
"Micronaut",
"Next",
"Nx",
"Python",
"React",
"Slack",
"SmartBear",
"SoapUI",
"Strava",
"Svelte",
"TensorFlow",
"Twitter",
"VSCode",
"Vercel",
"Vue",
"X Twitter"
]
},
{
"name": "Mobile Kit",
"description": "A collection of commonly used mobile screens.",
"authors": [
{
"name": "Sunit Shirke",
"url": "https://github.com/Maddoxx88"
}
],
"source": "excacomp/mobile-kit.excalidrawlib",
"preview": "excacomp/mobile-kit.png",
"created": "2021-01-20",
"updated": "2021-01-20",
"version": 1,
"id": "7PMqpVob6wL"
},
{
"name": "Web Kit",
"description": "A collection of commonly used web components.",
"authors": [
{
"name": "Sunit Shirke",
"url": "https://github.com/Maddoxx88"
}
],
"source": "excacomp/web-kit.excalidrawlib",
"preview": "excacomp/web-kit.png",
"created": "2021-01-20",
"updated": "2021-01-20",
"version": 1,
"id": "2BgGthBRWwg"
},
{
"name": "Software Logos",
"description": "Software architecture logos: archive, database, docker, JSON, Kubernetes, load balancer, Postgres, Redis, Nginx, RabbitMQ, server, chip, reverse proxy, and more.",
"authors": [
{
"name": "drwn.io",
"url": "https://drwn.io/"
}
],
"source": "drwnio/drwnio.excalidrawlib",
"preview": "drwnio/drwnio.png",
"created": "2021-01-25",
"updated": "2021-01-25",
"version": 1,
"id": "55rgwmkZSXc"
},
{
"name": "Technology Logos",
"description": "Collection of technology logos mostly from the cloud-native space. Featuring: Kubernetes, Docker, git, Cloud Foundry, Terraform, Spring, Quarkus, Micronaut, Knative, Camunda, Azure, Kafka, Kotlin, OpenStack, paketo.io, Neo4J, Redis",
"authors": [
{
"name": "Matthias Haeussler",
"url": "https://twitter.com/maeddes"
}
],
"source": "maeddes/technology-logos.excalidrawlib",
"preview": "maeddes/technology-logos.png",
"created": "2021-01-27",
"updated": "2021-01-27",
"version": 1,
"id": "Aqkp5tXQHd6"
},
{
"name": "Storytelling",
"description": "Drawings representing emotions or whatever you want. Perfect to add some fun or stories to your diagrams.",
"authors": [
{
"name": "drwn.io",
"url": "https://drwn.io/"
}
],
"source": "drwnio/storytelling.excalidrawlib",
"preview": "drwnio/storytelling.png",
"created": "2021-01-28",
"updated": "2021-01-28",
"version": 1,
"id": "7JW0nUyIW2R"
},
{
"name": "Cryptocurrencies",
"description": "Top cryptocurrencies: Bitcoin, Ethereum, Tether, Polkadot, XRP, Cardano, Chainlink, Litecoin, Bitcoin Cash, Binance Coin, IOTA",
"authors": [
{
"name": "newbyca",
"url": "https://newbyca.com"
}
],
"source": "newbyca/cryptocurrencies.excalidrawlib",
"preview": "newbyca/cryptocurrencies.png",
"created": "2021-03-25",
"updated": "2021-03-25",
"version": 1,
"id": "8yxJ2l3iRSr"
},
{
"name": "Raspberry Pi Zero",
"description": "A Raspberry Pi Zero header component.",
"authors": [
{
"name": "marcottebear",
"url": "https://github.com/marcottebear"
}
],
"source": "marcottebear/raspberrypi-zero.excalidrawlib",
"preview": "marcottebear/raspberrypi-zero.png",
"created": "2021-02-01",
"updated": "2021-02-01",
"version": 1,
"id": "9LBKnheLwQN"
},
{
"name": "Presentation Templates",
"description": "Blank Powerpoint Presentation templates of standard dimensions. Use to create presentation outlines.",
"authors": [
{
"name": "Shin Kim",
"url": "https://twitter.com/_shinkim"
}
],
"source": "shinkim/presentation-templates.excalidrawlib",
"preview": "shinkim/presentation-templates.png",
"created": "2021-02-02",
"updated": "2021-02-02",
"version": 1,
"id": "5Ff6zN0DWnU"
},
{
"name": "Graphs",
"description": "A collection of visualisations of popular graphs.",
"authors": [
{
"name": "Jakub Pawlina",
"url": "https://jakubpawlina.me"
}
],
"source": "jakubpawlina/graphs.excalidrawlib",
"preview": "jakubpawlina/graphs.png",
"created": "2021-02-02",
"updated": "2021-02-02",
"version": 1,
"id": "4lxTil7j6Pz"
},
{
"name": "Desktop Resolutions",
"description": "Blank desktop frames of common resolutions. Use to wireframe desktop apps.",
"authors": [
{
"name": "Shin Kim",
"url": "https://twitter.com/_shinkim"
}
],
"source": "shinkim/desktop-resolutions.excalidrawlib",
"preview": "shinkim/desktop-resolutions.png",
"created": "2021-06-10",
"updated": "2021-06-10",
"version": 1,
"id": "5LlCXjerd5j"
},
{
"name": "Lo-Fi Wireframing Kit",
"description": "A collection of Lo-Fi wireframing components.",
"authors": [
{
"name": "Aleksandra Lazovic",
"url": "https://spfr.co"
}
],
"source": "spfr/lo-fi-wireframing-kit.excalidrawlib",
"preview": "spfr/lo-fi-wireframing-kit.png",
"created": "2021-02-10",
"updated": "2021-02-10",
"version": 1,
"id": "2TfM7VW6nq0"
},
{
"name": "Cloud Design Patterns",
"description": "A collection of cloud design patterns components (as defined in https://docs.microsoft.com/en-us/azure/architecture/patterns/). Use to describe cloud applications concepts.",
"authors": [
{
"name": "Michel Caradec",
"url": "https://github.com/michelcaradec"
}
],
"source": "michelcaradec/cloud-design-patterns.excalidrawlib",
"preview": "michelcaradec/cloud-design-patterns.png",
"created": "2021-05-08",
"updated": "2021-05-08",
"version": 1,
"id": "JtMDpqcYZa"
},
{
"name": "AWS Serverless Icons",
"description": "A collection of icons of AWS serverless services. This collection contains the icons of the following services: Lambda, API Gateway, AppSync, DynamoDB, EventBridge, Cognito, S3, Kinesis, SNS, SQS, SES, CloudFront, CloudWatch, Step Functions and Amplify.",
"authors": [
{
"name": "Slobodan Stojanović",
"url": "https://slobodan.me"
}
],
"source": "slobodan/aws-serverless.excalidrawlib",
"preview": "slobodan/aws-serverless.png",
"created": "2021-02-22",
"updated": "2021-02-22",
"version": 1,
"id": "1pcNHEgp9Dy"
},
{
"name": "Wardley Maps Symbols",
"description": "A collection of Wardley Maps components and symbols. It contains symbols for: the Component Evolution Outline, Component, Customer, Accelerator, Component Pipeline, Build in-house, Off the Shelf, Outsource component types, Ecosystem ILC and Areas of Interest.",
"authors": [
{
"name": "Aleksandar Simović",
"url": "https://battlecamp.io"
}
],
"source": "simalexan/wardley-maps-symbols.excalidrawlib",
"preview": "simalexan/wardley-maps-symbols.png",
"created": "2021-03-01",
"updated": "2021-03-01",
"version": 1,
"id": "7k498vZDi4E"
},
{
"name": "Bubbles",
"description": "A collection of simple speech and thought bubbles.",
"authors": [
{
"name": "Oscar Capraro",
"url": "https://www.codegrepper.com/app/profile.php?id=44392"
}
],
"source": "ocapraro/bubbles.excalidrawlib",
"preview": "ocapraro/bubbles.png",
"created": "2021-03-04",
"updated": "2021-03-04",
"version": 1,
"id": "2S7dChJEzpC"
},
{
"name": "Business Model Templates",
"description": "A collection of templates for canvases that can be used to model various business aspects. The following canvases are in this collection: Business Model Canvas, Value Proposition Canvas.",
"authors": [
{
"name": "Stephan Hellerbrand",
"url": "https://www.hellerbit.com"
}
],
"source": "shellerbrand/canvases.excalidrawlib",
"preview": "shellerbrand/canvases.png",
"created": "2021-06-05",
"updated": "2021-06-05",
"version": 1,
"id": "14uBqv2CVSN"
},
{
"name": "Veeam",
"description": "A collection of icons used for IT architecture design documents including Veeam backup components.",
"authors": [
{
"name": "Joe Houghes",
"url": "https://fullstackgeek.net"
}
],
"source": "jhoughes/veeam.excalidrawlib",
"preview": "jhoughes/veeam.png",
"created": "2021-03-23",
"updated": "2021-03-23",
"version": 1,
"id": "9iTYK5SYwJU"
},
{
"name": "Data Science logos",
"description": "A collection of data science tool icons. Inlcuding: Airflow, Jupyter, Pandas, Numpy, Tensorflow, Scikit-learn, Keras.",
"authors": [
{
"name": "Fares Hasan",
"url": "https://github.com/farisology"
},
{
"name": "Sarhan Samat",
"url": "https://github.com/SarhanAS"
}
],
"source": "farisology/data-science.excalidrawlib",
"preview": "farisology/data-science.png",
"created": "2021-06-05",
"updated": "2021-06-05",
"version": 1,
"id": "6HQVyIAmGxg"
},
{
"name": "Arduino Boards",
"description": "A collection of five Arduino boards: Uno, Uno-clone, Nano, Leonardo, and Mega. The drawings are sized so that when snapped to the grid, lines and arrows will snap to the connections.",
"authors": [
{
"name": "rkjc",
"url": "https://github.com/rkjc"
}
],
"source": "rkjc/arduino-boards.excalidrawlib",
"preview": "rkjc/arduino-boards.png",
"created": "2021-03-28",
"updated": "2021-03-28",
"version": 1,
"id": "48KxhBpVriF"
},
{
"name": "Schematic Symbols",
"description": "A collection of common electrical schematic wiring diagram symbols. The drawings are sized so that when snapped to the grid, lines and arrows will snap to the connections. (hint: hold shift while rotating)",
"authors": [
{
"name": "rkjc",
"url": "https://github.com/rkjc"
}
],
"source": "rkjc/schematic-symbols.excalidrawlib",
"preview": "rkjc/schematic-symbols.png",
"created": "2021-04-04",
"updated": "2021-04-04",
"version": 1,
"id": "215IIILYp2u"
},
{
"name": "Cloud",
"description": "Collection of symbols related to cloud artefacts (logos of Kubernetes, Gardener, AWS, Azure, GCP and icons for illustrating architectures).",
"authors": [
{
"name": "rfranzke",
"url": "https://twitter.com/rafaelfranzke"
}
],
"source": "cloud/cloud.excalidrawlib",
"preview": "cloud/cloud.png",
"created": "2021-06-07",
"updated": "2021-06-07",
"version": 1,
"id": "5OOWz0N1Bx6"
},
{
"name": "HTML, CSS and JS logos",
"description": "A collection of core web development technology logos",
"authors": [
{
"name": "Madhusuthanan-B",
"url": "https://github.com/Madhusuthanan-B"
}
],
"source": "madhusuthanan-b/html-css-js-icons.excalidrawlib",
"preview": "madhusuthanan-b/preview-html-css-js-logo.PNG",
"created": "2021-05-01",
"updated": "2021-05-01",
"version": 1,
"id": "AspEUoKGASJ"
},
{
"name": "Emojis",
"description": "A collection of emojis.",
"authors": [
{
"name": "Anumitha Apollo",
"url": "https://anumitha.com"
}
],
"source": "anumithaapollo12/emojis.excalidrawlib",
"preview": "anumithaapollo12/emojis.png",
"created": "2021-05-08",
"updated": "2021-05-08",
"version": 1,
"id": "73VWdHcGaI2"
},
{
"name": "Redis Grafana",
"description": "A collection of Redis and Grafana related icons: Redis, Redis Enterprise, Grafana, Prometheus, RedisGraph, RedisGears, RedisTimeSeries, etc.",
"authors": [
{
"name": "mikhailredis",
"url": "https://github.com/mikhailredis"
}
],
"source": "mikhailredis/redis-grafana.excalidrawlib",
"preview": "mikhailredis/redis-grafana.png",
"created": "2021-05-08",
"updated": "2021-05-08",
"version": 1,
"id": "5SncTBdiigf"
},
{
"name": "AWS Simple Icons",
"description": "A collection of AWS Simple Icons with 3 different flavours (Monochrome, Colour and Colour with description): EC2, RDS, S3, SQS and Lambda. More coming soon...",
"authors": [
{
"name": "husainkhambaty",
"url": "https://github.com/husainkhambaty"
}
],
"source": "husainkhambaty/aws-simple-icons.excalidrawlib",
"preview": "husainkhambaty/aws-simple-icons.png",
"created": "2021-05-08",
"updated": "2021-05-08",
"version": 1,
"id": "3jc3webabBq"
},
{
"name": "Computers",
"description": "A few schematic representations of computers",
"authors": [
{
"name": "EI d'AU",
"url": "https://github.com/ei-au"
}
],
"source": "ei-au/computers.excalidrawlib",
"preview": "ei-au/computers.png",
"created": "2021-05-08",
"updated": "2021-05-08",
"version": 1,
"id": "1Pne2psNPnQ"
},
{
"name": "Front End Tools & Technologies",
"description": "A collection of logos related to front end technologies, tools and sites.",
"authors": [
{
"name": "Madhusuthanan-B",
"url": "https://github.com/Madhusuthanan-B"
}
],
"source": "madhusuthanan-b/front-end-tech-and-tools.excalidrawlib",
"preview": "madhusuthanan-b/preview-front-end-tech-and-tools.PNG",
"created": "2021-05-12",
"updated": "2021-05-12",
"version": 1,
"id": "7qAVkxNcrst"
},
{
"name": "Architecture floor plan symbols",
"description": "Some furnitures an others symbols to help in architecture planning",
"authors": [
{
"name": "Arqtangeles",
"url": "https://github.com/Arqtangeles"
}
],
"source": "Arqtangeles/architecture.excalidrawlib",
"preview": "Arqtangeles/architecture-floorplan-symbolsV2.png",
"created": "2021-05-14",
"updated": "2021-05-14",
"version": 1,
"id": "3meNH105BDX"
},
{
"name": "Team Topologies",
"description": "Collection of shapes to describe your organization's Team Topology (as defined by https://teamtopologies.com)",
"authors": [
{
"name": "Nikordaris",
"url": "https://github.com/nikordaris"
}
],
"source": "nikordaris/team-topologies.excalidrawlib",
"preview": "nikordaris/Team-Topologies.png",
"created": "2021-07-27",
"updated": "2021-07-27",
"version": 1,
"id": "7jxgGkKZiHN"
},
{
"name": "Azure cloud services icons",
"description": "Collection of icons from different Azure cloud services.",
"authors": [
{
"name": "Youri Tjang",
"github": "https://github.com/YouriTjang",
"twitter": "https://twitter.com/YouriTjang",
"url": "https://github.com/youritjang"
},
{
"name": "bothzoli",
"github": "https://github.com/bothzoli",
"twitter": "https://twitter.com/bothzoli",
"url": "https://github.com/bothzoli"
}
],
"source": "youritjang/azure-cloud-services.excalidrawlib",
"preview": "youritjang/azure-cloud-services.jpg",
"created": "2021-06-03",
"updated": "2022-03-30",
"version": 2,
"itemNames": [
"Key Vault",
"Application Insights",
"Azure DevOps",
"Network Interface",
"Public IP Address",
"Disk",
"Azure logo",
"Subscription",
"Resource Group",
"Blob Storage",
"Network Security Group",
"Virtual Network",
"Active Directory",
"PS Runbook",
"App Service",
"Service Bus Namespace",
"Virtual Machine",
"SQL Database",
"Data Lake"
],
"id": "5YhgvRl6h7f"
},
{
"name": "Music Instruments",
"description": "collection of instruments like keyboard, drums, flute, clapbox, Musical notes, Radio and Specker.",
"authors": [
{
"name": "Aravindhan Ravi",
"url": "https://github.com/L8Y"
}
],
"source": "l8y/music-instruments.excalidrawlib",
"preview": "l8y/music-instruments.png",
"created": "2021-10-27",
"updated": "2021-10-27",
"version": 1,
"id": "3cgHNji9Ez1"
},
{
"name": "Customer Journey Map",
"description": "For creating your own Customer Journey Map, it has small and big templates.",
"authors": [
{
"name": "Wiktoria Mielcarek / Braweria",
"url": "https://github.com/braweria"
}
],
"source": "braweria/customer-journey-map.excalidrawlib",
"preview": "braweria/customer-journey-map.png",
"created": "2021-06-10",
"updated": "2021-06-10",
"version": 1,
"id": "vVlRNbdCA7"
},
{
"name": "Sticky Notes",
"description": "Post its in every color for your design thinking sessions.",
"authors": [
{
"name": "ferminrp",
"url": "https://github.com/ferminrp"
}
],
"source": "ferminrp/post-it.excalidrawlib",
"preview": "ferminrp/post-it.png",
"created": "2021-06-20",
"updated": "2021-06-20",
"version": 1,
"id": "1GackrBWvTI"
},
{
"name": "Gantt Diagram",
"description": "A Gantt diagram template you can use to plan your projects.",
"authors": [
{
"name": "ferminrp",
"url": "https://github.com/ferminrp"
}
],
"source": "ferminrp/gantt.excalidrawlib",
"preview": "ferminrp/gantt.png",
"created": "2021-06-22",
"updated": "2021-06-22",
"version": 1,
"id": "huBRwwYEBo"
},
{
"name": "NSX-T VMware",
"description": "A collection of icons used for design documents including NSX-T VMware components. RunNSX",
"authors": [
{
"name": "Karel Novak",
"url": "https://github.com/novakkkarel"
}
],
"source": "novakkkarel/nsx-t-vmware.excalidrawlib",
"preview": "novakkkarel/nsx-t-vmware.png",
"created": "2021-06-21",
"updated": "2021-06-21",
"version": 1,
"id": "7gYPFqGFqoG"
},
{
"name": "Basic shapes",
"description": "Basic shapes for simple drawings.",
"authors": [
{
"name": "Pablo Gil Fernández",
"url": "https://github.com/pgilfernandez"
}
],
"source": "pgilfernandez/basic-shapes.excalidrawlib",
"preview": "pgilfernandez/basic-shapes.png",
"created": "2021-06-22",
"updated": "2021-06-22",
"version": 1,
"id": "4vcqDwlkYkX"
},
{
"name": "Chess set",
"description": "Chess board and pieces",
"authors": [
{
"name": "Pret Bram",
"url": "https://www.pretbram.com"
}
],
"source": "pret/chess-set.excalidrawlib",
"preview": "pret/chess-set.png",
"created": "2021-06-26",
"updated": "2021-06-26",
"version": 1,
"id": "6sMvNZh38Z8"
},
{