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
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | |
<div class="container"> | |
<a class="navbar-brand" href="/">こんちは</a> | |
</div> | |
</nav> | |
<h1>放送部公式Homepage<h1> |
e=0 => 名前ちゃんとしろ e=1 => 内容ちゃんとしろ e=2 => メアド長杉 e=3 => BBSKEYがないよん e=4 => スレッドIDがないよん e=5 => スレタイない
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
function fastHash(input) { | |
let hashValue = 0; | |
for (let i = 0; i < input.length; i++) { | |
hashValue += input.charCodeAt(i); | |
hashValue &= 0xffffffff; | |
} | |
return hashValue; | |
} |
変更点について
- コードを読みやすくしました。
- pタグをbrタグにしました
- centerタグをCSS要素のtext-alignを使用します(非推奨のため)
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": "0.8.8", | |
"description": "Modded Minecraft Launcher", | |
"homepage": "https://modrinth.com/app", | |
"license": { | |
"identifier": "GPL-3.0-only", | |
"url": "https://raw.githubusercontent.com/modrinth/theseus/f6a697780ba45df606d4535205ac4532f87fbc3c/LICENSE" | |
}, | |
"architecture": { | |
"64bit": { |