- 複数の資源 (鉱水・レアメタル・架空鉱石イマーサイト) や新たな設備を追加する大型MOD
- ロケット打ち上げ後に汎銀河通信装置を稼働させることが目標となる
タイトル|説明
document.querySelectorAll('.delete').forEach((elm) => { | |
elm.addEventListener('click', (ev) => { | |
const target = ev.target.closest('.notification'); | |
if (target) { | |
target.parentNode.removeChild(target); | |
} | |
}); | |
}); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Random Plot</title> | |
<style> | |
canvas { border: solid 1px; } | |
th { font-family: monospace; } | |
</style> | |
</head> | |
<body> |
#!/bin/sh -ue | |
# mapshot-concat.sh map-xxxxxxxx/d-xxxxxxxx/zoom_x output.jpg | |
if [ -n "$WSL_DISTRO_NAME" ]; then | |
# WSL1/2 | |
FACTORIO_DIR="/mnt/c/Users/$USER/AppData/Roaming/Factorio" | |
elif [ "$(uname -o)" = Darwin ]; then | |
# macOS | |
FACTORIO_DIR="$HOME/Library/Application Support/Factorio" |
// ==UserScript== | |
// @name IMASBBS Block System | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description IMASBBSのIDブロック機能を改良します。 | |
// @author sakuro | |
// @match http://imasbbs.com/patio.cgi* | |
// @icon https://www.google.com/s2/favicons?domain=imasbbs.com | |
// @grant none | |
// ==/UserScript== |
javascript:%5B...document.querySelectorAll('.text')%5D.forEach((p)%3D>%7Bp.style.userSelect%3D'text'%3B%7D)%3B |
game.write_file("active-mods.md", "| Mod | Version |\n") | |
game.write_file("active-mods.md", "|-|-:|\n", true) | |
for name, version in pairs(script.active_mods) do | |
game.write_file("active-mods.md", string.format("| %s | %s |\n", name, version), true) | |
end | |
end |
#!/usr/bin/env ruby | |
installed = { | |
mod_a: [ "1.0", "1.1", "1.2" ], | |
mod_b: [ "1.2" ], | |
} | |
wanted_to_use = { |
require "bundler/inline" | |
gemfile do | |
source "https://rubygems.org" | |
gem "locale" | |
gem "rackup" | |
end | |
require "locale/middleware" | |
require "rack/logger" |