-
Notifications
You must be signed in to change notification settings - Fork 329
/
video-watch.yml
1884 lines (1843 loc) · 99.3 KB
/
video-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
- title: '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.
url: https://watch.ocaml.org/videos/watch/e1ee0fc0-50ef-4a1c-894a-17df181424cb
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/94ead657-79a0-4c10-8435-9e13906a6c44.jpg
published: 2021-08-27T13:23:10.199Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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,..."
url: https://watch.ocaml.org/videos/watch/744d4a0b-a44c-4040-853c-6be5223ec43b
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/3973b521-c198-4a18-93a1-7190f8f811da.jpg
published: 2021-10-02T02:02:32.873Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/a5b86864-8e43-4138-b6d6-ed48d2d4b63d
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/92c0a0e3-5326-42aa-86a3-6adb3927e111.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/9bb452d6-1829-4dac-a6a2-46b31050c931
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/6a0a8291-4626-4820-8071-904b3c508345.jpg
published: 2021-08-27T11:23:36.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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 ..."
url: https://watch.ocaml.org/videos/watch/ded6e8bb-aebd-4fd2-989f-3f0b2b8efaf3
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/cb3f10b6-c34c-4b7e-af35-a056675d8ccd.jpg
published: 2021-10-02T02:04:48.044Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/08b429ea-2eb8-427d-a625-5495f4ee0fef
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/316ddad9-dbc3-4d46-9f43-5da72689e93b.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: A review of the growth of the OCaml community
description: ""
url: https://watch.ocaml.org/videos/watch/f9d0b637-8aec-4bff-8c32-cd16b58023b6
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/e573402b-1350-4aa7-a9ba-0e1c51198fb4.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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...
url: https://watch.ocaml.org/videos/watch/c9e85690-732f-4b03-836f-2ee0fd8f0658
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/eb972fd2-668e-4998-a798-e9fbdcadba20.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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 ...
url: https://watch.ocaml.org/videos/watch/c46b925b-bd77-404f-ac5d-5dab65047529
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/eef64419-3c34-4c15-9419-edcbc455e54d.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/629b89a8-bbd5-490d-98b0-d0c740912b02
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/41212c84-36d6-44fa-b884-2ced79505929.jpg
published: 2021-08-27T10:18:38.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/3ede0b76-e250-4a43-af42-83c394cf4497
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/4dfc2ff3-3c53-4e7c-85ed-907df5b1faff.jpg
published: 2021-10-03T22:23:18.701Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/5309b701-9def-47a4-8240-8a5b17a70b5a
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/5bbbdabf-622b-4496-8d43-7c2515300678.jpg
published: 2021-10-03T22:38:56.202Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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)."
url: https://watch.ocaml.org/videos/watch/8f50211a-1210-4849-a940-ea6e0bd1e022
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/6850a57a-15c1-4f8c-8cdb-b0a818f0bcc4.jpg
published: 2021-10-03T22:25:11.006Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Automatic analysis of industrial robot programs
description: "Automatic analysis of industrial robot programs, by Markus Wei\xDFmann"
url: https://watch.ocaml.org/videos/watch/3cebba55-4032-4de5-93b5-8f3f67c04736
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/480b953a-f17e-498c-9822-c82828ca9c0c.jpg
published: 2021-10-03T22:38:09.817Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/8dc2d8d3-c140-4c3d-a8fe-a6fcf6fba988
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/390cd7dd-4578-4162-bae0-6c218cb5ebde.jpg
published: 2021-08-31T08:39:55.774Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/69755b27-85b1-4df4-9f01-b771cd15353a
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/ae5c8a14-6780-4384-b67c-399f9f233f9b.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/f9ce30b3-8143-4516-85f1-07c28f6337b2
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/102b2860-a3eb-4afb-adfc-16ee06418028.jpg
published: 2021-10-03T22:15:01.407Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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 ..."
url: https://watch.ocaml.org/videos/watch/63a8694b-8911-41cc-8754-4c1cad186d3d
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1d3f35e6-e0aa-4bcf-aa38-39e1d14913ab.jpg
published: 2021-10-20T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/f3aa87e9-67a1-4569-b154-67d2d185152b
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/0d38e0d5-453a-42ca-b4f9-54d0998622e3.jpg
published: 2021-09-07T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/11ab3cbe-38b8-411c-a7aa-994c00f472d8
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/ab863370-0e79-417e-b21e-307fbfe9dbd8.jpg
published: 2021-09-24T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/7321d6e6-6573-4c93-9a21-61f2541be4ec
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/d6063608-535c-4a64-bdd7-d9691f2644fa.jpg
published: 2021-11-24T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/2f73650f-79f5-44d6-87c1-ced0517c09da
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/475dc63d-9a4a-4f3e-beff-e443c1db24cd.jpg
published: 2022-05-27T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/4bddb539-5034-4fe2-b2a9-175260262aac
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/3dbdfa88-e33a-4f16-ab6b-52846ad300b9.jpg
published: 2022-03-31T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/f84b4f70-86ca-4918-b6cd-4770051728ba
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/9ed5a603-432b-4323-977c-8c8414aa43ca.jpg
published: 2021-12-02T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/08ea09a1-e645-47cb-80c4-499dd4d93ac8
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/a3feaba9-56eb-4aa2-aad4-99a3ed77dfc1.jpg
published: 2022-10-20T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Conex -- establishing trust into data repositories
description: Hannes Mehnert, Louis Gesbert at OCaml Workshop 2016
url: https://watch.ocaml.org/videos/watch/70fbf7db-28dc-4798-b068-460b5d93df4e
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/a22ae328-d483-433f-a388-42de0cb29e00.jpg
published: 2016-10-11T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/1c994370-1aaa-4db6-b901-d762786e4904
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/33ab36c3-3650-4c13-9fea-9b5907cf8c0f.jpg
published: 2021-08-27T11:20:09.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/299cab02-db94-44ac-b926-ea90ddda1b09
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/fdad6056-bd71-4401-9391-5cb5b4bfa06e.jpg
published: 2022-09-16T11:07:11.073Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: "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..."
url: https://watch.ocaml.org/videos/watch/8c1c3fda-0106-4c7d-a794-33da7e758fee
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/485ae080-f057-4f0d-be1e-c88ad2a22ab7.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/fc7201df-ec27-4735-a51d-d3170d390346
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/f355df78-a634-408c-952e-73312d8b92e3.jpg
published: 2021-10-02T02:06:52.778Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Core Time stamp counter - A fast high resolution time source
description: ""
url: https://watch.ocaml.org/videos/watch/b6c7860d-e6eb-4404-96c3-917b81ee1f98
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/f4d75771-8394-438f-b8eb-86baff8863d6.jpg
published: 2021-09-11T02:42:33.957Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 'Core Time stamp counter: A fast high resolution time source'
description: ""
url: https://watch.ocaml.org/videos/watch/75b4d60f-3e37-40bd-b025-f39dcce0c42c
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/43248673-6478-4e96-b8ac-cd415d85569b.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Debugging Native OCaml with Breakpoints and Stepping
description: ""
url: https://watch.ocaml.org/videos/watch/59d2cdd9-3d1e-4a6a-ae0e-ab9ee2882dd3
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/723ee60d-2829-462f-b79d-d5174722430c.jpg
published: 2023-07-07T17:18:45.492Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/92309d92-8cbf-4545-980c-209c96e42a79
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/db29d3bf-784c-47f1-bf90-f13fd2a9d530.jpg
published: 2021-08-27T10:33:38.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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 '
url: https://watch.ocaml.org/videos/watch/06e1d349-d082-4836-ab39-fb26d0898aae
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/9c7c43b9-de1a-440b-a7be-8298ae5f25e2.jpg
published: 2023-09-20T11:27:06.813Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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:..."
url: https://watch.ocaml.org/videos/watch/6162e7b7-f2dd-47e6-8133-c4126ce1b508
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/4a50eb98-ab79-4a57-87d9-a55a91654301.jpg
published: 2023-11-16T22:18:27.526Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/db6ed2c4-e940-4d5f-82ee-d3d20eb4ceb7
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/43a418d6-56ec-48f4-852b-0a18ec0789aa.jpg
published: 2021-08-27T12:09:56.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Documenting OCaml
description: 'Documenting OCaml, (Invited Talk: Florian Angeletti)'
url: https://watch.ocaml.org/videos/watch/9f9ea4a5-4d6a-4da5-9080-833b25c26511
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/29f8a1a6-3728-4b27-9cd4-889c70ad1a7d.jpg
published: 2018-01-12T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: DragonKit - an extensible language oriented compiler
description: DragonKit - an extensible language oriented compiler, by Wojciech Meyer
url: https://watch.ocaml.org/videos/watch/8326a03e-02d5-4b32-8789-b7a76c30cf95
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/b9c74825-d374-4afb-9c5f-82cab13c1bb8.jpg
published: 2021-10-03T22:44:22.886Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Effective Concurrency through Algebraic Effects
description: ""
url: https://watch.ocaml.org/videos/watch/e9f6c837-1435-4349-af0f-07d22d1c11ea
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1de58bd2-d2f9-428c-8b8c-97b48d6d2c7e.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: "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..."
url: https://watch.ocaml.org/videos/watch/0aa64600-b142-4c11-964d-dab8d509d08f
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/f6850c67-39bc-45b4-bf00-8e6238baa413.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/556c8f75-b456-43a3-b9cb-97ae35b82072
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/f03f27d0-ca66-40b3-938d-65230885cd85.jpg
published: 2021-10-02T02:09:19.827Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/4d2578c2-20bf-4cd7-9256-b0eb49716009
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/669c9550-883a-4610-8450-504b172762ed.jpg
published: 2023-12-08T12:14:13.996Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/74ece0a8-380f-4e2a-bef5-c6bb9092be89
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/d48bf7bb-8c46-4d49-a3a6-734bf339343b.jpg
published: 2021-08-27T14:41:07.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Experiments in Generic Programming
description: "Experiments in generic programming: runtime type representation and
implicit values, by Pierre Chambart & Gr\xE9goire Henry"
url: https://watch.ocaml.org/videos/watch/5ae26b10-9a5d-4395-89c6-a2e28e68d206
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/b1e66943-a372-4909-a8f6-70470546e69d.jpg
published: 2021-10-03T22:40:53.446Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Extending OCaml's `open`
description: 'Speaker: Runhang Li'
url: https://watch.ocaml.org/videos/watch/8d5a83f5-ad98-4f45-9259-c84194134c20
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/e89d8c31-6100-4b14-97af-8bb02519dc86.jpg
published: 2018-01-12T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/74b32dae-11c6-4713-be1b-946260196e50
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/a2042ab9-9025-421a-9eae-176462ac594b.jpg
published: 2021-08-31T08:30:23.211Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Generic Programming in OCaml
description: Florent Balestrieri, Michel Mauny
url: https://watch.ocaml.org/videos/watch/0aae98b9-3d0c-427b-af09-802b671dd66e
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/55fba346-262d-4925-841d-dad58e694467.jpg
published: 2016-10-07T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 'Genspio: Generating Shell Phrases in OCaml'
description: 'Speaker: Sebastien Mondet'
url: https://watch.ocaml.org/videos/watch/9a7bf8cc-38c5-4f67-ab25-0ea1388100d3
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/5c63a3fd-40fe-45e8-849e-6b0876ab915a.jpg
published: 2018-01-02T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/f0021d24-9104-4672-a363-de5c1c514c2e
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/6f0ed101-6c6f-4380-8a98-118ba6783fff.jpg
published: 2021-10-02T02:09:58.770Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Global Semantic Analysis on OCaml programs
description: ""
url: https://watch.ocaml.org/videos/watch/51e4bdf0-50f7-4b13-8514-2d62b5341066
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/8255d370-e621-44bc-b7c3-6dd39fab4d1d.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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..."
url: https://watch.ocaml.org/videos/watch/e0a6e6f2-0d40-4dfc-9308-001c8e0f64d6
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/729cda51-abb3-4c8d-9d0e-b922e81be518.jpg
published: 2021-08-27T10:12:58.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/9e68174a-5c92-41f1-abdf-387a6cca7cf1
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/9cdceddf-7460-4843-acdd-99bdf0315732.jpg
published: 2021-10-02T02:49:14.435Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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 ..."
url: https://watch.ocaml.org/videos/watch/c75ed758-d513-4453-af68-c50c1d9a1469
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/129a91d7-e8d1-4eba-97ad-17d1f160f69a.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/29055525-2b0f-4f00-a0a0-26c9d4e97f9c
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/50176590-0805-4125-ae46-7555c5d69474.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/e228951b-f544-4bd6-892a-2aca7e2065f9
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1a0f9278-1e15-45c8-b7ae-ee882f4a3360.jpg
published: 2021-10-03T22:21:59.398Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/9fa54aee-6b2f-492f-abbe-51affc07ec24
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/0522b690-1b00-4c83-b30a-9d7437b953f9.jpg
published: 2021-10-02T02:52:41.884Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Improving the OCaml web stack
description: Spiridon Eliopoulos
url: https://watch.ocaml.org/videos/watch/513a2157-6844-4823-bef7-b26f3b635fbe
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/4a3d2057-bb16-4bfd-bdcf-2e6ea3c0345b.jpg
published: 2016-10-08T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Inline Assembly in OCaml
description: "Inline Assembly in OCaml \u2014 by Vladimir Brankov"
url: https://watch.ocaml.org/videos/watch/736857f3-99d9-46fb-9b4a-92eba42b2672
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/db12715d-3333-4568-80f6-e41edc813e1b.jpg
published: 2021-10-02T01:45:22.792Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Inline Assembly in OCaml
description: ""
url: https://watch.ocaml.org/videos/watch/632f520f-8f83-4b6f-89f1-5cde088436c7
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/5d2f65d1-6129-4206-832b-c3d4bab410df.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/21a21c83-a35d-4c09-b13c-8f060590c45c
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/64211d01-b071-4755-a1ba-abf86f7800c8.jpg
published: 2021-10-02T02:54:53.718Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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.
url: https://watch.ocaml.org/videos/watch/02a7accc-2a2c-44d5-889e-d75e1489946e
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/bdc3ee5c-9c6f-4f8c-8ab8-b292767777e2.jpg
published: 2023-03-03T09:36:03.399Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...'
url: https://watch.ocaml.org/videos/watch/53e497b0-898f-4c85-8da9-39f65ef0e0b1
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/138e7c05-185b-4e54-95d0-d15018905a39.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Irminsule - a branch-consistent distributed library database
description: ""
url: https://watch.ocaml.org/videos/watch/5546bb89-93a3-4407-a810-2d437479025f
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/bdca687f-b58e-4167-b7d3-86daacaf4395.jpg
published: 2021-10-03T21:56:52.709Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Ketrew and Biokepi
description: ""
url: https://watch.ocaml.org/videos/watch/f3dcee35-bc04-453a-ba35-7aec90599661
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/0a36e8ce-c415-4191-ad5b-6ef2eb23db4e.jpg
published: 2015-09-18T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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 ..."
url: https://watch.ocaml.org/videos/watch/ea643e64-2393-4c24-9ccf-7216e3ded2ce
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/c1911047-e6b0-4673-b0ed-8716533cd601.jpg
published: 2021-10-09T00:16:14.033Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/d9a36c9f-1611-42f9-8854-981b1e2d7d75
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/e5d18bd4-b482-463c-80f8-35d9fbb46b23.jpg
published: 2021-08-27T10:40:06.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/cc7e3242-0bef-448a-aa13-8827bba933e3
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1d43d8b4-87d1-4398-b925-10a42460b8dc.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: LibreS3 - design, challenges, and steps toward reusable libraries
description: ""
url: https://watch.ocaml.org/videos/watch/c1b00980-3a4f-4222-b539-392815f7954f
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/ee8640c9-d827-498b-8e20-bed53e7481f7.jpg
published: 2021-10-03T21:57:39.057Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: Lock free programming for the masses
description: KC Sivaramakrishnan and Theo Laurent at OCaml Workshop 2016
url: https://watch.ocaml.org/videos/watch/4435adfc-e97e-42c5-8bb7-1578bd76e42b
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1dc20eb1-2898-48ff-bf3f-544c775b392e.jpg
published: 2016-10-07T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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...
url: https://watch.ocaml.org/videos/watch/d3b2b31e-1739-406e-8de7-d5f21bc01836
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/93a6e9ac-2266-408a-81e7-1ebf239233f8.jpg
published: 2021-08-27T15:10:17.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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..."
url: https://watch.ocaml.org/videos/watch/d6a126b9-05f6-4b0f-ac6b-ad14d9bf12c9
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/7594e9b6-ab48-47dd-9da7-5b42c5a4a24f.jpg
published: 2022-10-19T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/490b5363-01b6-45d8-9b7e-c883a20026a1
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/07162af4-06f9-4d3c-954a-4c35dc87fd21.jpg
published: 2021-10-03T21:59:49.549Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/c844f844-acc1-4a8a-944e-4d99343a89c5
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1cc87793-9cec-454a-905b-1c52a97776fd.jpg
published: 2022-10-20T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: New contributors to OCaml, an invited talk
description: "New Contributors talk, Invited Talk: S\xE9bastien Hinderer"
url: https://watch.ocaml.org/videos/watch/8fe8d294-ae8c-4f55-9750-c69fabfc8d34
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/22f3201e-98a3-4172-863b-bca26d356a11.jpg
published: 2018-01-12T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/380b1c2e-6298-49fc-88a1-c440ece29c76
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/460d1b9a-8dfe-477c-b8a9-9b44f9be104d.jpg
published: 2021-10-03T22:00:18.779Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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..."
url: https://watch.ocaml.org/videos/watch/4583b254-82f9-4176-9f39-2bc0bb6a9c22
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/491ac4a3-8274-4f0d-9897-d88eece06dc4.jpg
published: 2021-10-03T22:45:24.958Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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...
url: https://watch.ocaml.org/videos/watch/7446ad4d-4ae2-4e1a-bc38-af8f71e8ebd8
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/e1ac5b07-3648-40c1-b62c-5e88471741dc.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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 ...
url: https://watch.ocaml.org/videos/watch/9eafdb1e-9be9-4a52-98b4-f4696eda4c18
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/53db83d1-0763-4dfa-a087-cce3cad1b581.jpg
published: 2021-08-27T10:16:54.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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..."
url: https://watch.ocaml.org/videos/watch/eed144f1-23c7-4c78-a34e-850dd57225cc
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/754cfd8c-e24e-41d3-a73a-7151f70c58d1.jpg
published: 2022-11-18T10:00:51.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 'OCaml inside: a drop in replacement for libtls'
description: "Enguerrand Decorne, Jeremy Yallop, David Kaloper Mer\u0161injak"
url: https://watch.ocaml.org/videos/watch/68a11315-f7ca-4c0e-a043-98008694671d
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/ce1396e3-29f7-4419-8817-fd3d1d6eadc4.jpg
published: 2016-10-07T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: OCaml on Windows in 2017
description: 'OCaml on Windows, Invited Talk: David Allsopp'
url: https://watch.ocaml.org/videos/watch/efbfd4c3-8e73-464b-a14c-c8de9f58a984
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/102d80ec-67b4-41a5-9905-70d63a68b4ad.jpg
published: 2018-01-12T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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..."
url: https://watch.ocaml.org/videos/watch/0fee79e8-715a-400b-bfcc-34c3610f4890
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/596f39a9-8654-4922-8bec-6e7ac5dcc319.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: '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..."
url: https://watch.ocaml.org/videos/watch/da88d6ac-7ba1-4261-9308-d03fe21e35b9
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/1c22a14e-f067-4d4e-8e26-027cc6d8a491.jpg
published: 2020-08-28T00:00:00.000Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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"
url: https://watch.ocaml.org/videos/watch/c31ec9fa-7c65-46f5-bbc9-77c6ac87bf0b
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/d1a815bb-e8ed-4d99-808a-a78d1f512712.jpg
published: 2021-10-03T22:17:09.763Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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.'
url: https://watch.ocaml.org/videos/watch/c3e3cf25-0fa7-46ad-b0bf-f313bad7142d
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/486bbc91-0e44-4024-99e1-61326e1c95af.jpg
published: 2021-10-03T22:01:54.239Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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...
url: https://watch.ocaml.org/videos/watch/dbf5a276-460c-45f4-b488-924cec7db3aa
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/b00f092f-2b96-4623-b55b-ed5e505f4d76.jpg
published: 2021-10-03T22:34:20.640Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: OPAM - an OCaml Package Manager
description: OPAM - an OCaml Package Manager, by Thomas Gazagnaire.
url: https://watch.ocaml.org/videos/watch/3ff87a10-3785-41e6-ba47-acab21fcfa8a
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/c4083614-edd9-445f-85a4-e2ae470c761e.jpg
published: 2021-10-03T22:42:00.207Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: "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...
url: https://watch.ocaml.org/videos/watch/c9237937-9145-443c-9a78-d3ab20d2c932
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/2dd76a3b-cfca-4ad5-b1fd-d2c60d9588b7.jpg
published: 2024-01-23T10:29:15.683Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 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'
url: https://watch.ocaml.org/videos/watch/d010b30f-61d5-4d70-b10a-518a7a6e1e3f
thumbnail: https://watch.ocaml.org/lazy-static/thumbnails/7b044637-259c-4b30-875b-4c4563ce23aa.jpg
published: 2021-10-03T22:15:47.662Z
author_name: Unknown
author_uri: https://watch.ocaml.org/
source_link: https://watch.ocaml.org/
source_title: Watch OCaml
- title: 'Opam-bin: Binary Packages with Opam'