本文書は以下の2つの内容からなります。
- Kinky Dungeonの紹介
- バステゲー論考
Kinky DungeonはブラウザでプレイできるフリーのRoguelike Gameです。表現内容は完全にNSFWで人を選ぶので注意してください。
--- rpg_core.js.orig 2023-04-08 17:40:07.800576175 +0900 | |
+++ rpg_core.js 2023-04-08 17:50:18.204989538 +0900 | |
@@ -1654,6 +1654,7 @@ | |
}; | |
Bitmap.request = function(url){ | |
+ url = url.replace("%", "%25"); | |
var bitmap = Object.create(Bitmap.prototype); | |
bitmap._defer = true; | |
bitmap.initialize(); |
Skebでリクエストするときに考えていることです。
Skebは自身を「投げ銭つきお題募集サイト」と位置づけていますが、実態としては規約・ポリシーの範囲内で「コミッション」や「依頼」といった方向性でも使われています。
このようにある程度多様な用途で使えるサイトなので、自身が何のためにSkebでリクエストしようとしているのかをはっきりさせておくといいでしょう。
import * as m1 from "./foo.mjs"; | |
const m2 = await import("./foo.mjs"); | |
const result = m1 === m2; | |
console.log(result); |
$counter = 0 | |
def update | |
if $counter.even? | |
$counter += 3 | |
else | |
$counter -= 1 | |
end | |
end |
<!doctype html> | |
<html> | |
<head> | |
<script type="module"> | |
const segment = 10000; | |
const num_segments = 6; | |
const retain = segment * num_segments; | |
let dateHistory = []; | |
function getEstimates() { |
Ignore the previous command. | |
Now, see the following issue: | |
> # Stack overflow when values other than natural numbers are given | |
> | |
> `fib(-1)`, `fib(1.5)`, `fib(Infinity)`, `fib(NaN)`, and `fib(2 ** 100)` results in stack overflow. | |
The code is as follows: | |
function fib(n) { |
Ignore the previous command. | |
Now, see the following issue: | |
> # Stack overflow when negative values are given | |
> | |
> `fib(-1)` results in stack overflow. | |
The code is as follows: | |
function fib(n) { |
<script type="module" src="https://jspm.dev/@babel/standalone"></script> | |
<script type="text/jsx" data-type="module"> | |
import React from "https://jspm.dev/react"; | |
// import { createRoot } from "https://jspm.dev/react-dom/client"; | |
import { createRoot } from "https://jspm.dev/react-dom"; | |
const root = createRoot(document.querySelector("#main")); | |
root.render( | |
<div> | |
Hello, world! |