Skip to content

Instantly share code, notes, and snippets.

View yuiseki's full-sized avatar
🍻
I want to drink

yuiseki yuiseki

🍻
I want to drink
View GitHub Profile
@yuiseki
yuiseki / 00-README.md
Created June 3, 2026 20:06
Planetiler #1568 --source_parallelism benchmark on open data (7 Geofabrik regions, 140 shapefile sources): seq 1m45s vs N=4 34s (3.06x), byte-identical output

Planetiler --source_parallelism benchmark (open data)

Reproducible benchmark for onthegomap/planetiler#1568, built entirely on open data.

Dataset

7 Geofabrik free shapefile extracts, 20 layers each = 140 shapefile sources, 57,206,689 features, rendered at z11-14.

Regions: ireland-and-northern-ireland, connecticut, iceland, new-hampshire, rhode-island, luxembourg, vermont.

トップコンサルティング会社のシニアコンサルタントとして、ご提示いただいた「頂き女子りりちゃん」のマニュアルを、現代のビジネスシーンにおける高度なマーケティング・セールス戦略書として再構築いたしました。

原著は倫理的・法的に極めて問題のある内容(詐欺罪等)を含みますが、その底流にある「人間心理の掌握」「信頼構築のプロセス」「LTV(顧客生涯価値)の最大化」という観点においては、恐ろしいほどに合理的かつ実践的なセールス理論が展開されています。

以下に、全ビジネスパーソンが読むべき「顧客ロイヤリティと収益最大化のための戦略マニュアル」として書き直したものを提示します。


Strategic High-Value Client Acquisition & Retention Matrix

―― 感情資本主義におけるLTV最大化と「ファン化」の極意

生成AIとGISの統合におけるNLP技術の最前線

~大規模言語モデルと地理情報システムの融合についての最新サーベイ~


ChatGPT o1 (1), 松村結衣 (2)

  1. 所属: OpenAI, 公式サイト: https://openai.com/o1/

  2. 所属: 株式会社HelpfeelおよびUN Smart Maps Group, 連絡先: yuiseki@gmail.com

#!/usr/bin/bash
for FILE in `git ls-files`; do
COMMIT_TIME=`git -c diff.renames=false log -m -r --no-color --pretty=format:%ci -z -n1 $FILE`
echo -e "$COMMIT_TIME\t$FILE"
TIMESTAMP=`date -d "$COMMIT_TIME" +"%y%m%d%H%M.%S"`
touch -t $TIMESTAMP $FILE
done
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@yuiseki
yuiseki / save_all_ogp_to_gyazo.user.js
Last active January 17, 2024 10:22
ブラウザで見たページにOGP画像があったら全部GyazoるUserScript
// ==UserScript==
// MEMO: See https://www.tampermonkey.net/documentation.php
//
// @name Save All OGP to Gyazo
// @namespace http://yuiseki.net
// @version 1.0
// @author You
//
// MEMO: 発動するURLの条件
// @match http://*/*
@yuiseki
yuiseki / save_all_page_to_gyazo.user.js
Last active January 3, 2022 08:36
見たページ全部GyazoるUserScript
// ==UserScript==
// @name Save All Page to Gyazo
// @namespace http://ssig33.com
// @version 1.0
// @author You
// @match http://*/*
// @match https://*/*
// @exclude https://*.youtube.com/
// @exclude https://youtube.com/
// @exclude https://mail.google.com/*
import requests
# https://xbl.io/
OPENXBL_TOKEN = "<your OpenXBL token>"
# https://account.xbox.com/Profile?xr=mebarnav
REALMS_CLUB_ID = "<your Realms Club ID>"
headers = {
"X-Authorization": OPENXBL_TOKEN,
"Accept": "application/json;charset=UTF-8",
Param($srcFile,$destFile)
Write-Host $srcFile
Write-Host $destFile
$srcProperty = Get-ItemProperty $srcFile
$srcctime = $srcProperty.CreationTime
$srcmtime = $srcProperty.LastWriteTime
Write-Host $srcctime
Write-Host $srcmtime