Skip to content

Instantly share code, notes, and snippets.

@sounisi5011
sounisi5011 / README.md
Last active May 5, 2023 17:47
けもケット7で売られたvoreいモノまとめ

けもケット7で売られたvoreいモノまとめ

2018年4月30日開催の同人誌イベント【けもケット】にて配布されるであろう、vore関係の同人誌やモノのまとめです。当日voreいモノを買うときの参考にしてください。

著:sounisi5011 (Twitter / pixiv)
最終更新日時:2021年9月19日 午後5時25分

注意

  • 「巨大娘やモンスター娘、人間」などの捕食者が丸呑み・捕食を行うvoreモノは含みません。ポケモン・ドラゴン・獣人《ケモノ》などの、人外系voreのみとなります。
@sounisi5011
sounisi5011 / dialog-focus-restore.js
Last active April 25, 2018 20:42 — forked from samthor/dialog-focus-restore.js
Restore focus after a HTML dialog is shown modally
/**
* Updates the passed dialog to retain focus and restore it when the dialog is closed. Won't
* upgrade a dialog more than once. Supports IE11+ and is a no-op otherwise.
* @param {!HTMLDialogElement} dialog to upgrade
*/
window.registerFocusRestoreDialog = (function() {
var WeakMap = window.WeakMap;
var registered =
typeof WeakMap === 'function'
? new WeakMap()
@sounisi5011
sounisi5011 / README.md
Last active March 29, 2018 15:16
text-emphasisプロパティを何とかしてほぼCSS(とHTML)のみで再現する方法の試み

text-emphasisプロパティを何とかしてほぼCSS(とHTML)のみで再現する方法の試み

CSSのtext-emphasisプロパティは、圏点(文字の上や右に点がくっついてるアレ)を表示するためのものだ。 現在(2018年3月29日時点で)、殆どのWebブラウザが(ChromeやOperaは未だに-webkit-プレフィックスが必要なものの)対応している。

だが、IEやEdge、Android版Firefox、それに JSすらマトモに動かせないクソブラウザ Opera Miniは対応していない。

@sounisi5011
sounisi5011 / dom2markdown.js
Created March 16, 2018 14:09
DOMノードをMarkdownに変換する関数(未完成)
/**
* @param {!Node} targetNode Markdownに変換するDOMノード
* @param {boolean} childOnly trueの場合、DOMノードの子要素のみを変換する
* @return {string}
*/
function dom2markdown(targetNode, childOnly=false) {
/**
* 文字列をMarkdown用にエスケープする
* @param {string} text エスケープする文字列
* @param {string} escapeChar エスケープする文字
@sounisi5011
sounisi5011 / README.md
Last active March 16, 2018 22:36
端までスクロールしたらコンソールに出力するテストコード
@sounisi5011
sounisi5011 / README.md
Last active March 13, 2018 08:28
入力した文字を括弧で囲むだけのクソアプリ(Mithril.js版)
@sounisi5011
sounisi5011 / README.md
Last active March 19, 2018 23:35
入力した文字を括弧で囲むだけのクソアプリ(Hyperapp版)
@sounisi5011
sounisi5011 / README.md
Last active March 13, 2018 08:32
入力した文字を括弧で囲むだけのクソアプリ(Vanilla JS版)