forked from beam-community/elixir-companies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelixir-companies.toml
1645 lines (1407 loc) · 70.3 KB
/
elixir-companies.toml
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
industries = [
"Apprenticeships",
"Autonomous Vehicles",
"Business Intelligence",
"Cannabis",
"Child Care",
"Collaboration",
"Communication",
"Consulting",
"Creative Software",
"Customer Service",
"Dating",
"Developers",
"E-Commerce",
"Education",
"Energy",
"Enterprise",
"Expert Networks",
"Family",
"Field Services",
"Fintech",
"Food",
"Gaming",
"Government",
"Healthcare",
"Home Services",
"Hotel Aggregator",
"Human Resources",
"Identity",
"Insurance",
"Internet Infrastructure",
"Internet of Things",
"Legal services",
"Market Research",
"Marketplaces",
"Media",
"Navigation",
"Non-profit Organization",
"Online Marketing",
"Payment",
"Performance Management",
"Publishing",
"Radio",
"Real Estate",
"Research",
"Sales",
"Security",
"Sensors",
"Social Good",
"Social Network",
"Sports",
"Sustainability",
"Transportation",
"Traveling",
"Video",
]
# Template
#
# [[company]]
# name = "" # Company name
# industry = "" # Company industry, one of:
# url = "" # Company site
# github = "" # GitHub link
# location = "" # Company location
# description = "" # Company description and how Elixir is used
[[company]]
name = "22cans"
industry = "Gaming"
url = "http://www.22cans.com/"
github = "https://github.com/22cans"
description = "22cans is an independent game studio founded by the industry legend and creator of God Game genre, Peter Molyneux. Creators of Curiosity and Godus."
[[company]]
name = "361° DIGITAL"
industry = "Consulting"
location = "Stuttgart, Germany"
url = "https://361.de"
description = "We are a digital agency based in Stuttgart, Germany. We create web and mobile apps using Elixir, Phoenix, React and React Native."
[[company]]
name = "Adjust"
industry = "Business Intelligence"
location = "Berlin, Germany"
url = "https://www.adjust.com/"
github = "https://github.com/adjust"
description = "Mobile user attribution and advanced app analytics, combined with store stats. How elixir being used [Click here](http://big-elephants.com/)."
[[company]]
name = "Adobe"
industry = "Creative Software"
url = "https://www.adobe.com/"
location = "San Jose, CA, USA"
github = "https://github.com/adobe"
description = "Adobe provides digital media and digital marketing solutions. Adobe is using Elixir to build a combined client/cloud application for collaborative photography workflow."
[[company]]
name = "Agilion"
industry = "Consulting"
url = "https://www.agilion.com"
github = "https://github.com/agilionapps"
description = "Software development and consulting."
[[company]]
name = "Aircloak"
industry = "Business Intelligence"
url = "https://aircloak.com/"
github = "https://github.com/Aircloak"
description = "Aircloak’s first-in-class real-time database anonymization solution provides instant privacy compliance and enables high-quality analytics for any data set and any use case. Aircloak's from Berlin. [Saša Jurić](https://github.com/sasa1977), the author of [Elixir in Action](https://www.manning.com/books/elixir-in-action) is software engineer at Aircloak."
[[company]]
name = "Albert"
industry = "Education"
url = "https://www.albert.io/"
location = "Chicago, IL, USA"
github = "https://github.com/albert-io"
description = "Learn anything through interactive practice: College math and science, Advanced Placement®, SAT®, ACT®, GRE®, GMAT®, literature, social science, history, and more. Our API services are built with Elixir, Phoenix, and PostgreSQL."
[[company]]
name = "Alembic"
industry = "Consulting"
url = "http://alembic.com.au"
github = "https://github.com/team-alembic"
description = "Australian based Elixir, Phoenix and GraphQL development and consulting. Organisers of [Elixir Sydney Meetup](http://elixir.sydney) and supporters of [Elixir Girls](http://elixirgirls.com)."
[[company]]
name = "AlphaSights"
industry = "Expert Networks"
url = "https://engineering.alphasights.com"
github = "https://github.com/alphasights"
description = "Global knowledge broker with regional hubs in Europe, the Americas, Asia and the Middle East."
[[company]]
name = "AmberBit"
industry = "Consulting"
url = "https://www.amberbit.com"
github = "https://github.com/amberbit"
description = "We are polyglot developers (but mostly Ruby, JavaScript, Elixir, Elm)."
[[company]]
name = "AppUnite"
industry = "Consulting"
url = "https://appunite.com"
github = "https://github.com/appunite"
description = "We are efficient, goal-oriented software development team of professionals specialized in mobile and web."
[[company]]
name = "Appcues"
industry = "Online Marketing"
url = "http://www.appcues.com/"
github = "https://github.com/appcues"
location = "Boston, MA, USA"
description = "Appcues helps people publish messages into their products instantly ⚡️💻 Follow us here for a curation of the best content for growth people."
[[company]]
name = "AuthorityLabs"
industry = "Online Marketing"
url = "https://authoritylabs.com/"
location = "Phoenix, AZ, USA"
github = "https://github.com/authoritylabs"
description = "Accurate and reliable search engine ranking data and keyword insights."
[[company]]
name = "Aviabird"
industry = "Consulting"
url = "https://aviabird.com"
github = "https://github.com/aviabird"
description = "We at Aviabird helps companies design, engineer, and iterate on their most important digital products. We work alongside teams building beautiful, functional web applications with an eye towards the future. Pune, Maharashtra, India."
[[company]]
name = "Aviasales"
industry = "Traveling"
url = "http://aviasales.ru"
github = "https://github.com/KosyanMedia"
description = "– Flights Meta Search Engine for Russian market with the main office on Phuket, Thailand. We use Elixir for our static content generator, messengers bots and couple of microservices."
[[company]]
name = "Avvo"
industry = "Legal services"
url = "https://www.avvo.com"
github = "https://github.com/avvo"
location = " Seattle, WA, USA."
description = "We believe that more information helps you make better decisions. At Avvo, we provide you with detailed information on lawyers and legal issues so that you can make the choices that are right for you."
[[company]]
name = "Badger"
industry = "Communication"
url = "http://badger-app.com"
description = "Remind your friends with a delayed text/push."
[[company]]
name = "Big Nerd Ranch"
industry = "Consulting"
url = "http://www.bignerdranch.com"
github = "https://github.com/bignerdranch"
description = "We design and build innovative applications. We teach developers to do the same through our books and immersive training."
[[company]]
name = "Bitgamma"
industry = "Consulting"
url = "http://bitgamma.com"
github = "https://github.com/bitgamma"
description = "We develop web, desktop and embedded applications. We code Elixir, C, Java/Javacard, Ruby, JS. We love working on embedded and custom boards."
[[company]]
name = "Blake eLearning"
industry = "Education"
url = "http://readingeggs.com"
description = "Blake eLearning is dedicated to making learning fun, motivational and effective for young children, teaching the essential skills needed for success at school."
[[company]]
name = "Bleacher Report"
industry = "Sports"
url = "http://bleacherreport.com/"
github = "https://github.com/br"
description = "Sports media site that is revolutionizing journalism."
[[company]]
name = "Bleachr"
industry = "Sports"
url = "http://www.bleachr.co"
description = "Mobile platform aimed at helping professional sports teams engage fans at their events. They are using Elixir on the backend. Minneapolis, MN, USA."
[[company]]
name = "Bold Poker"
industry = "Gaming"
url = "https://boldpoker.net"
description = "([GitHub](https://github.com/boldpoker)) - Bold Poker transforms mobile devices into an efficient and professional poker dealer. Elixir is used for the backend communication service the clients connect to as well as for the website."
[[company]]
name = "Bowery Farming"
industry = "Food"
url = "http://boweryfarming.com"
github = "https://github.com/BoweryFarming"
description = "Bowery Farming uses high-tech approaches such as robotics, LED lightning and data analytics to grow leafy greens indoors. The software stack at Bowery consists of a few, focused Elixir services running in AWS, Phoenix + Vue.js on the front-end, and Elixir (Nerves) running on thousands of in-house built devices on-premise in our farms. New York, NY, USA."
[[company]]
name = "Brightcove"
industry = "Video"
url = "http://brightcove.com"
github = "https://github.com/brightcove"
description = "A leading global provider of powerful cloud solutions for delivering and monetizing video across connected devices."
[[company]]
name = "Brighterlink"
industry = "Energy"
url = "https://www.brighterlink.io"
github = "https://github.com/Brightergy"
description = "All-in-one energy platform for analytics, utilities and procurement. We use Elixir for backend API (powered by phoenix) and also for thousands of worker processes to fetch, parse and write data from embedded devices to our time-series database."
[[company]]
name = "Briisk"
industry = "Consulting"
url = "https://briisk.co"
github = "https://github.com/briisk"
description = "Software agency devoted to defining, designing and developing applications, both for web and mobile. We build custom B2B and B2C products with Ruby, Elixir, Angular, Ionic and React Native. Based in Poznan, Poland."
[[company]]
name = "Brutalist"
industry = "Media"
url = "https://brutalist.press"
description = "The news agency specialized on traditional views."
[[company]]
name = "CKDU 88.1FM"
industry = "Radio"
url = "http://www.ckdu.ca"
location = "Halifax, Nova Scotia, Canada"
description = "Community radio station in Halifax, Nova Scotia, Canada "
[[company]]
name = "CONTRAKTOR"
industry = "Legal services"
url = "https://www.contraktor.com.br"
description = "Legal contracts toolbox for Small and Medium companies! Contract creation, auto review, workflow, e-signature and contract management. Save time and avoid mistakes. Welcome to the 4th Industrial Revolution. Lawyers are ready to be disrupted? Come with us first in Brazil."
[[company]]
name = "Cabify"
industry = "Transportation"
url = "https://www.cabify.com/"
github = "https://github.com/cabify"
description = "Cabify - A safer, ethical and innovative taxi app alternative. Elixir in production since 2016. Real-time applications and microservices with large amounts of data. Madrid/Barcelona."
[[company]]
name = "Canvas"
industry = "Collaboration"
github = "https://github.com/usecanvas"
description = "Notes for team of nerds."
[[company]]
name = "Carbon Five"
industry = "Consulting"
url = "http://carbonfive.com"
description = "([blog](http://blog.carbonfive.com)) - Agile Web and Mobile Product Development in San Francisco, NYC, Los Angeles, and Chattanooga. Proud to have Elixir/Phoenix in our toolbox and to support [Wallaby](https://github.com/keathley/wallaby)."
[[company]]
name = "CargoSense"
industry = "Sensors"
url = "http://cargosense.com/"
description = "CargoSense is a smart-data and MicroAnalytics Software-as-a-Service (SaaS) company founded to create solutions that optimize logistics networks – in healthcare, food, medical devices and other industries with complex supply chains."
[[company]]
name = "Cinch Financial"
industry = "Fintech"
url = "https://www.cinchfinancial.com/"
github = "https://github.com/cinch-financial"
description = "A totally unbiased, comprehensive, personal financial advisor. We use elixir/phoenix for multiple services. Boston, MA, USA."
[[company]]
name = "Circle"
industry = "Fintech"
url = "https://www.circle.com/"
github = "https://github.com/circlefin"
description = "Circle builds products that enable greater ease-of-use in online and in-person payments. They are using Elixir in their product's API. Boston, MA, USA."
[[company]]
name = "CivilCode"
industry = "Consulting"
url = "http://www.civilcode.io"
github = "https://github.com/civilcode"
description = "Developing tailored web-based business applications in Montreal, Canada."
[[company]]
name = "ClubCollect"
industry = "Sports"
url = "https://clubcollect.com/en/home"
description = "Billing and collection engine for sports clubs."
[[company]]
name = "Cobenian"
industry = "Consulting"
url = "http://cobenian.com"
github = "https://github.com/Cobenian"
description = "We solve problems with software."
[[company]]
name = "Code Corps"
industry = "Social Good"
url = "https://codecorps.org"
github = "https://github.com/code-corps"
description = "Code Corps helps you build and fund open source software projects for social good."
[[company]]
name = "Coders51"
industry = "Consulting"
url = "http://www.coders51.com"
github = "https://github.com/coders51"
description = "We develop web and mobile solutions for the entire galaxy."
[[company]]
name = "Coffee Meets Bagel"
industry = "Dating"
url = "https://coffeemeetsbagel.com/"
description = "([Blog](https://tech.coffeemeetsbagel.com)) ([Github](https://github.com/Coffee-Meets-Bagel)) - A woman focused relationship application. We use Elixir to power an async management framework to control all of our workers.. We also use it to monitor the health of our api. San Francisco, CA."
[[company]]
name = "Communication Service for the Deaf"
industry = "Non-profit Organization"
url = "https://www.csd.org/"
github = "https://github.com/C-S-D"
description = "Communication Service for the Deaf's [Vineya](https://govineya.com) ASL (American Sign Language) interpreting platform allows interpreters to work for any agency across the United States. The [interpreter website](https://interpreter.govineya.com) for Vineya uses Elixir, Phoenix and RabbitMQ."
[[company]]
name = "Corvus Insurance"
industry = "Insurance"
url = "https://www.corvusinsurance.com"
github = "https://github.com/corvusinsurance"
description = "Commercial insurance company building technology enabled insurance products using sensor and IoT data. Using Elixir/Phoenix/Elm to build the CrowBar platform used by Brokers, Insurance Buyers and internal staff. Based in Boston, Massachusetts, USA."
[[company]]
name = "CoverMyMeds"
industry = "Healthcare"
url = "https://www.covermymeds.com"
description = "CoverMyMeds seamlessly integrates with EHR systems to provide hospitals and providers with ePA functionality at the point of prescribing. Offices in Columbus, OH and Cleveland, OH."
[[company]]
name = "CrankWheel"
industry = "Communication"
url = "http://crankwheel.com/"
description = "Insanely simple freemium screen sharing plus enterprise features."
[[company]]
name = "Crevalle"
industry = "Consulting"
url = "http://crevalle.io"
github = "https://github.com/crevalle"
description = "Creator of the [EMPEX](http://empex.co) conferences, we specialize in listening and helping. Our company products are all built in Elixir. We also provide Elixir training and development services. LA/NYC"
[[company]]
name = "Cultivate"
industry = "Consulting"
url = "http://cultivatehq.com"
github = "https://github.com/cultivatehq"
description = "Long-term practitioners of agile, Lean Startup and Lean UX, providing end-to-end product development. We’re using Elixir on live client projects and have been building web applications since 2009, when we operated as the Edinburgh office of EdgeCase."
[[company]]
name = "Customer Lobby"
industry = "Customer Service"
url = "https://www.customerlobby.com"
github = "https://github.com/customerlobby"
description = "Repeat Customer & Reviews Software. We are currently in the process of building a couple of services that use elixir. Berkeley, CA, USA."
[[company]]
name = "DIGIMONDO"
industry = "Internet of Things"
url = "https://www.digimondo.de/"
description = "DIGIMONDO is building a LoRaWAN network providing connectivity for millions of IoT devices. Using Elixir for networking/routing services and web applications."
[[company]]
name = "DNSimple"
industry = "Internet Infrastructure"
url = "https://dnsimple.com/"
github = "https://github.com/dnsimple/"
description = "With a globally distributed team DNSimple provides the tools your need to manage your domains. We offer both a carefully crafted web interface for managing your domains and DNS records, as well as an HTTP API with various SDKs (including Elixir) and open source plugins in Elixir (and Phoenix)."
[[company]]
name = "Defacto"
industry = "Education"
url = "https://en.defacto.nl"
github = "https://github.com/DefactoSoftware"
description = "Developing People since 1987. We build software to provide organizations with an intuitive and easy to use digital learning environment. We also contribute and maintain open source software. Based in Groningen, The Netherlands."
[[company]]
name = "Diacode"
industry = "Consulting"
url = "https://diacode.com"
github = "https://github.com/diacode"
description = "Former Ruby on Rails development shop now embracing Elixir and Phoenix. Authors of [Phoenix Trello](https://github.com/bigardone/phoenix-trello) clone. Co-Organizer of the [Madrid |> Elixir meetup](http://www.meetup.com/Madrid-Elixir/)."
[[company]]
name = "Diatom Enterprises"
industry = "Consulting"
url = "http://www.diatomenterprises.com/"
github = "https://github.com/DiatomEnterprises"
description = "Diatom Enterprises - Latvia based custom outsource software development company producing software for a wide variety of industries. We are proficient in Elixir, .NET, Java, Ruby on Rails, Node.JS, Angular.JS and other technologies. We offer Web, Mobile and Desktop development."
[[company]]
name = "Digital Natives Budapest"
industry = "Consulting"
url = "http://www.digitalnatives.hu/"
description = "10 years experience in RoR, JavaScript, since 2015 we do Elixir / Elm. We work for startups and bigger companies as well, we also founded a couple of SaaS products and a coding bootcamp. We host and organise among others [Elixir](http://www.meetup.com/budapest-elixir/) and [Ruby](http://www.meetup.com/budapest-rb/) meetups in Budapest. [GitHub](https://github.com/digitalnatives)"
[[company]]
name = "Discord"
industry = "Communication"
url = "https://discordapp.com/"
description = "Free voice and text chat for gamers."
[[company]]
name = "DockYard"
industry = "Consulting"
url = "https://dockyard.com"
github = "https://github.com/dockyard"
description = "Projects, staff augmentation, coaching, & code audits. Organizer of Boston Elixir. Specialize in Phoenix backends with Ember frontends. [Chris McCord](https://github.com/chrismccord) is Architectural Engineer and creator of Phoenix."
[[company]]
name = "Dubber"
industry = "Communication"
url = "https://www.dubber.net"
github = "https://github.com/dubbersoftware/"
description = "Dubber is a native cloud, call recording software as a service with unlimited scalability. Capture IM, video and calls like never before! Using Elixir to power our billing system and other backends. Based in Melbourne, Australia."
[[company]]
name = "Dynamo"
industry = "Consulting"
url = "http://godynamo.com"
github = "https://github.com/DynamoMTL"
description = "We build beautiful digital experiences for startups and other innovators. Using Elixir to power our backends. Based in Montreal, Canada."
[[company]]
name = "E-MetroTel"
industry = "Communication"
url = "http://www.emetrotel.com"
description = "Cost-effective SIP based Unified Communication solutions."
[[company]]
name = "EL Passion"
industry = "Consulting"
url = "http://www.elpassion.com"
github = "https://github.com/elpassion"
description = "Helping startups launch their products since 2010. Coding in Ruby, JS, Elixir, Swift, Kotlin. Organizer of [Elixir Warsaw Meetup](http://www.meetup.com/ElixirWarsaw-Meetup/)."
[[company]]
name = "EXR"
industry = "Real Estate"
url = "https://www.exrny.com/"
github = "https://github.com/exrny"
description = "EXR is a residential and commercial real estate brokerage building a better experience for buying, selling, and leasing real estate."
[[company]]
name = "EasyMile"
industry = "Autonomous Vehicles"
url = "https://easymile.com"
github = "https://github.com/EasyMile"
description = "We design and build autonomous vehicles in France. We use Elixir for our Fleet Management suite."
[[company]]
name = "Echobind"
industry = "Consulting"
url = "https://echobind.com)([Github](https://github.com/echobind)"
description = "As a US-based full-service agency, we leverage Elixir to drive robust web and mobile applications. From design and implementation to trainings and code audits, we help our clients achieve."
[[company]]
name = "Edenlab"
industry = "Consulting"
url = "https://edenlab.com.ua/"
github = "https://github.com/edenlabllc/"
description = "Boutique software and product development team. We love fintech and we specialize in it, but also run complex and meaningful projects in other fields (Healthcare, e-Government, etc.). We have experience in enterprise solution developments, understand client’s requirements and pain, but are able to combine enterprises with cutting-edge technologies and start-up approach. We have experience in banking, microfinance, startups and software development using elixir."
[[company]]
name = "Elevio"
industry = "Customer Service"
url = "https://elev.io"
github = "https://github.com/elevio"
description = "We build contextual and predictive help for site and app owners so their customers can help themselves. We use Elixir for handling small data, orchestrating background jobs and messaging. We are based in sunny Melbourne, Australia."
[[company]]
name = "EmCasa"
industry = "Real Estate"
url = "http://www.emcasa.com/"
github = "https://github.com/gusaiani/re"
description = "EmCasa is an online residential broker using an Elixir webservice to help Brazilian buyers and sellers have a far superior experience in real estate. Rio de Janeiro, RJ, Brazil."
[[company]]
name = "Emagroup"
industry = "Gaming"
url = "http://www.emagroup.cn/"
description = "Develop mobile games. Elixir is used for building game management tools."
[[company]]
name = "Entelios"
industry = "Energy"
url = "http://www.entelios.com"
description = "Entelios enables large industrial energy consumers to commercialize their load flexibility into different energy markets in Europe, such as the classical demand response programs (PRL, SRL, etc.) or Intraday. Entelios' automated and distributed load control system is implemented in Erlang and Elixir. Entelios is based in Berlin and Munich, Germany."
[[company]]
name = "Enterprise Modules"
industry = "Enterprise"
url = "https://www.enterprisemodules.com"
github = "https://github.com/enterprisemodules"
description = "Supported Enterprise Puppet Modules for complex software. Elixir used in production for modules subscription management. Nieuwegein, Netherlands."
[[company]]
name = "Erlang Solutions"
industry = "Consulting"
url = "https://www.erlang-solutions.com"
description = "Erlang Solutions provide on-site/remote Elixir and Erlang consulting, architecture/code reviews and training for companies of all sizes - from startups to Fortune 100 companies - with over 15 years of experience designing scalable, fault-tolerant systems in Erlang/OTP. The company employs over 100 specialists working out of London, Stockholm, Krakow, Budapest, Berlin, San Francisco, Seattle and Buenos Aires. [GitHub](https://github.com/esl)."
[[company]]
name = "Evercam"
industry = "Video"
url = "http://www.evercam.io"
github = "https://github.com/evercam"
description = "Camera Management Software (Open Source)."
[[company]]
name = "Everyday Hero"
industry = "Non-profit Organization"
url = "https://www.everydayhero.com"
description = "Everydayhero is transforming how people give to and connect with the causes they care about most."
[[company]]
name = "Exeq"
industry = "Fintech"
url = "https://exeq.com"
github = "https://github.com/exeqapp"
description = "Exeq helps users spend better. They are using Elixir to build the systems that aggregate, normalize, and analyze both transactional and merchant data. New York, NY, USA."
[[company]]
name = "Farmbot"
industry = "Food"
url = "https://farmbot.io/"
github = "https://github.com/FarmBot"
description = "Humanity's first open-source CNC farming machine. Farmbot using Elixir for the Raspberry Pi 3. [Click here for more detail](https://github.com/FarmBot/farmbot_os). FarmBot Inc is located at 81 South Higuera Street, Suite 160, in San Luis Obispo, California."
[[company]]
name = "Fave by Groupon"
industry = "E-Commerce"
url = "https://myfave.com"
github = "https://github.com/kfit-dev"
description = "Get discounted deals from restaurants, cafes, bars, spa, salon, and gyms near you. Southeast Asia."
[[company]]
name = "Find a Player"
industry = "Sports"
url = "https://findaplayer.com"
description = "Organize sports games, find people to play sports with"
[[company]]
name = "Findmypast"
industry = "Family"
url = "http://www.findmypast.co.uk/"
github = "https://github.com/findmypast"
description = "Findmypast makes original historical documents available to search online, so that people can explore a collection of over two billion records find their ancestors and trace their family tree from the comfort of their own home worldwide. London, UK."
[[company]]
name = "Flow"
industry = "Communication"
url = "https://www.getflow.com/"
description = "All your team’s communication, clear and organized."
[[company]]
name = "Fontstore"
industry = "E-Commerce"
url = "https://www.fontstore.com"
github = "https://github.com/fontstore"
description = "A font subscription service for designers. We use Elixir/Phoenix to build a web API for the website and handle WebSocket connection for the desktop applications."
[[company]]
name = "Football Addicts"
industry = "Sports"
url = "http://www.footballaddicts.com"
github = "https://github.com/elixir-addicts"
description = "Creators of the well-known *Forza Football* and other leading football-related mobile applications."
[[company]]
name = "Frame"
industry = "Video"
url = "https://frame.io/"
github = "https://github.com/frameio"
description = "Frame.io is an online platform that enables its users to privately upload, review, and share video with their teams. Their product is built with Elixir and Phoenix. New York, USA."
[[company]]
name = "Fred"
industry = "Communication"
url = "http://fredapp.com.br"
description = "FRED is an artificial intelligence, conversational commerce and chatbots ecosystem with multiple platforms based in Brazil. FRED platforms enable companies of any size to build chatbots and messaging services in multiple channels."
[[company]]
name = "Fully Forged"
industry = "Consulting"
url = "http://fullyforged.com"
description = "Software development and training, based in London."
[[company]]
name = "Future Pet"
industry = "Healthcare"
url = "https://futurepet.care"
github = "https://github.com/futurepet"
description = "FuturePet is a vetrinary software company based out of Vancouver & Victoria BC that uses our intelligent intake process to reduce appointment time by 40%. We use Elixir to power our main messaging platform. System is ready to handle millions of patients, using data integrity algorithms (heavily influenced by blockchain ideas) and uses all the power of ErlangVM to support countrywide scale."
[[company]]
name = "Gaslight"
industry = "Consulting"
url = "http://teamgaslight.com"
description = "Software Development, consulting, coaching, training, Organizer of the Cincinnati Elixir group. Now using Elixir and Phoenix in production."
[[company]]
name = "GitMonitor"
industry = "Developers"
url = "https://gitmonitor.com"
description = "([Blog](https://blog.gitmonitor.com)) - Custom rules and notifications for your GitHub repositories"
[[company]]
name = "Govannon"
industry = "Consulting"
url = "https://govannon.nl"
description = "Software development, consulting and full stack engineers."
[[company]]
name = "Grasp"
industry = "Education"
url = "https://play.google.com/store/apps/details?id=com.gordonbisnor.grasp&hl=en"
description = "Android/iOS/Web application facilitating real-time education group work"
[[company]]
name = "GrillWork"
industry = "Consulting"
url = "http://grillwork.io"
description = "([GitHub](https://github.com/grillwork))- Helping business through software. Working in Elixir/Phoenix/Ruby/Rails/Node/Javascript/ReactJS. We use Elixir for all backend/api work and for network programming."
[[company]]
name = "Grok Interactive"
industry = "Consulting"
url = "https://www.grok-interactive.com"
github = "https://github.com/GrokInteractive"
description = "We help companies solve hard problems and real-time communication with Elixir/Phoenix and React Native. Architecture, Training, and Implementation. All local developers, based in San Antonio, Texas."
[[company]]
name = "GrowthPup"
industry = "Online Marketing"
url = "https://growthpup.com/"
description = "Helping users to grow and maintain their Instagram community."
[[company]]
name = "Hashrocket"
industry = "Consulting"
url = "https://hashrocket.com"
github = "https://github.com/hashrocket"
description = "Hashrocket is an expert team of designers, developers and consultants. We specialize in Ruby on Rails, Ember, Elixir, Phoenix and mobile. We offer consulting, design, development, identity and training services."
[[company]]
name = "Heetch"
industry = "Transportation"
url = "https://heetch.com"
github = "https://github.com/heetch"
description = "Heetch - A ride-sharing app with a simple mission: we want people to enjoy their night out. With millions users in Europe, we're running microservices based architecture with real-time application. Paris, France (Remote friendly)"
[[company]]
name = "Hello Sign"
industry = "Legal services"
url = "https://www.hellosign.com"
github = "https://github.com/HelloFax"
description = "eSignature platform. Send and receive electronic signatures securely with the end-user solution or the eSignature API. San Fransisco, CA, USA."
[[company]]
name = "Heresy"
industry = "Sales"
url = "http://heresy.io"
description = "([GitHub](https://github.com/heresydev)) - The days of top-down sales management are over! We are bringing Agile to Sales, empowering salespeople to improve performance with better data and collaboration. We believe that CRM software built as a “system of record” adds little value to salespeople. Heresy is a workflow application, that enables sales professionals to manage their workload, forecast accurately and crush targets every month. Through its usage, we are able to aggregate valuable data that provides salespeople and their managers with unique insights without having to run a single report. Main product and platform are built exclusively using Elixir and Phoenix. London, UK."
[[company]]
name = "HiOperator"
industry = "Customer Service"
url = "https://www.hioperator.com"
description = "Customer support as-a-service. Think of us like AWS for customer service. We scale companies phone, chat or email support. YC-S16."
[[company]]
name = "High-Mobility"
industry = "Autonomous Vehicles"
url = "https://www.high-mobility.com/"
github = "https://github.com/highmobility"
description = "We are building developer platform for connected cars which simplify collaboration between carmakers and software developers. We are using Elixir in our developer center, car emulators and in prototype cars."
[[company]]
name = "HotDoc"
industry = "Healthcare"
url = "https://www.hotdoc.com.au"
description = "HotDoc provides services to doctors and their patients. We provide online bookings, reminders, follow up notifications and more. We are an Australian based company and use Elixir for some of our services and are looking to use it more."
[[company]]
name = "Househappy"
industry = "Home Services"
url = "https://www.househappy.com/)([Github](https://github.com/househappy)"
description = "Househappytrax is a service designed to make homeownership easy. Based in Portland, Oregon, USA. We use Phoenix to build an API and admin web UI for Househappytrax."
[[company]]
name = "Housing"
industry = "Real Estate"
url = "https://housing.com/"
description = "Housing.com is an Indian online real estate listing portal that simplifies finding, renting, and selling homes in India."
[[company]]
name = "Icicle Technologies"
industry = "Consulting"
url = "http://www.icicletech.com)([GitHub](https://github.com/icicletech)"
description = "Provides Consulting, Product Development on Elixir & Phoenix. Organizer of Bangalore Elixir Group, built [ElixirNation.io](http://elixirnation.io)."
[[company]]
name = "IdealSpot"
industry = "Real Estate"
url = "https://www.idealspot.com"
description = "IdealSpot provides local market data for retail and real estate. We use Elixir for distributed data aggregation and multiple backend services. Austin, TX, USA."
[[company]]
name = "Infinite Red"
industry = "Consulting"
url = "https://infinite.red"
github = "https://github.com/infinitered"
description = "Mobile and web app design and development services, using Elixir / Phoenix, React, and React Native. Based in Portland, San Francisco, and remote across the USA, with clients in eight countries. We build and maintain dozens of popular open source libraries, including [Thesis](github.com/infinitered/thesis-phoenix) and [Torch](github.com/infinitered/torch)."
[[company]]
name = "John Done"
industry = "Consulting"
url = "https://johndone.ai"
github = ""
description = "In the future, we will speak to machines, politely asking them to carry out tasks for us. At John Done Inc. we are doing our part to build that future by bringing the voice assistant John Done to telephone calls, communications platforms, and web conferences."
[[company]]
name = "Isnor Creative"
industry = "Consulting"
url = "http://www.isnorcreative.com"
description = "Software development since 2008. Ruby, Elixir, Ember, React"
[[company]]
name = "Isotope11"
industry = "Consulting"
url = "http://www.isotope11.com/"
github = "https://github.com/isotope11"
description = "We provide custom software development and relevant technologies to a wide range of clients. Josh Adams of [ElixirSips](http://elixirsips.com) was the CTO."
[[company]]
name = "Kabisa"
industry = "Consulting"
url = "http://www.kabisa.nl"
description = "Software crafts(wo)men, passionately committed to exceed our customers expectations in every step we take. We value creativity and flexibility. Co-Organizer of the [Amsterdam Elixir meetup](http://www.meetup.com/Amsterdam-Elixir/)."
[[company]]
name = "Kittysplit"
industry = "Fintech"
url = "https://kittysplit.com"
description = "A webapp that alows easy splitting of group expenses."
[[company]]
name = "Kontomatik"
industry = "Fintech"
url = "https://kontomatik.com"
github = "https://github.com/kontomatik"
description = "We provide API to banks for proving client identity (KYC) and reading financial data (input for credit scoring, PFM, invoicing etc). We use Elixir for user panel/administration/business intelligence tools. Based in Warsaw, Poland"
[[company]]
name = "LETOTE"
industry = "E-Commerce"
url = "https://letote.com"
github = "https://github.com/LeToteTeam"
description = "Rent and wear all the latest fashion, without ever stepping foot inside a store. We use Elixir, Phoenix, and Nerves in our fulfillment center for speed, efficiency, and automation. Located in San Francisco, CA."
[[company]]
name = "Lab Zero"
industry = "Consulting"
url = "https://labzero.com"
github = "https://github.com/labzero"
description = "A San Francisco based development and design group. We specialize in Ruby, JS and Elixir."
[[company]]
name = "LessEverything"
industry = "Consulting"
url = "http://lesseverything.com"
description = "Companies hire us to build their big software idea, create integrations between products, improve their conversion rates or just bring new ideas to the table."
[[company]]
name = "Lexmark"
industry = "Enterprise"
url = "https://www.lexmark.com"
github = "https://github.com/OpenAperture"
description = "Provider of printing and imaging products, software, solutions and services that help customers save time and money."
[[company]]
name = "Liftit"
industry = "Transportation"
url = "https://liftit.co/"
github = "https://github.com/Liftitapp"
description = "Liftit - Your best friend with a truck."
[[company]]
name = "Littlelines"
industry = "Consulting"
url = "http://littlelines.com"
description = "Provides development services, strategy, collaboration, upgrades and code reviews. Littlelines is located in the midwest and serves clients worldwide. We specialize in Elixir and Phoenix, Ruby on Rails, Swift and Vue."
[[company]]
name = "LiveHelpNow"
industry = "Customer Service"
url = "https://www.livehelpnow.net"
github = "https://github.com/livehelpnow"
description = "Customer service software featuring chat, ticket, knowledge base and callback systems. Elixir will drive our entire system in the near future, but runs a majority of our software now. We are based in Bethlehem, PA, USA"
[[company]]
name = "Lob"
industry = "Enterprise"
url = "https://lob.com"
github = "https://github.com/lob"
description = "APIs for Print, Mail, Postcards, Letters, & Checks. San Fransisco, CA, USA."
[[company]]
name = "Lonely Planet"
industry = "Traveling"
url = "http://www.lonelyplanet.com"
github = "https://github.com/lonelyplanet"
description = "Lonely Planet is renowned for its first-hand approach, up-to-date maps and commitment to providing the best information for travellers in the United States. Elixir currently being used for couple of very important microservices. [Find out more](https://medium.com/@derrickburns/building-a-modern-scalable-backend-modernizing-monolithic-applications-15fc3b8101fa#.ki1sfqqyg)"
[[company]]
name = "LookBookHQ"
industry = "Online Marketing"
url = "http://lookbookhq.com"
github = "https://github.com/buzzdata"
description = "Enabling marketers to package content into seamless experiences. We use Elixir to calculate analytics for our customers. Toronto, Canada."
[[company]]
name = "Made by Many"
industry = "Consulting"
url = "http://madebymany.com/"
github = "https://github.com/madebymany"
description = "We help businesses identify market opportunities, bring successful digital products to life and create the culture & capabilities to sustain them."
[[company]]
name = "Mainframe"
industry = "Communication"
url = "http://mainframe.co/"
description = "Building the future of email."
[[company]]
name = "MarketFactory"
industry = "Fintech"
url = "https://marketfactory.com"
description = "([Github](https://github.com/MarketFactory))- A low-latency FX platform connecting banks/traders to 70+ different FX venues. We leverage elixir/phoenix for multiple back end microservices (ie. trade execution). New York, NY, USA."
[[company]]
name = "Mediteo"
industry = "Healthcare"
url = "https://www.mediteo.com"
github = "https://github.com/mediteo"
description = "Mediteo is a young Digital Health start-up with the aim to provide the best solution to handle medication in a correct and secure way. Berlin, Germany."
[[company]]
name = "Meltwater"
industry = "Online Marketing"
url = "https://meltwater.com"
description = "([GitHub](https://github.com/meltwater)) - Gather insights from outside the firewall to empower your business decisions. Using Elixir for backend services. San Francisco, USA."
[[company]]
name = "Mirego"
industry = "Consulting"
url = "http://mirego.com"
github = "https://github.com/mirego"
description = "We help our clients innovate and reinvent themselves in order to prosper in the digital era."
[[company]]
name = "Moz"
industry = "Online Marketing"
url = "https://moz.com/"
description = "([GitHub](https://github.com/seomoz)) - Products to power your online visibility."
[[company]]
name = "My Meds & Me"
industry = "Healthcare"
url = "https://www.mymedsandme.com"
github = "https://github.com/MyMedsAndMe"
description = "A leading SaaS provider of web-based adverse event and product quality capture solutions for life sciences. [Click here to see how elixir being used at My Meds & Me.](https://www.youtube.com/watch?v=ZCYEX6ZIJgM) The company based in London."
[[company]]
name = "Nav"
industry = "Fintech"
url = "https://nav.com"
github = "https://github.com/creditera"
description = "We are a Utah Company offering credit monitoring, financing, and advice for small & medium size businesses. We use elixir to build the business engine that curates relevant financing for our customers."
[[company]]
name = "Nebo15"
industry = "Fintech"
url = "http://nebo15.com/"
github = "https://github.com/Nebo15"
description = "Large peer-to-peer lending platform completely on Elixir, from scratch. Kiev, Ukraine."
[[company]]
name = "Neon Tree Solutions"
industry = "Consulting"
url = "http://neontree.pl"
description = "Elixir, Erlang, React, Scala and Node.js outsourcing and consulting. We specialize in helping out start-ups and small companies to find the best tools for the job."
[[company]]
name = "Nerds & Company"
industry = "Consulting"
url = "https://nerds.company"
github = "https://github.com/nerds-and-company"
description = "Creating value for companies by creating value for people. A digital agency based in the Netherlands. Specialized in innovative projects. Experts in Elixir, Ruby and mobile."
[[company]]
name = "Nested"
industry = "Real Estate"
url = "https://nested.com/"
description = "Nested is an estate agent with a difference. We guarantee you a fair sale price for your home so you can move on chain-free. ([Github](https://github.com/nested-tech)) - Elixir powers our backend. London, UK."
[[company]]
name = "Omagatoki 大禍時"
industry = "Security"
url = "https://omagatoki.gdn"
description = "([GitHub](https://github.com/omagatoki)) - VPN service which is transparent, secure and featureful."
[[company]]
name = "Onfido"
industry = "Identity"
url = "https://onfido.com"
github = "https://github.com/onfido"
description = "Onfido builds trust in an online world by helping businesses digitally verify people’s identities."
[[company]]
name = "Opal"
industry = "Online Marketing"
url = "https://www.workwithopal.com/"
description = "([Github](https://github.com/opallabs)) - Opal is a collaboration platform for brand marketers. We use Elixir in a few back-end services. Portland, OR, USA."
[[company]]
name = "Opendoor"
industry = "Real Estate"
url = "https://www.opendoor.com"
description = "Opendoor buys your home from you, so you can skip months of selling and start your next chapter."
[[company]]
name = "Oyorooms"
industry = "Hotel Aggregator"
url = "https://www.oyorooms.com"
description = "Oyorooms is the India's largest branded network of hotels. Elixir/phoenix is used in few microservices, supporting oyo website and android/ ios app."
[[company]]
name = "Packlane"
industry = "E-Commerce"
url = "https://packlane.com"
github = "https://github.com/packlane"
description = "Design and order custom printed packaging online."
[[company]]
name = "PagerDuty"
industry = "Enterprise"
url = "http://pagerduty.com"
github = "https://github.com/PagerDuty"
description = "PagerDuty is your fastest path to incident resolution, helping IT Operations and DevOps teams deliver on the promise of agility, performance, and uptime."
[[company]]