ๆฅๆ: | 2024-02-01 |
---|---|
ไฝ: | ๆ้จๅ |
่ณๆ ใใผใธใงใณ: | 2024.1 |
GitHub URL: | https://github.com/shiguredo/momo |
่ฃฝๅ URL: | https://momo.shiguredo.jp/ |
ๆฅๆ: | 2018-08-08 |
---|---|
ไฝ่ : | @voluntas |
ใใผใธใงใณ: | 18.08.0 |
url: | https://sora.shiguredo.jp/ |
ใใฎ่จไบใ่ฏใใจๆใฃใใใใฎ่จไบใซ Star ใๆฏ้
import base64 | |
import datetime | |
import hashlib | |
import hmac | |
import time | |
import os | |
import sys | |
import json |
<div id=root /> | |
<script type=module> | |
import React from 'https://dev.jspm.io/react@16' | |
import ReactDOM from 'https://dev.jspm.io/react-dom@16' | |
ReactDOM.render( | |
React.createElement('h1', null, 'hello'), | |
document.querySelector('#root') | |
) | |
</script> |
่่ ๏ผ ้ใ้ด๏ผใถใใใ๏ผใใย @bluecrow2
ใใใฏ็ตๅๆตฉใใใฎ้็จใใใฆใใ YukiWiki ใซๅฝๆ Coffee ๆง (้ใ้ด๏ผใถใใใ๏ผใใ๏ผใใใใใฆใใๆ็ซ ใงใใ ใใ 2018 ๅนด 3 ๆ 7 ๆฅใซ YukiWiki ใ้็จๅๆญขใใใใๆถใใฆใใพใใพใใใใใฎ่จไบใฎใใใฏใขใใใงใใ
ไปใฏ 404 ใงใใใใใจใใจใฎ่จไบใฎ URL ใฏ http://www.hyuki.com/yukiwiki/wiki.cgi?%A5%C7%A5%B9%A5%DE%A1%BC%A5%C1%A4%AC%B5%AF%A4%AD%A4%EB%CD%FD%CD%B3 ใซใชใใพใใ
ๆใ่ชๅใใจใฆใๆ้ใๅใใๆ็ซ ใชใฎใงใใใฎใพใพ่ชญใใชใใชใใฎใฏใจใฆใใใฃใใใชใใจๆใใใใใฏใขใใใจใใฆๅ ฌ้ใใฆใใพใใ
func noDirListing(h http.Handler) http.HandlerFunc { | |
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | |
if strings.HasSuffix(r.URL.Path, "/") { | |
http.NotFound(w, r) | |
return | |
} | |
h.ServeHTTP(w, r) | |
}) | |
} |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io" | |
"os" | |
"strings" | |
) |
# use the latest ubuntu environment (18.04) available on travis | |
dist: bionic | |
language: go | |
# You don't need to test on very old versions of the Go compiler. It's the user's | |
# responsibility to keep their compiler up to date. | |
go: | |
- 1.16.x |