Skip to content

Instantly share code, notes, and snippets.

@vytskalt
vytskalt / index.html
Created October 20, 2025 21:14
Rich text rendering on HTML canvas by abusing SVG foreignObject
<!DOCTYPE html>
<html>
<body>
<canvas id="canvas" width="512" height="512"></canvas>
</body>
<script>
/** @type {HTMLCanvasElement} */
const canvas = window.canvas;
@vytskalt
vytskalt / build_skia.sh
Created May 10, 2025 19:02
Building Skia without a build system. For educational purposes only, don't actually use this
#!/usr/bin/env bash
# Set these environment variables:
# - ZLIB_LIB: path to directory containing libz.a
# - LIBPNG_INCLUDE: path to libpng include directory
# - LIBPNG_LIB: path to directory containing libpng.a
# Skia version: 5b8860c391f7c3d5b09b62e0d58c45cb6fa814f0
CXX="zig c++"