Skip to content

Instantly share code, notes, and snippets.

View MaximOrlovsky's full-sized avatar

Maxim Orlovsky MaximOrlovsky

View GitHub Profile
@m-jowett
m-jowett / log.md
Last active July 21, 2025 10:04
Setup LibreOffice Online (Log/Guide) [WIP]

Setup LibreOffice Online (Log/Guide) [WIP]

About

This guide/log is based off my experience attempting to build and install LibreOffice Online and it's dependencies on my system.

The end goal is to get LibreOffice Online integrated with Karoshi Server.

LibreOffice Online is still in development (17/06/16).

@emeeks
emeeks / d3.sankey.js
Last active February 13, 2026 17:15
Sankey Particles IV
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;