Skip to content

Instantly share code, notes, and snippets.

View qyen's full-sized avatar
🎯
Focusing

qyen

🎯
Focusing
View GitHub Profile
@azu
azu / READ.md
Last active May 8, 2021 14:23
JavaScriptの本を書くときに参考にしてるもの

jsprimerというJavaScriptの書籍を書いている。 これを書いてるときに参考にしているものを書いていく。

ECMAScriptのLiving Standardな仕様書ページ。 スナップショットなECMAScriptの仕様書ページもあるけど、基本的にはLiving Standardの方しか見てない。

@phylsys
phylsys / Web.config
Created March 13, 2017 19:10
Web.config for /.well-known/ directory in an ASP.net application
<?xml version="1.0"?>
<configuration>
<system.web>
<!-- Make directory public. Allow anonymous users access to everything in this directory. -->
<authorization>
<allow users="*"/>
</authorization>
</system.web>