Skip to content

Instantly share code, notes, and snippets.

@ljavuras
ljavuras / List of icons.md
Last active June 18, 2025 18:47
List of icons in Obsidian
/**
 * List all icons available to `obsidian.setIcon()`
 * 
 * @author Ljavuras <ljavuras.py@gmail.com>
 */

dv.container.createEl("style", { attr: { scope: "" }, text: `
.icon-table {
 display: flex;
@aradalvand
aradalvand / DockerfileForSvelteKit.md
Last active December 7, 2025 06:39
Dockerfile and .dockerignore for SvelteKit:

*This Dockerfile is intended for SvelteKit applications that use adapter-node. So, the Dockerfile below assumes that you have already installed and configured the adapter.

Dockerfile:

FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
RUN npm run build