Skip to content

Instantly share code, notes, and snippets.

View choshinyoung's full-sized avatar
⛏️

choshinyoung

⛏️
View GitHub Profile
@choshinyoung
choshinyoung / hide-pdf-toolbar.css
Last active October 15, 2025 14:39
Obsidian CSS snippet to hide the toolbar and file header for PDF files
.pdf-toolbar {
z-index: 10;
width: fit-content;
border-radius: 0 0 10px 0;
}
.workspace-leaf-content[data-type="pdf"] .view-content {
position: relative;
}
@choshinyoung
choshinyoung / geotiff_to_json.py
Last active March 25, 2023 16:31
Convert GeoTIFF to JSON array
import rasterio
import time
import json
import re
def chunks(xs, n):
n = max(1, n)
return (xs[i:i+n] for i in range(0, len(xs), n))
paths = []
@choshinyoung
choshinyoung / Suffix.cs
Last active April 1, 2022 09:36
Inha hack
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Suffix
{
public partial class Form1 : Form
{