クラス[^2] | [:alnum:] |
[:alpha:] |
[:blank:] |
[:cntrl:] |
[:digit:] |
[:graph:] |
[:lower:] |
[:print:] |
[:punct:] |
[:space:] |
[:upper:] |
[:xdigit:] |
[:word:] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[00]-[08] [0e]-[1f] [DEL] | - | - | - | ✓ | - | - | - | - | - | - | - | - | - |
[HT] | - | - | ✓ | ✓ | - | - | - | - | - | ✓ | - | - | - |
[LF][VT][FF][CR] | - | - | - | ✓ | - | - | - | - | - | ✓ | - | - | - |
[SPACE] | - | - | ✓ | - | - | - | - | ✓ | - | ✓ | - | - | - |
記号[^3] | - | - | - | - | - | ✓ | - | ✓ | ✓ | - | - | - | - |
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
require "bundler/inline" | |
gemfile do | |
source "https://rubygems.org" | |
gem "locale" | |
gem "rackup" | |
end | |
require "locale/middleware" | |
require "rack/logger" |
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
#!/usr/bin/env ruby | |
installed = { | |
mod_a: [ "1.0", "1.1", "1.2" ], | |
mod_b: [ "1.2" ], | |
} | |
wanted_to_use = { |
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
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 |
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
javascript:%5B...document.querySelectorAll('.text')%5D.forEach((p)%3D>%7Bp.style.userSelect%3D'text'%3B%7D)%3B |
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
// ==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== |
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
#!/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" |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Random Plot</title> | |
<style> | |
canvas { border: solid 1px; } | |
th { font-family: monospace; } | |
</style> | |
</head> | |
<body> |
NewerOlder