Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HACKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ make test

### Building the Playground

The OCaml playground is compiled separately from the rest of the server and the generated assets can be found in
The OCaml Playground is compiled separately from the rest of the server and the generated assets can be found in
[`playground/asset/`](./playground/asset/).

To regenerate the playground, you will need to set up an OCaml 5 switch:
Expand Down
8 changes: 8 additions & 0 deletions LICENSE-3RD-PARTY
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ URL: https://swiperjs.com/
License: MIT License
Copyright: Copyright 2014-2021 Vladimir Kharlampidi

asset/vendors/fuse.min.js:

Name: Fuse.js
Version: v6.6.2
URL: http://fusejs.io
License: Apache Software License 2.0
Copyright: Copyright (c) 2022 Kiro Risk (http://kiro.me)

--------------------------------------------------------------------------
Licenses
--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion asset/feed.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><id>https://ocaml.org/feed.xml</id><title type="text">OCaml.org blog</title><updated>2023-05-02T05:51:46-00:00</updated><entry><link href="https://tarides.com/blog/2023-04-28-ocaml-at-minidebconf-tn-2023" rel="alternate"/><contributor><uri>https://tarides.com/feed.xml</uri><name>tarides</name></contributor><content type="html">&lt;p&gt;&lt;a href=&quot;https://tn23.mini.debconf.org/&quot;&gt;MinidebConf TN 23&lt;/a&gt; was organised by Debian Developers and Villupuram Linux Users Group (VGLUG) as a precursor to DebConf 23 in September at Kochi, India. I had an opportunity to attend and speak at MiniDebConf TN.&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><id>https://ocaml.org/feed.xml</id><title type="text">OCaml.org blog</title><updated>2023-05-02T14:42:52-00:00</updated><entry><link href="https://tarides.com/blog/2023-04-28-ocaml-at-minidebconf-tn-2023" rel="alternate"/><contributor><uri>https://tarides.com/feed.xml</uri><name>tarides</name></contributor><content type="html">&lt;p&gt;&lt;a href=&quot;https://tn23.mini.debconf.org/&quot;&gt;MinidebConf TN 23&lt;/a&gt; was organised by Debian Developers and Villupuram Linux Users Group (VGLUG) as a precursor to DebConf 23 in September at Kochi, India. I had an opportunity to attend and speak at MiniDebConf TN.&lt;/p&gt;
&lt;p&gt;I presented two sessions, one built on our experiences of introducing &lt;a href=&quot;https://github.com/ocaml/code-of-conduct&quot;&gt;a Code of Conduct&lt;/a&gt; to an &lt;a href=&quot;https://discuss.ocaml.org/t/adopting-the-ocaml-code-of-conduct/10870&quot;&gt;open source community&lt;/a&gt; &lt;a href=&quot;https://hackmd.io/JIWCOrBfQ7CfzPqeDw4t2Q#/&quot;&gt;(slides here&lt;/a&gt;), and one called &lt;a href=&quot;https://hackmd.io/wgB3EzlAQA6aTnQGyyp5Rw#/&quot;&gt;&lt;em&gt;An Invitation to OCaml&lt;/em&gt;&lt;/a&gt;, aimed at people with no prior OCaml experience. I was pleased to see a lot of folks getting interested in learning OCaml.&lt;/p&gt;
&lt;p&gt;Over the course of two days, I attended interesting sessions by speakers from across India and other parts of the world.&lt;/p&gt;
&lt;h3 style=&quot;position:relative;&quot;&gt;&lt;a href=&quot;https://tarides.com/feed.xml#first-day&quot; aria-label=&quot;first day permalink&quot; class=&quot;anchor before&quot;&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; height=&quot;16&quot; version=&quot;1.1&quot; viewbox=&quot;0 0 16 16&quot; width=&quot;16&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;First Day&lt;/h3&gt;
Expand Down
42 changes: 42 additions & 0 deletions asset/vendors/alpine-clipboard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// from https://cdn.jsdelivr.net/npm/@ryangjchandler/[email protected]/dist/alpine-clipboard.js
/*
Copyright (c) 2021 Ryan Chandler and contributors

Licensed under the MIT license
*/
(function (factory) {
typeof define === 'function' && define.amd ? define(factory) :
factory();
}((function () { 'use strict';

let onCopy = () => {};

function Clipboard(Alpine) {
Alpine.magic('clipboard', () => {
return function (target) {
if (typeof target === 'function') {
target = target();
}

if (typeof target === 'object') {
target = JSON.stringify(target);
}

return window.navigator.clipboard.writeText(target).then(onCopy);
};
});
}

Clipboard.configure = config => {
if (config.hasOwnProperty('onCopy') && typeof config.onCopy === 'function') {
onCopy = config.onCopy;
}

return Clipboard;
};

document.addEventListener('alpine:initializing', () => {
Clipboard(window.Alpine);
});

})));
9 changes: 9 additions & 0 deletions asset/vendors/fuse.min.js

Large diffs are not rendered by default.

Binary file added data/media/tutorials/ocaml-playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions data/planet/ahrefs.xml

Large diffs are not rendered by default.

Loading