forked from ocaml/ocaml.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watch.yml
1352 lines (1343 loc) · 71.4 KB
/
watch.yml
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
watch:
- name: '25 Years of OCaml: Xavier Leroy'
description: Professor Xavier Leroy -- the primary original author and leader of
the OCaml project -- reflects on 25 years of the OCaml language at his OCaml Workshop
2021 keynote speech.
embed_path: /videos/embed/e1ee0fc0-50ef-4a1c-894a-17df181424cb
thumbnail_path: /static/thumbnails/94ead657-79a0-4c10-8435-9e13906a6c44.jpg
published_at: 2021-08-27T13:23:10.199Z
language: English
category: Science & Technology
- name: A Case for Multi-Switch Constraints in OPAM
description: "A Case for Multi-Switch Constraints in OPAM - by Fabrice Le Fessant
(INRIA)\r\n\r\nPackage managers usually only deal with packages and their versions,
and the constraints on their dependencies towards other packages\u2019 versions.
Among package managers,..."
embed_path: /videos/embed/744d4a0b-a44c-4040-853c-6be5223ec43b
thumbnail_path: /static/thumbnails/3973b521-c198-4a18-93a1-7190f8f811da.jpg
published_at: 2021-10-02T02:02:32.873Z
language: English
category: Unknown
- name: A Declarative Syntax Definition for OCaml
description: In this talk, we present our work on a syntax definition for the OCaml
language in the syntax definition formalism SDF3. SDF3 supports the high-level
definition of concrete and abstract syntax through declarative disambiguation
and definition of c...
embed_path: /videos/embed/a5b86864-8e43-4138-b6d6-ed48d2d4b63d
thumbnail_path: /static/thumbnails/92c0a0e3-5326-42aa-86a3-6adb3927e111.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: A Multiverse of Glorious Documentation
description: This talk describes the process of generating documentation for every
version of every package that can be built from the opam repository, and how it
is presented as a single coherent website that is continuously updated as new
packages are releas...
embed_path: /videos/embed/9bb452d6-1829-4dac-a6a2-46b31050c931
thumbnail_path: /static/thumbnails/6a0a8291-4626-4820-8071-904b3c508345.jpg
published_at: 2021-08-27T11:23:36.000Z
language: English
category: Science & Technology
- name: A Proposal for Non-Intrusive Namespaces in OCaml
description: "A Proposal for Non-Intrusive Namespaces in OCaml, by Pierrick Couderc
(I), Fabrice Le Fessant (I+O), Benjamin Canou (O), Pierre Chambart (O); (I = INRIA,
O = OCamlPro)\r\n\r\nWe present a work-in-progress about adding namespaces to
OCaml. Inspired by ..."
embed_path: /videos/embed/ded6e8bb-aebd-4fd2-989f-3f0b2b8efaf3
thumbnail_path: /static/thumbnails/cb3f10b6-c34c-4b7e-af35-a056675d8ccd.jpg
published_at: 2021-10-02T02:04:48.044Z
language: English
category: Unknown
- name: A Simple State-Machine Framework for Property-Based Testing in OCaml
description: "Since their inception, state-machine frameworks have proven their
worth by finding defects in everything from the underlying AUTOSAR components
of Volvo cars to digital invoicing systems. These case studies were carried out
with Erlang\u2019s commercia..."
embed_path: /videos/embed/08b429ea-2eb8-427d-a625-5495f4ee0fef
thumbnail_path: /static/thumbnails/316ddad9-dbc3-4d46-9f43-5da72689e93b.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: A review of the growth of the OCaml community
embed_path: /videos/embed/f9d0b637-8aec-4bff-8c32-cd16b58023b6
thumbnail_path: /static/thumbnails/e573402b-1350-4aa7-a9ba-0e1c51198fb4.jpg
published_at: 2015-09-18T00:00:00.000Z
language: Unknown
category: Science & Technology
- name: 'AD-OCaml: Algorithmic Differentiation for OCaml'
description: AD-OCaml is a library framework for calculating mathematically exact
derivatives and deep power series approximations of almost arbitrary OCaml programs
via algorithmic differentiation. Unlike similar frameworks, this includes programs
with side e...
embed_path: /videos/embed/c9e85690-732f-4b03-836f-2ee0fd8f0658
thumbnail_path: /static/thumbnails/eb972fd2-668e-4998-a798-e9fbdcadba20.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: 'API migration: compare transformed'
description: In this talk we describe our experience in using an automatic API-migration
strategy dedicated at changing the signatures of OCaml functions, using the Rotor
refactoring tool for OCaml. We perform a case study on open source Jane Street
libraries ...
embed_path: /videos/embed/c46b925b-bd77-404f-ac5d-5dab65047529
thumbnail_path: /static/thumbnails/eef64419-3c34-4c15-9419-edcbc455e54d.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: Adapting the OCaml ecosystem for Multicore OCaml
description: "OCaml 5.0 with support for shared-memory parallelism being around
the corner, there\u2019s increasing interest in the community to port existing
libraries to Multicore. This talk will take the attendees through what the arrival
of Multicore means to th..."
embed_path: /videos/embed/629b89a8-bbd5-490d-98b0-d0c740912b02
thumbnail_path: /static/thumbnails/41212c84-36d6-44fa-b884-2ced79505929.jpg
published_at: 2021-08-27T10:18:38.000Z
language: English
category: Science & Technology
- name: An LLVM backend for OCaml
description: "An LLVM backend for OCaml by Colin Benner.\r\n\r\nAs part of my bachelor
thesis I have implemented a new backend for the OCaml nativecode compiler ocamlopt
for the AMD64 architecture. It uses the Low Level Virtual Machine framework (LLVM,
an optimisin..."
embed_path: /videos/embed/3ede0b76-e250-4a43-af42-83c394cf4497
thumbnail_path: /static/thumbnails/4dfc2ff3-3c53-4e7c-85ed-907df5b1faff.jpg
published_at: 2021-10-03T22:23:18.701Z
language: English
category: Unknown
- name: Arakoon - a distributed consistent key-value store
description: "Arakoon - a distributed consistent key-value store, by Nicolas Trangez.\r\n\r\nArakoon
is a simple consistent distributed key value store. Technically, it\u2019s an
OCaml implementation of Multi-Paxos on top of Tokyo Cabinet, using Ocsigen\u2019s
Light Weight T..."
embed_path: /videos/embed/5309b701-9def-47a4-8240-8a5b17a70b5a
thumbnail_path: /static/thumbnails/5bbbdabf-622b-4496-8d43-7c2515300678.jpg
published_at: 2021-10-03T22:38:56.202Z
language: English
category: Unknown
- name: Async
description: "Mark Shinwell and David House, Jane Street Europe.\r\n\r\nWe propose
to give a talk about Jane Street's Async library. This is an industrial-strength
library for writing correct concurrent programs without having to think (too hard)."
embed_path: /videos/embed/8f50211a-1210-4849-a940-ea6e0bd1e022
thumbnail_path: /static/thumbnails/6850a57a-15c1-4f8c-8cdb-b0a818f0bcc4.jpg
published_at: 2021-10-03T22:25:11.006Z
language: English
category: Unknown
- name: Automatic analysis of industrial robot programs
description: "Automatic analysis of industrial robot programs, by Markus Wei\xDFmann"
embed_path: /videos/embed/3cebba55-4032-4de5-93b5-8f3f67c04736
thumbnail_path: /static/thumbnails/480b953a-f17e-498c-9822-c82828ca9c0c.jpg
published_at: 2021-10-03T22:38:09.817Z
language: English
category: Unknown
- name: Binary Analysis Platform
description: We present Binary Analysis Platform (BAP), a representation-agnostic
program analysis framework for binaries that can leverage existing tools, libraries,
and frameworks, no matter which intermediate representation (IR) they use. In
BAP, a new IR c...
embed_path: /videos/embed/8dc2d8d3-c140-4c3d-a8fe-a6fcf6fba988
thumbnail_path: /static/thumbnails/390cd7dd-4578-4162-bae0-6c218cb5ebde.jpg
published_at: 2021-08-31T08:39:55.774Z
language: English
category: Unknown
- name: Bindoj library, a datatype-centric generative programming library
description: "Introducing the Bindoj library, a datatype-centric generative programming
library for real-world programming in OCaml\r\n\r\nHaochen M. Kotoi-Xie (Kotoi-Xie
Consultancy, Inc.)\r\nHirotetsu Hongo (Kotoi-Xie Consultancy, Inc.)\r\nYuta Sato
(Kotoi-Xie Consul..."
embed_path: /videos/embed/69755b27-85b1-4df4-9f01-b771cd15353a
thumbnail_path: /static/thumbnails/ae5c8a14-6780-4384-b67c-399f9f233f9b.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Biocaml - the OCaml bioinformatics library
description: Biology is an increasingly computational discipline due to rapid advances
in experimental techniques, especially DNA sequencing, that are generating data
at unprecedented rates. The computational techniques needed range from the complex
(.e.g algo...
embed_path: /videos/embed/f9ce30b3-8143-4516-85f1-07c28f6337b2
thumbnail_path: /static/thumbnails/102b2860-a3eb-4afb-adfc-16ee06418028.jpg
published_at: 2021-10-03T22:15:01.407Z
language: English
category: Unknown
- name: Casually talking about ReScript, OSS, and communities with Patrick Ecker
description: "Patrick (@ryyppy) is working with OSS in ReScript and part of the
core team\r\n\r\nIf you'd like to support the show for more content about OCaml,
Reason and ReScript you can now do so at https://www.patreon.com/emelletv or
by sending any tez amount ..."
embed_path: /videos/embed/63a8694b-8911-41cc-8754-4c1cad186d3d
thumbnail_path: /static/thumbnails/1d3f35e6-e0aa-4bcf-aa38-39e1d14913ab.jpg
published_at: 2021-10-20T00:00:00.000Z
language: English
category: Science & Technology
- name: Casually talking with Craig Ferguson about OCaml, Mirage, Irmin and more
description: "Craig Ferguson is a software developer at Tarides. Join us in this
episode to talk more about OCaml, MirageOS, Irmin and much more!\r\n\r\nWe are
looking for sponsors! If you'd like to support more content for Ocaml, Reason
and ReScript just send us a..."
embed_path: /videos/embed/f3aa87e9-67a1-4569-b154-67d2d185152b
thumbnail_path: /static/thumbnails/0d38e0d5-453a-42ca-b4f9-54d0998622e3.jpg
published_at: 2021-09-07T00:00:00.000Z
language: English
category: News & Politics
- name: Casually talking with Eduardo Rafael about OCaml, Tezos and probably compilers
description: "Eduardo is a streamer and a tech lead at @Marigold_Dev.\r\nJoin us
in this episode to casually talk about OCaml, Tezos and probably compilers\r\n\r\nIf
you'd like to support the show for more content about OCaml, Reason and ReScript
you can now do so at..."
embed_path: /videos/embed/11ab3cbe-38b8-411c-a7aa-994c00f472d8
thumbnail_path: /static/thumbnails/ab863370-0e79-417e-b21e-307fbfe9dbd8.jpg
published_at: 2021-09-24T00:00:00.000Z
language: English
category: Science & Technology
- name: Casually talking with Gabriel Radanne about OCaml, meta-programming and much
more
description: "Gabriel \"Drup\" Radanne researcher at Inria in the CASH research
team\r\n\r\nIf you'd like to support the show for more content about OCaml, Reason
and ReScript you can now do so at https://www.patreon.com/emelletv or by sending
any tez amount to emel..."
embed_path: /videos/embed/7321d6e6-6573-4c93-9a21-61f2541be4ec
thumbnail_path: /static/thumbnails/d6063608-535c-4a64-bdd7-d9691f2644fa.jpg
published_at: 2021-11-24T00:00:00.000Z
language: English
category: News & Politics
- name: Casually talking with Hongbo Zhang
description: "Hongbo Zhang (@bobzhang1988), creator of BuckleScript and core maintainer
of ReScript\r\n\r\nEnjoying the video? Please, support the show for more content
about OCaml, Reason and ReScript you can now do so at https://www.patreon.com/emelletv
or by sen..."
embed_path: /videos/embed/2f73650f-79f5-44d6-87c1-ced0517c09da
thumbnail_path: /static/thumbnails/475dc63d-9a4a-4f3e-beff-e443c1db24cd.jpg
published_at: 2022-05-27T00:00:00.000Z
language: English
category: Science & Technology
- name: Causally talking with @Dinoosaure about Mirage OS 4.0
description: "@Dinoosaure (Calascibetta Romain) core dev at Mirage OS\r\n\r\n\r\nIf
you'd like to support the show for more content about OCaml, Reason and ReScript
\ you can now do so at https://www.patreon.com/emelletv or by sending any tez
amount to emelletv.tez (t..."
embed_path: /videos/embed/4bddb539-5034-4fe2-b2a9-175260262aac
thumbnail_path: /static/thumbnails/3dbdfa88-e33a-4f16-ab6b-52846ad300b9.jpg
published_at: 2022-03-31T00:00:00.000Z
language: English
category: Science & Technology
- name: Causally talking with Sean Grove about GraphQL, OneGraph and ReasonML
description: "Sean Grove Founder of OneGraph\r\n\r\nIf you'd like to support the
show for more content about OCaml, Reason and ReScript you can now do so at https://www.patreon.com/emelletv
or by sending any tez amount to emelletv.tez (tz1bQHQKT4BSoEreWKHuR3H5mme6..."
embed_path: /videos/embed/f84b4f70-86ca-4918-b6cd-4770051728ba
thumbnail_path: /static/thumbnails/9ed5a603-432b-4323-977c-8c8414aa43ca.jpg
published_at: 2021-12-02T00:00:00.000Z
language: English
category: Science & Technology
- name: Composing Schedulers using Effect Handlers
description: "Composing Schedulers using Effect Handlers\r\n\r\nDeepali Ande (IIT
Madras)\r\nKC Sivaramakrishnan (IIT Madras and Tarides)\r\n\r\nOCaml 5 introduces
effect handlers as a mechanism for con- current programming. With effect handlers,
concurrency can be expre..."
embed_path: /videos/embed/08ea09a1-e645-47cb-80c4-499dd4d93ac8
thumbnail_path: /static/thumbnails/a3feaba9-56eb-4aa2-aad4-99a3ed77dfc1.jpg
published_at: 2022-10-20T00:00:00.000Z
language: English
category: Science & Technology
- name: Conex -- establishing trust into data repositories
description: Hannes Mehnert, Louis Gesbert at OCaml Workshop 2016
embed_path: /videos/embed/70fbf7db-28dc-4798-b068-460b5d93df4e
thumbnail_path: /static/thumbnails/a22ae328-d483-433f-a388-42de0cb29e00.jpg
published_at: 2016-10-11T00:00:00.000Z
language: English
category: Science & Technology
- name: Continuous Benchmarking for OCaml Projects
description: "Regular CI systems are optimised for workloads that do not require
stable performance over time. This makes them unsuitable for running performance
benchmarks.\r\n\r\ncurrent-bench provides a predictable environment for performance
benchmarks and a UI..."
embed_path: /videos/embed/1c994370-1aaa-4db6-b901-d762786e4904
thumbnail_path: /static/thumbnails/33ab36c3-3650-4c13-9fea-9b5907cf8c0f.jpg
published_at: 2021-08-27T11:20:09.000Z
language: English
category: Science & Technology
- name: Continuous Monitoring of OCaml Applications Using Runtime Events
description: The upcoming 5.0 release of OCaml includes a new runtime tracing system
designed for continuous monitoring of OCaml applications called Runtime Events.
It enables very low overhead, programmatic access to performance data emitted
by the OCaml runt...
embed_path: /videos/embed/299cab02-db94-44ac-b926-ea90ddda1b09
thumbnail_path: /static/thumbnails/fdad6056-bd71-4401-9391-5cb5b4bfa06e.jpg
published_at: 2022-09-16T11:07:11.073Z
language: English
category: Science & Technology
- name: "Copying opam switches \u2013 it should Just Work\u2122"
description: "Copying opam switches \u2013 it should Just Work\u2122\r\n\r\nDavid
Allsopp (Tarides UK)\r\n\r\nOCaml\u2019s ecosystem centres around compilation
from source code, rather than precompiled binaries. The compiler itself is only
provided as a source distribution and OCaml\u2019..."
embed_path: /videos/embed/8c1c3fda-0106-4c7d-a794-33da7e758fee
thumbnail_path: /static/thumbnails/485ae080-f057-4f0d-be1e-c88ad2a22ab7.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Coq of OCaml
description: "Coq of OCaml, by Guillaume Claret\r\n\r\nThe CoqOfOCaml project is
a compiler from a subset of the OCaml language to the Coq programming language.
This com- piler aims to allow reasoning about OCaml programs, or to im- port existing
OCaml libraries in..."
embed_path: /videos/embed/fc7201df-ec27-4735-a51d-d3170d390346
thumbnail_path: /static/thumbnails/f355df78-a634-408c-952e-73312d8b92e3.jpg
published_at: 2021-10-02T02:06:52.778Z
language: English
category: Unknown
- name: Core Time stamp counter - A fast high resolution time source
embed_path: /videos/embed/b6c7860d-e6eb-4404-96c3-917b81ee1f98
thumbnail_path: /static/thumbnails/f4d75771-8394-438f-b8eb-86baff8863d6.jpg
published_at: 2021-09-11T02:42:33.957Z
language: English
category: Unknown
- name: 'Core Time stamp counter: A fast high resolution time source'
embed_path: /videos/embed/75b4d60f-3e37-40bd-b025-f39dcce0c42c
thumbnail_path: /static/thumbnails/43248673-6478-4e96-b8ac-cd415d85569b.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: Debugging Native OCaml with Breakpoints and Stepping
embed_path: /videos/embed/59d2cdd9-3d1e-4a6a-ae0e-ab9ee2882dd3
thumbnail_path: /static/thumbnails/723ee60d-2829-462f-b79d-d5174722430c.jpg
published_at: 2023-07-07T17:18:45.492Z
language: Unknown
category: Unknown
- name: Deductive Verification of Realistic OCaml Code
description: We present the formal verification of a subset of the Set module from
the OCaml standard library. The proof is conducted using Cameleer, a new tool
for the deductive verification of OCaml code. Cameleer takes as input an OCaml
program, annotated u...
embed_path: /videos/embed/92309d92-8cbf-4545-980c-209c96e42a79
thumbnail_path: /static/thumbnails/db29d3bf-784c-47f1-bf90-f13fd2a9d530.jpg
published_at: 2021-08-27T10:33:38.000Z
language: English
category: Science & Technology
- name: 'Demo: Solo5 Unikernel Hosting the MirageOS www-htdocs on a Raspberry Pi'
description: 'A demo showing a Solo5 unikernel hosting the MirageOS www-htdocs on
a Raspberry Pi '
embed_path: /videos/embed/06e1d349-d082-4836-ab39-fb26d0898aae
thumbnail_path: /static/thumbnails/9c7c43b9-de1a-440b-a7be-8298ae5f25e2.jpg
published_at: 2023-09-20T11:27:06.813Z
language: Unknown
category: Science & Technology
- name: Develop Cross-Platform Software using 2+ Languages
description: "Explore how high school robotics software was developed that works
on Android phones and desktop PCs. Use OCaml alongside common programming languages
like Java and Python.\r\n\r\nDkSDK Subscription: https://diskuv.com/pricing/\r\nLearning
OCaml: https:..."
embed_path: /videos/embed/6162e7b7-f2dd-47e6-8133-c4126ce1b508
thumbnail_path: /static/thumbnails/4a50eb98-ab79-4a57-87d9-a55a91654301.jpg
published_at: 2023-11-16T22:18:27.526Z
language: Unknown
category: Unknown
- name: Digodoc and Docs
description: In this talk, we will introduce a new tool called digodoc, that builds
a graph of an opam switch, associating files, libraries and opam packages into
a cyclic graph of inclusions and dependencies. We will then explain how we used
that tool to buil...
embed_path: /videos/embed/db6ed2c4-e940-4d5f-82ee-d3d20eb4ceb7
thumbnail_path: /static/thumbnails/43a418d6-56ec-48f4-852b-0a18ec0789aa.jpg
published_at: 2021-08-27T12:09:56.000Z
language: English
category: Science & Technology
- name: Documenting OCaml
description: 'Documenting OCaml, (Invited Talk: Florian Angeletti)'
embed_path: /videos/embed/9f9ea4a5-4d6a-4da5-9080-833b25c26511
thumbnail_path: /static/thumbnails/29f8a1a6-3728-4b27-9cd4-889c70ad1a7d.jpg
published_at: 2018-01-12T00:00:00.000Z
language: English
category: Science & Technology
- name: DragonKit - an extensible language oriented compiler
description: DragonKit - an extensible language oriented compiler, by Wojciech Meyer
embed_path: /videos/embed/8326a03e-02d5-4b32-8789-b7a76c30cf95
thumbnail_path: /static/thumbnails/b9c74825-d374-4afb-9c5f-82cab13c1bb8.jpg
published_at: 2021-10-03T22:44:22.886Z
language: English
category: Unknown
- name: Effective Concurrency through Algebraic Effects
embed_path: /videos/embed/e9f6c837-1435-4349-af0f-07d22d1c11ea
thumbnail_path: /static/thumbnails/1de58bd2-d2f9-428c-8b8c-97b48d6d2c7e.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: "Efficient \u201Cout of heap\u201D pointers for multicore OCaml"
description: "Efficient \u201Cout of heap\u201D pointers for multicore OCaml\r\n\r\nGuillaume
Munch-Maccagnoni (INRIA)\r\n\r\nThis paper reports an experiment with a large
pages allocator for the OCaml runtime, with measured performance improvements.
A large pages allocator (als..."
embed_path: /videos/embed/0aa64600-b142-4c11-964d-dab8d509d08f
thumbnail_path: /static/thumbnails/f6850c67-39bc-45b4-bf00-8e6238baa413.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Ephemerons meet OCaml GC
description: " Ephemerons meet OCaml GC, by Fran\xE7ois Bobot\r\n\r\nGarbage collectors
(GCs) manage the memory for the programmers and help to ensure the safety of the
programs by freeing memory only when it cannot be used anymore. GCs detect that
a memory block can\u2019..."
embed_path: /videos/embed/556c8f75-b456-43a3-b9cb-97ae35b82072
thumbnail_path: /static/thumbnails/f03f27d0-ca66-40b3-938d-65230885cd85.jpg
published_at: 2021-10-02T02:09:19.827Z
language: English
category: Unknown
- name: Episode3-Youtube
description: "Everything you need to know to install and use the DkML distribution
of OCaml on Windows. Includes a 5-minute quick install for learners. Includes
how to setup projects and configuring IDEs for software creators/engineers.\r\n\r\nAt
the time of this v..."
embed_path: /videos/embed/4d2578c2-20bf-4cd7-9256-b0eb49716009
thumbnail_path: /static/thumbnails/669c9550-883a-4610-8450-504b172762ed.jpg
published_at: 2023-12-08T12:14:13.996Z
language: Unknown
category: Unknown
- name: Experiences with Effects in OCaml
description: The multicore branch of OCaml adds support for effect handlers. In
this talk, we report our experiences with effects, both from converting existing
code, and from writing new code. Converting the Angstrom parser from a callback
style to effects gr...
embed_path: /videos/embed/74ece0a8-380f-4e2a-bef5-c6bb9092be89
thumbnail_path: /static/thumbnails/d48bf7bb-8c46-4d49-a3a6-734bf339343b.jpg
published_at: 2021-08-27T14:41:07.000Z
language: English
category: Science & Technology
- name: Experiments in Generic Programming
description: "Experiments in generic programming: runtime type representation and
implicit values, by Pierre Chambart & Gr\xE9goire Henry"
embed_path: /videos/embed/5ae26b10-9a5d-4395-89c6-a2e28e68d206
thumbnail_path: /static/thumbnails/b1e66943-a372-4909-a8f6-70470546e69d.jpg
published_at: 2021-10-03T22:40:53.446Z
language: English
category: Unknown
- name: Extending OCaml's `open`
description: 'Speaker: Runhang Li'
embed_path: /videos/embed/8d5a83f5-ad98-4f45-9259-c84194134c20
thumbnail_path: /static/thumbnails/e89d8c31-6100-4b14-97af-8bb02519dc86.jpg
published_at: 2018-01-12T00:00:00.000Z
language: English
category: Science & Technology
- name: From 2n+1 to n
description: "\r\nOCaml relies on a type-agnostic object representation centred
around values which unify odd integers and aligned pointers. The last bit of a
value distinguishes the two variants: zero indicates a pointer on the OCaml heap,
while one encodes a ta..."
embed_path: /videos/embed/74b32dae-11c6-4713-be1b-946260196e50
thumbnail_path: /static/thumbnails/a2042ab9-9025-421a-9eae-176462ac594b.jpg
published_at: 2021-08-31T08:30:23.211Z
language: English
category: Unknown
- name: Generic Programming in OCaml
description: Florent Balestrieri, Michel Mauny
embed_path: /videos/embed/0aae98b9-3d0c-427b-af09-802b671dd66e
thumbnail_path: /static/thumbnails/55fba346-262d-4925-841d-dad58e694467.jpg
published_at: 2016-10-07T00:00:00.000Z
language: English
category: Science & Technology
- name: 'Genspio: Generating Shell Phrases in OCaml'
description: 'Speaker: Sebastien Mondet'
embed_path: /videos/embed/9a7bf8cc-38c5-4f67-ab25-0ea1388100d3
thumbnail_path: /static/thumbnails/5c63a3fd-40fe-45e8-849e-6b0876ab915a.jpg
published_at: 2018-01-02T00:00:00.000Z
language: English
category: Science & Technology
- name: Github Pull Requests for OCaml development - a field report
description: "Github Pull Requests for OCaml development - a field report, by Gabriel
Scherer\r\n\r\nOn 2014/01/30, we started an experiment allowing users to submit
and discussion patches to the OCaml distribution on its Github mirror rather than
through the exist..."
embed_path: /videos/embed/f0021d24-9104-4672-a363-de5c1c514c2e
thumbnail_path: /static/thumbnails/6f0ed101-6c6f-4380-8a98-118ba6783fff.jpg
published_at: 2021-10-02T02:09:58.770Z
language: English
category: Unknown
- name: Global Semantic Analysis on OCaml programs
embed_path: /videos/embed/51e4bdf0-50f7-4b13-8514-2d62b5341066
thumbnail_path: /static/thumbnails/8255d370-e621-44bc-b7c3-6dd39fab4d1d.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: 'GopCaml: A Structural Editor for OCaml'
description: "This talk presents GopCaml-mode, the first structural editing plugin
for OCaml. We will give a tour of the main plugin features, discussing the plugin\u2019s
internal design and its integration with existing OCaml and GNU Emacs toolchains.\r\n\r\nKiran
Gop..."
embed_path: /videos/embed/e0a6e6f2-0d40-4dfc-9308-001c8e0f64d6
thumbnail_path: /static/thumbnails/729cda51-abb3-4c8d-9d0e-b922e81be518.jpg
published_at: 2021-08-27T10:12:58.000Z
language: English
category: Science & Technology
- name: High Performance Client-Side Web Programming with SPOC and Js of ocaml
description: "High Performance Client-Side Web Programming with SPOC and Js of ocaml
- by Mathias Bourgoin and Emmmanuel Chailloux (Universit\xE9 Pierre et Marie Curie)\r\n\r\nWe
present WebSpoc, an OCaml GPGPU library targeting web applications that is built
upon SPO..."
embed_path: /videos/embed/9e68174a-5c92-41f1-abdf-387a6cca7cf1
thumbnail_path: /static/thumbnails/9cdceddf-7460-4843-acdd-99bdf0315732.jpg
published_at: 2021-10-02T02:49:14.435Z
language: English
category: Unknown
- name: Highest-performance Stream Processing
description: "Highest-performance Stream Processing\r\n\r\nOleg Kiselyov (Tohoku
University, Japan)\r\nTomoaki Kobayashi (Tohoku University)\r\nAggelos Biboudis
(Oracle)\r\nNick Palladinos (Nessos Information Technologies, SA)\r\n\r\nWe present
the stream processing library ..."
embed_path: /videos/embed/c75ed758-d513-4453-af68-c50c1d9a1469
thumbnail_path: /static/thumbnails/129a91d7-e8d1-4eba-97ad-17d1f160f69a.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Homogeneous builds with OBuilder and OCaml
description: "Homogeneous builds with OBuilder and OCaml\r\n\r\nTim McGilchrist
(Tarides)\r\nDavid Allsopp (Tarides UK)\r\nPatrick Ferris (Tarides)\r\nAntonin
D\xE9cimo (Tarides)\r\nThomas Leonard (Tarides UK)\r\nAnil Madhavapeddy (University
of Cambridge, UK)\r\nKate Deplaix (Ta..."
embed_path: /videos/embed/29055525-2b0f-4f00-a0a0-26c9d4e97f9c
thumbnail_path: /static/thumbnails/50176590-0805-4125-ae46-7555c5d69474.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Implementing an interval computation library for OCaml
description: "Implementing an interval computation library for OCaml, by Jean-Marc
Alliot, Charlie Vanaret, Jean-Baptiste Gotteland, Nicolas Durand and David Gianazza.\r\n\r\nIn
this paper we present two implementation of interval arithmetics for Ocaml on
x86/amd64..."
embed_path: /videos/embed/e228951b-f544-4bd6-892a-2aca7e2065f9
thumbnail_path: /static/thumbnails/1a0f9278-1e15-45c8-b7ae-ee882f4a3360.jpg
published_at: 2021-10-03T22:21:59.398Z
language: Unknown
category: Unknown
- name: Improving Type Error Messages in OCaml
description: "Improving Type Error Messages in OCaml, by Arthur Chargu\xE9raud (INRIA
& Universit\xE9 Paris Sud)\r\n\r\nCryptic type error messages are a major obstacle
to learning OCaml. In many cases, error messages cannot be interpreted with- out
a sufficiently-precis..."
embed_path: /videos/embed/9fa54aee-6b2f-492f-abbe-51affc07ec24
thumbnail_path: /static/thumbnails/0522b690-1b00-4c83-b30a-9d7437b953f9.jpg
published_at: 2021-10-02T02:52:41.884Z
language: English
category: Unknown
- name: Improving the OCaml web stack
description: Spiridon Eliopoulos
embed_path: /videos/embed/513a2157-6844-4823-bef7-b26f3b635fbe
thumbnail_path: /static/thumbnails/4a3d2057-bb16-4bfd-bdcf-2e6ea3c0345b.jpg
published_at: 2016-10-08T00:00:00.000Z
language: English
category: Science & Technology
- name: Inline Assembly in OCaml
description: "Inline Assembly in OCaml \u2014 by Vladimir Brankov"
embed_path: /videos/embed/736857f3-99d9-46fb-9b4a-92eba42b2672
thumbnail_path: /static/thumbnails/db12715d-3333-4568-80f6-e41edc813e1b.jpg
published_at: 2021-10-02T01:45:22.792Z
language: English
category: Unknown
- name: Inline Assembly in OCaml
embed_path: /videos/embed/632f520f-8f83-4b6f-89f1-5cde088436c7
thumbnail_path: /static/thumbnails/5d2f65d1-6129-4206-832b-c3d4bab410df.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: Introduction to 0install
description: "Introduction to 0install by Thomas Leonard\r\n\r\n0install (pronounced
\u201CZero Install\u201D) is a decentralised cross-platform package manager. \u201CDecentralised\u201D
means that organisations and individuals can host their software in their own
package repositorie..."
embed_path: /videos/embed/21a21c83-a35d-4c09-b13c-8f060590c45c
thumbnail_path: /static/thumbnails/64211d01-b071-4755-a1ba-abf86f7800c8.jpg
published_at: 2021-10-02T02:54:53.718Z
language: English
category: Unknown
- name: Introduction to Eio by Thomas Leonard
description: This talk introduces the Eio library, a replacement for Lwt that uses
the new effects and multicore features in OCaml 5. It was an internal tech talk
given at Tarides, but we later decided to share it more widely.
embed_path: /videos/embed/02a7accc-2a2c-44d5-889e-d75e1489946e
thumbnail_path: /static/thumbnails/bdc3ee5c-9c6f-4f8c-8ab8-b292767777e2.jpg
published_at: 2023-03-03T09:36:03.399Z
language: English
category: Science & Technology
- name: Irmin v2
description: 'Irmin is an OCaml library for building distributed databases with
the same design principles as Git. Existing Git users will find many familiar
features: branching/merging, immutable causal history for all changes, and the
ability to restore to an...'
embed_path: /videos/embed/53e497b0-898f-4c85-8da9-39f65ef0e0b1
thumbnail_path: /static/thumbnails/138e7c05-185b-4e54-95d0-d15018905a39.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: Irminsule - a branch-consistent distributed library database
embed_path: /videos/embed/5546bb89-93a3-4407-a810-2d437479025f
thumbnail_path: /static/thumbnails/bdca687f-b58e-4167-b7d3-86daacaf4395.jpg
published_at: 2021-10-03T21:56:52.709Z
language: English
category: Unknown
- name: Ketrew and Biokepi
embed_path: /videos/embed/f3dcee35-bc04-453a-ba35-7aec90599661
thumbnail_path: /static/thumbnails/0a36e8ce-c415-4191-ad5b-6ef2eb23db4e.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: 'Learning OCaml: An Online Learning Centre for OCaml'
description: "Learn OCaml: An Online Learning Center for OCaml, by Benjamin Canou,
Gr\xE9goire Henry, \xC7agdas Bozman and Fabrice Le Fessant.\r\n\r\nWe present
Learn OCaml, a Web application that packs a set of learning activities for people
who want to learn OCaml. It ..."
embed_path: /videos/embed/ea643e64-2393-4c24-9ccf-7216e3ded2ce
thumbnail_path: /static/thumbnails/c1911047-e6b0-4673-b0ed-8716533cd601.jpg
published_at: 2021-10-09T00:16:14.033Z
language: English
category: Unknown
- name: Leveraging Formal Specifications to Generate Fuzzing Suites
description: "When testing a library, developers typically first have to capture
the semantics they want to check. They then write the code implementing these
tests and find relevant test cases that expose possible misbehaviours.\r\n\r\nIn
this work, we present a t..."
embed_path: /videos/embed/d9a36c9f-1611-42f9-8854-981b1e2d7d75
thumbnail_path: /static/thumbnails/e5d18bd4-b482-463c-80f8-35d9fbb46b23.jpg
published_at: 2021-08-27T10:40:06.000Z
language: English
category: Science & Technology
- name: LexiFi Runtime Types
description: OCaml programmers make deliberate use of abstract data types for composing
safe and reliable software systems. The OCaml compiler relies on the invariants
imposed by the type system to produce efficient and compact runtime data representations.
Be...
embed_path: /videos/embed/cc7e3242-0bef-448a-aa13-8827bba933e3
thumbnail_path: /static/thumbnails/1d43d8b4-87d1-4398-b925-10a42460b8dc.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Science & Technology
- name: LibreS3 - design, challenges, and steps toward reusable libraries
embed_path: /videos/embed/c1b00980-3a4f-4222-b539-392815f7954f
thumbnail_path: /static/thumbnails/ee8640c9-d827-498b-8e20-bed53e7481f7.jpg
published_at: 2021-10-03T21:57:39.057Z
language: English
category: Unknown
- name: Lock free programming for the masses
description: KC Sivaramakrishnan and Theo Laurent at OCaml Workshop 2016
embed_path: /videos/embed/4435adfc-e97e-42c5-8bb7-1578bd76e42b
thumbnail_path: /static/thumbnails/1dc20eb1-2898-48ff-bf3f-544c775b392e.jpg
published_at: 2016-10-07T00:00:00.000Z
language: English
category: Science & Technology
- name: 'Love: a readable language interpreted by a blockchain'
description: We present Love, a smart contract language embedded in the Dune Network
blockchain. It benefits from an OCaml-like syntax and a system-F inspired type
system. Love has been used for deploying complex services such as games, ERC20s,
atomic swaps, e...
embed_path: /videos/embed/d3b2b31e-1739-406e-8de7-d5f21bc01836
thumbnail_path: /static/thumbnails/93a6e9ac-2266-408a-81e7-1ebf239233f8.jpg
published_at: 2021-08-27T15:10:17.000Z
language: English
category: Science & Technology
- name: 'Memo: an incremental computation library that powers Dune'
description: "Memo: an incremental computation library that powers Dune\r\n\r\nAndrey
Mokhov (Jane Street)\r\nArseniy Alekseyev (Jane Street)\r\n\r\nWe present Memo,
an incremental computation library that supports a new, faster and more scalable,
file-watching build mod..."
embed_path: /videos/embed/d6a126b9-05f6-4b0f-ac6b-ad14d9bf12c9
thumbnail_path: /static/thumbnails/7594e9b6-ab48-47dd-9da7-5b42c5a4a24f.jpg
published_at: 2022-10-19T00:00:00.000Z
language: English
category: Science & Technology
- name: Multicore OCaml
description: "Multicore OCaml, by Stephen Dolan, Leo White, Anil Madhavapeddy (University
of Cambridge).\r\n\r\nCurrently, threading is supported in OCaml only by means
of a global lock, allowing at most thread to run OCaml code at any time. We present
ongo- ing wo..."
embed_path: /videos/embed/490b5363-01b6-45d8-9b7e-c883a20026a1
thumbnail_path: /static/thumbnails/07162af4-06f9-4d3c-954a-4c35dc87fd21.jpg
published_at: 2021-10-03T21:59:49.549Z
language: English
category: Unknown
- name: Multicoretests - Parallel Testing Libraries for OCaml 5.0
description: "Multicoretests - Parallel Testing Libraries for OCaml 5.0\r\n\r\nJan
Midtgaard (Tarides)\r\nOlivier Nicole (Tarides)\r\nNicolas Osborne (Tarides)\r\n\r\nParallel
and concurrent code is notoriously hard to test because of the involved non-determinism,
yet it i..."
embed_path: /videos/embed/c844f844-acc1-4a8a-944e-4d99343a89c5
thumbnail_path: /static/thumbnails/1cc87793-9cec-454a-905b-1c52a97776fd.jpg
published_at: 2022-10-20T00:00:00.000Z
language: English
category: Science & Technology
- name: New contributors to OCaml, an invited talk
description: "New Contributors talk, Invited Talk: S\xE9bastien Hinderer"
embed_path: /videos/embed/8fe8d294-ae8c-4f55-9750-c69fabfc8d34
thumbnail_path: /static/thumbnails/22f3201e-98a3-4172-863b-bca26d356a11.jpg
published_at: 2018-01-12T00:00:00.000Z
language: English
category: Science & Technology
- name: Nullable Type Inference
description: "Nullable Type Inference, by Michel Mauny and Beno\xEEt Vaugon\r\n\r\nWe
present type inference algorithms for nullable types in ML-like programming languages.
Starting with a sim- ple system, presented as an algorithm, whose only inter-
est is to introdu..."
embed_path: /videos/embed/380b1c2e-6298-49fc-88a1-c440ece29c76
thumbnail_path: /static/thumbnails/460d1b9a-8dfe-477c-b8a9-9b44f9be104d.jpg
published_at: 2021-10-03T22:00:18.779Z
language: English
category: Unknown
- name: OCaml Companion Tools
description: "OCaml Companion Tools, by Xavier Clerc.\r\n\r\nThe objective of this
talk is to present several tools that aim to ease the development of software
written with the OCaml language. These tools are particularly suited to help the
developer during the de..."
embed_path: /videos/embed/4583b254-82f9-4176-9f39-2bc0bb6a9c22
thumbnail_path: /static/thumbnails/491ac4a3-8274-4f0d-9897-d88eece06dc4.jpg
published_at: 2021-10-03T22:45:24.958Z
language: English
category: Unknown
- name: 'OCaml Under The Hood: SmartPy'
description: SmartPy is a complete system to develop smart-contracts for the Tezos
blockchain. It is an embedded EDSL in python to write contracts and their test
scenarios. It includes an online IDE, a chain explorer, and a command-line interface.
Python is us...
embed_path: /videos/embed/7446ad4d-4ae2-4e1a-bc38-af8f71e8ebd8
thumbnail_path: /static/thumbnails/e1ac5b07-3648-40c1-b62c-5e88471741dc.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: 'OCaml and Python: Getting the Best of Both Worlds'
description: In this talk we present how we expose a wide variety of OCaml libraries
and services so that they can be accessed from Python. Our initial use case on
the Python side consisted in Jupyter notebooks used to analyse various datasets,
these datasets ...
embed_path: /videos/embed/9eafdb1e-9be9-4a52-98b4-f4696eda4c18
thumbnail_path: /static/thumbnails/53db83d1-0763-4dfa-a087-cce3cad1b581.jpg
published_at: 2021-08-27T10:16:54.000Z
language: English
category: Science & Technology
- name: 'OCaml behind the scenes: Exceptions'
description: "In this talk, Fabrice Buoro explained what happens at the deepest
level when your OCaml program raises or catches an exception. This inside knowledge
will lead to a number of takeaways for best performance.\r\n\r\nSlides and sources
can be found at ht..."
embed_path: /videos/embed/eed144f1-23c7-4c78-a34e-850dd57225cc
thumbnail_path: /static/thumbnails/754cfd8c-e24e-41d3-a73a-7151f70c58d1.jpg
published_at: 2022-11-18T10:00:51.000Z
language: English
category: Science & Technology
- name: 'OCaml inside: a drop in replacement for libtls'
description: "Enguerrand Decorne, Jeremy Yallop, David Kaloper Mer\u0161injak"
embed_path: /videos/embed/68a11315-f7ca-4c0e-a043-98008694671d
thumbnail_path: /static/thumbnails/ce1396e3-29f7-4419-8817-fd3d1d6eadc4.jpg
published_at: 2016-10-07T00:00:00.000Z
language: English
category: Science & Technology
- name: OCaml on Windows in 2017
description: 'OCaml on Windows, Invited Talk: David Allsopp'
embed_path: /videos/embed/efbfd4c3-8e73-464b-a14c-c8de9f58a984
thumbnail_path: /static/thumbnails/102d80ec-67b4-41a5-9905-70d63a68b4ad.jpg
published_at: 2018-01-12T00:00:00.000Z
language: English
category: Science & Technology
- name: 'OCaml-CI : A Zero-Configuration CI'
description: "OCaml-CI\n\nis a CI service for OCaml projects. It\nuses metadata
from the project\u2019s opam and dune\nfiles to work out what to build, and uses
caching\nto make builds fast. It automatically tests projects\nagainst multiple
OCaml versions and OS platforms..."
embed_path: /videos/embed/0fee79e8-715a-400b-bfcc-34c3610f4890
thumbnail_path: /static/thumbnails/596f39a9-8654-4922-8bec-6e7ac5dcc319.jpg
published_at: 2020-08-28T00:00:00.000Z
language: English
category: Unknown
- name: 'OCaml-CI : A Zero-Configuration CI'
description: "OCaml-CI1 is a CI service for OCaml projects. It uses metadata from
the project\u2019s opam and dune files to work out what to build, and uses caching
to make builds fast. It automatically tests projects against multiple OCaml versions
and OS platforms..."
embed_path: /videos/embed/da88d6ac-7ba1-4261-9308-d03fe21e35b9
thumbnail_path: /static/thumbnails/1c22a14e-f067-4d4e-8e26-027cc6d8a491.jpg
published_at: 2020-08-28T00:00:00.000Z
language: English
category: Science & Technology
- name: OCamlCC - raising low-level byte code to high-level C
description: "OCamlCC - raising low-level byte code to high-level C, by Michel Mauny
Beno\xEEt Vaugon\r\n\r\nWe present preliminary results about OCamlCC, a compiler
producing native code from OCaml bytecode executables, through the generation
of C code.\r\n"
embed_path: /videos/embed/c31ec9fa-7c65-46f5-bbc9-77c6ac87bf0b
thumbnail_path: /static/thumbnails/d1a815bb-e8ed-4d99-808a-a78d1f512712.jpg
published_at: 2021-10-03T22:17:09.763Z
language: English
category: Unknown
- name: OCamlOScope - a New OCaml API Search
description: '[OCamlOScope](http://ocamloscope.herokuapp.com) is a new search engine
for OCaml programming. Tons of OCaml library packages, modules, types, constructors,
functions and values can be searched via simple string queries.'
embed_path: /videos/embed/c3e3cf25-0fa7-46ad-b0bf-f313bad7142d
thumbnail_path: /static/thumbnails/486bbc91-0e44-4024-99e1-61326e1c95af.jpg
published_at: 2021-10-03T22:01:54.239Z
language: English
category: Unknown
- name: OCamlPro - promoting OCaml use in industry
description: OCamlPro exists with the mission of promoting the successful use of
OCaml in industry. OCamlPro builds a professional environment for the development
of OCaml applications, including IDE integration, development tools and services.
These include t...
embed_path: /videos/embed/dbf5a276-460c-45f4-b488-924cec7db3aa
thumbnail_path: /static/thumbnails/b00f092f-2b96-4623-b55b-ed5e505f4d76.jpg
published_at: 2021-10-03T22:34:20.640Z
language: English
category: Unknown
- name: OPAM - an OCaml Package Manager
description: OPAM - an OCaml Package Manager, by Thomas Gazagnaire.
embed_path: /videos/embed/3ff87a10-3785-41e6-ba47-acab21fcfa8a
thumbnail_path: /static/thumbnails/c4083614-edd9-445f-85a4-e2ae470c761e.jpg
published_at: 2021-10-03T22:42:00.207Z
language: English
category: Unknown
- name: "Ocsigen: Developing Web and mobile applications in OCaml \u2013 J\xE9r\xF4me
Vouillon & Vincent Balat"
description: This presentation gives an overview of the Ocsigen framework, which
is used in particular to develop the Be Sport social network. Ocsigen is a set
a tools to develop Web sites and applications. Amongst other things, it contains
js_of_ocaml, a comp...
embed_path: /videos/embed/c9237937-9145-443c-9a78-d3ab20d2c932
thumbnail_path: /static/thumbnails/2dd76a3b-cfca-4ad5-b1fd-d2c60d9588b7.jpg
published_at: 2024-01-23T10:29:15.683Z
language: English
category: Science & Technology
- name: Ocsigen_Eliom - the state-of-the-art and the prospects
description: 'Ocsigen/Eliom: The state of the art, and the prospects, by Benedikt
Becker and Vincent Balat'
embed_path: /videos/embed/d010b30f-61d5-4d70-b10a-518a7a6e1e3f
thumbnail_path: /static/thumbnails/7b044637-259c-4b30-875b-4c4563ce23aa.jpg
published_at: 2021-10-03T22:15:47.662Z
language: English
category: Unknown
- name: 'Opam-bin: Binary Packages with Opam'
description: In this talk, we will present opam-bin, an Opam plugin that builds
Binary Opam packages on the fly, to speed-up reinstallation of pack- ages. opam-bin
also creates Opam Repositories for these binary pack- ages, to make them easy
to share with othe...
embed_path: /videos/embed/a889e4d3-0508-4734-b667-7060b0a253cd
thumbnail_path: /static/thumbnails/b2325a24-f068-473b-961e-a0b783ae5c39.jpg
published_at: 2021-08-27T15:01:40.000Z
language: English
category: Science & Technology
- name: Operf - Benchmarking the OCaml Compiler
description: "Operf: Benchmarking the OCaml Compiler \u2014 by Pierre Chambart,
Fabrice Le Fessant, Vincent Bernardoff"
embed_path: /videos/embed/eb229518-1108-46bd-b8b2-3ce8b886c96f
thumbnail_path: /static/thumbnails/6f55ff79-72d5-4492-b824-8464783f31c2.jpg
published_at: 2021-09-11T02:11:32.589Z
language: English
category: Unknown
- name: 'Operf: Benchmarking the OCaml Compiler'
embed_path: /videos/embed/5a4a6c12-3cb1-40d2-a663-25f294e12555
thumbnail_path: /static/thumbnails/c2b5c90a-9c9e-4058-94a1-15525795a01a.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: Outreachy Presentations for the December 2021 Round
description: The OCaml community participated in the December 2021 round of [Outreachy](https://www.outreachy.org/)
internships. Three interns worked on a range of projects including OCaml's pre-processor
ecosystem (PPX), a metrics system for the new ocaml.org...
embed_path: /videos/embed/70610574-f213-4368-b4ae-8f7d44094883
thumbnail_path: /static/thumbnails/c4712995-fb5d-4cbc-884e-88cd025772f6.jpg
published_at: 2023-03-07T16:12:57.251Z
language: English
category: Science & Technology
- name: Outreachy Presentations for the December 2022 Round
description: "The OCaml community participated in the December 2022 round of [Outreachy](https://www.outreachy.org/)
internships. We had one intern work on a TopoJSON parsing library.\r\n\r\nThis
meeting was an opportunity for the interns to present their work and ..."
embed_path: /videos/embed/c1151157-94fa-4fac-8ef1-c6b6ce349970
thumbnail_path: /static/thumbnails/bc2ce81f-16c2-42c2-bb2c-7d44f36296bb.jpg
published_at: 2023-03-07T16:04:16.313Z
language: English
category: Science & Technology
- name: Outreachy Presentations for the May 2022 Round
description: "The OCaml community participated in the May 2022 round of [Outreachy](https://www.outreachy.org/)
internships. Two interns worked on a range of projects including Multicore OCaml
benchmarks and TopoJSON parsing libraries.\r\n\r\nThis meeting was an op..."
embed_path: /videos/embed/f2a11bb2-a28f-4e59-a5de-4f5055fb90c1
thumbnail_path: /static/thumbnails/89cf6dcb-72dc-4f09-ac70-8a814b808f7b.jpg
published_at: 2023-03-07T16:05:33.751Z
language: English
category: Science & Technology
- name: Outreachy Presentations for the May 2023 Round
description: 'The OCaml community participated in the May 2023 round of Outreachy
internships. Three interns worked on a range of projects including: MIDI over
ethernet, persistent storage in MirageOS and improving error reporting in existing
ppxlib-based ppxs....'
embed_path: /videos/embed/a10f4f85-d176-4f69-9ca9-1651c9262a74
thumbnail_path: /static/thumbnails/6fc5ecb9-611c-4e2c-b362-de67eb0d89b1.jpg
published_at: 2023-09-18T13:15:08.648Z
language: English
category: Unknown
- name: 'Owl: A General-Purpose Numerical Library in OCaml'
description: 'Speaker: Liang Wang'
embed_path: /videos/embed/d258fa91-ddb6-40d8-96de-e9ac97e8c899
thumbnail_path: /static/thumbnails/70430102-7697-48eb-85e0-9d76fb712a94.jpg
published_at: 2018-01-12T00:00:00.000Z
language: English
category: Science & Technology
- name: 'Parafuzz: Coverage-guided Property Fuzzing for Multicore OCaml programs'
description: "We develop ParaFuzz, an input and concurrency fuzzing tool for Multicore
OCaml programs. ParaFuzz builds on top of Crowbar which combines AFL-based grey
box fuzzing with QuickCheck and extends it to handle parallelism.\r\n\r\nSumit
Padhiyar\r\nIndian In..."
embed_path: /videos/embed/c0d591e0-91c9-4eaa-a4d7-c4f514de0a57
thumbnail_path: /static/thumbnails/b1a67c0a-2eb9-4c9d-97ce-b4dc039da59b.jpg
published_at: 2021-08-27T10:36:13.000Z
language: English
category: Science & Technology
- name: Parallelising your OCaml Code with Multicore OCaml
description: 'Slides, speaker notes and runnable examples mentioned in this talk
are available at: https://github.com/ocaml-multicore/ocaml2020-workshop-parallel
With the availability of multicore variants of the recent OCaml versions (4.10
and 4.11) that main...'
embed_path: /videos/embed/ce20839e-4bfc-4d74-925b-485a6b052ddf
thumbnail_path: /static/thumbnails/30bc6019-ecab-40e5-a7b6-c294ac9a7344.jpg
published_at: 2020-08-28T00:00:00.000Z
language: Unknown
category: Unknown
- name: Persistent Networking with Irmin and MirageOS
embed_path: /videos/embed/97dd9634-28e4-4066-96e4-9c2036ee4bb2
thumbnail_path: /static/thumbnails/46ba8c5d-0f4a-427e-8e76-0c58cb0e70a7.jpg
published_at: 2015-09-18T00:00:00.000Z
language: English
category: Science & Technology
- name: Presenting Core
description: "Presenting Core, by Yaron Minsky\r\n\r\nCore is Jane Street's alternative
to the OCaml standard library. The need for\r\nan alternative to the standard
library is clear: OCaml's standard library is\r\nwell implemented, but it's narrow
in scope, and somewh..."
embed_path: /videos/embed/3159e115-948e-4f67-9d45-403bef003c35
thumbnail_path: /static/thumbnails/61fe2572-358b-4110-9748-485a2e3ceffa.jpg
published_at: 2021-10-03T23:08:42.826Z
language: English
category: Unknown
- name: Probabilistic resource limits using StatMemprof
description: The goal of this talk is two-fold. First, we present memprof-limits,
a probabilistic implementation of per-thread global memory limits, and per-thread
allocation limits, for OCaml 4.12. Then, we will discuss the reasoning about programs
in the pre...
embed_path: /videos/embed/bc297e85-82dd-4baf-8556-4a3a934978f9
thumbnail_path: /static/thumbnails/9b4dc06e-1d07-45b8-a21a-1e4f39897fef.jpg
published_at: 2021-08-27T11:08:12.000Z
language: English
category: Science & Technology
- name: Programming the Xen cloud using OCaml
description: "Programming the Xen cloud using OCaml by David Scott, Anil Madhavapeddy
and Richard Mortier.\r\n\r\nThe Xen Cloud Platform (XCP)1 is an open-source software
distribution that converts clusters of physical computers into many virtual machines,
all isol..."
embed_path: /videos/embed/360f8fe3-3268-44da-a0c4-b37c26aa7e36
thumbnail_path: /static/thumbnails/90298af3-37a4-4420-9e3c-b30cb1369559.jpg
published_at: 2021-10-03T22:29:04.690Z
language: English
category: Unknown
- name: Property-Based Testing for OCaml through Coq
description: We will present a property-based testing framework for OCaml that leverages
the power of QuickChick, a popular and mature testing plugin for the Coq proof
assistant, by automatically constructing a extraction-based shim between OCaml
and Coq. That...
embed_path: /videos/embed/9324fba4-2482-4bab-bfdd-b8881b3ed94a
thumbnail_path: /static/thumbnails/d7e22bba-cda1-4c2b-9368-9b2c1643e751.jpg
published_at: 2021-08-31T08:37:00.571Z
language: English
category: Unknown
- name: 'R&B: Towards bringing functional programming to everyday''s web programmer'
description: 'Speaker: Hongbo Zhang'
embed_path: /videos/embed/af37368d-085d-431d-923f-cd1d81dfdbe9
thumbnail_path: /static/thumbnails/fd4bd408-ae52-4dee-aedf-5aab29c35179.jpg
published_at: 2018-11-26T00:00:00.000Z
language: English
category: Science & Technology
- name: Real-world debugging in OCaml
description: Real-world debugging in OCaml, by Mark Shinwell
embed_path: /videos/embed/a8f4cf6b-9971-484b-ab5b-34a16fde1185
thumbnail_path: /static/thumbnails/ea912a23-6e8b-40ec-ac45-81af2d01617a.jpg
published_at: 2021-10-03T22:35:41.668Z
language: English
category: Unknown
- name: 'Relit: Implementing Typed Literal Macros in Reason'
description: 'Speaker: Charles Chamberlain'
embed_path: /videos/embed/f75acae0-c24d-4d19-958e-0c76ff51603f
thumbnail_path: /static/thumbnails/5ef79cb1-000b-425f-8a42-4e1f67219636.jpg
published_at: 2018-11-26T00:00:00.000Z
language: English
category: Science & Technology
- name: Safe Protocol Updates via Propositional Logic
description: "If values of a given type are stored on disk, or are sent between
different executables, then changing that type or its serialization can result
in versioning issues.\r\nOften such issues are resolved by either making the deserializer
more permissiv..."
embed_path: /videos/embed/c6176f51-0277-46f0-937b-1e2721044492
thumbnail_path: /static/thumbnails/a89a3483-274a-44f1-9a38-c679f6b12196.jpg
published_at: 2021-08-31T08:34:54.707Z
language: English
category: Unknown
- name: Semantics for the Lambda intermediate language
description: Pierre Chambart
embed_path: /videos/embed/90d9b62f-f9d6-4dd5-a7fc-f584e45ef0b7
thumbnail_path: /static/thumbnails/22e1eac2-83d4-4af4-a5c2-0852afbee4eb.jpg
published_at: 2016-10-07T00:00:00.000Z
language: English
category: Science & Technology
- name: 'Semgrep : a fast, lightweight, polyglot static analysis tool to find bugs'
description: "Semgrep, which stands for \u201Csemantic grep,\u201D is a fast, lightweight,
polyglot, open source static analysis tool to find bugs and enforce code standards.
It is used internally by many companies including Dropbox and Snowflake. Semgrep
is also now use..."
embed_path: /videos/embed/c0d07213-1426-46a1-98e0-0b0c4515c841
thumbnail_path: /static/thumbnails/2ab3961f-4e66-4ec9-b20e-72e25dfbebe4.jpg
published_at: 2021-08-31T08:41:15.492Z
language: English
category: Unknown
- name: Simple, efficient, sound-and-complete combinator parsing
description: This proposal describes a parsing library that is based on current
work due to be published as Simple, efficient, sound and complete combinator parsing
for all context-free grammars, using an oracle.
embed_path: /videos/embed/7a0a6d3c-dad0-4fe8-9c35-78cbfbd431d9
thumbnail_path: /static/thumbnails/fbc3103b-30f2-45d9-85ce-95732b8e7f74.jpg