ๆฅๆ: | 2018-08-08 |
---|---|
ไฝ่ : | @voluntas |
ใใผใธใงใณ: | 18.08.0 |
url: | https://sora.shiguredo.jp/ |
ใใฎ่จไบใ่ฏใใจๆใฃใใใใฎ่จไบใซ Star ใๆฏ้
ๆฅๆ: | 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 |
# Generate a BaseSystem.dmg with 10.13 Install Packages | |
hdiutil attach /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra | |
hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
asr restore -source /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase | |
cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation | |
hdiutil detach /Volumes/OS\ X\ Base\ System/ | |
hdiutil detach /Volumes/highsierra/ | |
mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg |