This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$bg3_path = "${env:ProgramFiles(x86)}\Steam\SteamApps\common\Baldurs Gate 3\Data\" | |
$z = "https://gist.github.com/ebith/b3a61eff5cbb8e5eecdfa2d951e54717/raw/Z.txt" | |
[void][System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | |
$dialog = New-Object System.Windows.Forms.OpenFileDialog | |
$dialog.Filter = "Divine.exe|Divine.exe" | |
$dialog.InitialDirectory = $(Get-Location) | |
if($dialog.ShowDialog() -ne [System.Windows.Forms.DialogResult]::OK){ exit } | |
$divine = $dialog.FileName |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import re | |
os.makedirs('UnofficialTranslations-ja', exist_ok=True) | |
with open('UnofficialTranslations-ja/Translations-ja.txt', encoding='utf-8', mode='w') as w: | |
number = '' | |
with open('I2Languages-resources.assets-71137.txt', encoding='utf-8', mode='r') as r: | |
for line in r: | |
tmp = re.search(r'(\[\d+\])', line) | |
if tmp: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Author-ebith | |
#Description-Output STL with detailed name. | |
# 謎: | |
# - availablePrintUtilitiesが空っぽ | |
# - sendToPrintUtility = Trueとするとfilenameが無視されてGUID固定になる | |
# Todo: | |
# - ボディを選べるように |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
traefik: | |
network_mode: host | |
environment: | |
- TZ=Asia/Tokyo | |
restart: always | |
image: traefik:v2.9 | |
command: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define FASTLED_INTERNAL | |
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <FastLED.h> | |
#include <Adafruit_BME280.h> | |
#include <InfluxDbClient.h> | |
const int NUM_LEDS = 1; | |
const int LED_PIN = 27; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define FASTLED_INTERNAL | |
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <HttpClient.h> | |
#include <FastLED.h> | |
#include <ArduinoJson.h> | |
const int NUM_LEDS = 1; | |
const int LED_PIN = 27; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <FastLED.h> | |
#include <WebServer.h> | |
#include <ESPmDNS.h> | |
const int NUM_LEDS = 1; | |
const int LED_PIN = 27; | |
static CRGB leds[NUM_LEDS]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[main] | |
scan_desktop = no | |
scan_env_path = no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define FASTLED_INTERNAL | |
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <HttpClient.h> | |
#include <FastLED.h> | |
#include <ArduinoJson.h> | |
const int NUM_LEDS = 1; | |
const int LED_PIN = 27; |
NewerOlder