Skip to content

Instantly share code, notes, and snippets.

View naogify's full-sized avatar
🛰️

Naoki Ohashi naogify

🛰️
View GitHub Profile
@keichan34
keichan34 / README.md
Last active November 12, 2025 05:56
法務省データもろもろ
cp -r moj_data/ ./
mkdir all_zips
find . -name '*.zip' -maxdepth 1 | xargs -P 16 -I '{}' unzip '{}' -d ./all_zips

ここで all_zips に展開されたzipがある 次は任意座標と公共座標系を分ける

@abelcallejo
abelcallejo / README.md
Last active May 27, 2025 21:46
Installing GDAL 3.2.1 on Amazon Linux 2

Installing GDAL 3.2.1 on Amazon Linux 2

gdal linux yum

As of this day, this is probably the only and fastest way of installing it.

Package requirements

Based from the GDAL and PROJ build requirements, here is the full list of required packages to install:

@torounit
torounit / browserSync.js
Last active October 14, 2018 16:07
npm scripts
var browserSync = require("browser-sync");
browserSync({
proxy: 'localhost:9292',
files: [
"./css/**/*",
"./js/**/*",
"./images/**/*",
"./fonts/**/*",
"./**/*.php",
]