Skip to content

Instantly share code, notes, and snippets.

@ruzo-ruzo
ruzo-ruzo / webdriver.nu
Last active June 3, 2026 00:48
This script accesses WebDriver directly using Nushell. It has been tested with Nuspell version 0.113.1. It requires 7-Zip. Auto Downloading currently only supports Chrome and Firefox. There are not many usable endpoints.
# 一部 https://github.com/SeleniumHQ/selenium のデータを利用しています。
export def run [args: list<string> = [], browser = "chrome", driver = ""] {
let call = $in
let settings = start $args $browser $driver
try { { session: $settings.session, element: "" } | do $call } catch {
$settings | end
$in
}
$settings | end
@ruzo-ruzo
ruzo-ruzo / Kamaboko.py
Last active November 14, 2024 08:37
アニメ髪用のメッシュ分割Blenderアドオン。立方体を一部分残してかまぼこみたいに切る際自動的に平行するUV付きの面を張ってくれる。Cube状のメッシュをSubdivした形状のものにしか使えないので注意。こんな感じで使う⇒ https://twitter.com/ruzoruzo/status/1491753669750308864
bl_info = {
"name": "Kamaboko",
"author": "ruzo",
"version": (0, 1, 0),
"blender": (2, 80, 0),
"location": "View3D > Sidebar > Tool Tab / Edit Mode Context Menu > Face > Kamaboko",
"description": "Rips and caps selected mesh with parallel UV",
"support": "TESTING",
"warning": "",
"doc_url": "",