Posts
闭区间套定理(Nested intervals theorem)讲解2
①确界与极限,看完这篇你才能明白http://redstoneleo.blogspot.com/2017/01/2.html ②这个批注由 这个问题 而来 表示$c$可能在$\bigcap_{n=1}^{\infty} (a_{n},b_{n})$或$\bigcap_{n=1}^{\infty} (a_{n},b_{n}]$或$\bigcap_{n=1}^{\infty} [a_{n},b_{n})$或$\bigcap_{n=1}^{\infty} [a_{n},b_{n}]$内,$\bigcap_{n=1}^{\infty} (a_{n},b_{n})$、$\bigcap_{n=1}^{\infty} (a_{n},b_{n}]$、$\bigcap_{n=1}^{\infty} [a_{n},b_{n})$都是 $\bigcap_{n=1}^{\infty} [a_{n},b_{n}]$的真子集,$c$可以不在$\bigcap_{n=1}^{\infty} (a_{n},b_{n})$或$\bigcap_{n=1}^{\infty} (a_{n},b_{n}]$或$\bigcap_{n=1}^{\infty} [a_{n},b_{n})$内,但是$c$不可能不在$\bigcap_{n=1}^{\infty} [a_{n},b_{n}]$中,否则就与 矛盾了。所以在这里只有$\bigcap_{n=1}^{\infty} [a_{n},b_{n}]$才一定包含$c$,其它三种区间的交集形式仅仅只是可能包含$c$,这也启示我们并不只是只有闭区间套可以 包含$c$,其它三种区间的交集也可以 包含 $c$。 ③这里用到了 极限与不等关系
更改Inno Setup中文语言文件的默认字体大小
从 https://www.jrsoftware.org/files/istrans/ 下载到的中文语言文件ChineseSimplified.isl默认字号太小,用下面的内容替换该文件里的LangOptions这个部分后终于可以看清楚一点了 [LangOptions] ; The following three entries are very important. Be sure to read and ; understand the '[LangOptions] section' topic in the help file. LanguageName=<4E2D><6587><FF08><7B80><4F53><FF09> LanguageID=$0804 LanguageCodePage=936 ; If the language you are translating to requires special font faces or ; sizes, uncomment any of the following entries and change them accordingly. DialogFontName=宋体 DialogFontSize=12 ;WelcomeFontName=Verdana WelcomeFontSize=10 ;TitleFontName=Arial ;TitleFontSize=29 ;CopyrightFontName=Arial CopyrightFontSize=12
让Django通过网易163邮箱报告异常和错误(exceptions and errors)
Django需要的EMAIL_HOST_PASSWORD不一定是你的邮箱登录密码,只有开启了网易邮箱smtp服务之后才会有EMAIL_HOST_PASSWORD,这和一般别的邮箱不同(比如139、189等邮箱,目前EMAIL_HOST_PASSWORD就是登录密码)。下面我们就来获取要用网易邮箱的EMAIL_HOST_PASSWORD。 首先不要以网易邮箱简约版登陆,因为现阶段简约版登陆后找不到我们接下来的设置选项 登陆后按照箭头所示点击 再次点击箭头所示之处 按要求设置就是了。获得的授权码就是EMAIL_HOST_PASSWORD,接下来就是具体的配置了,问题也不少,请看http://redstoneleo.blogspot.com/2016/12/email-reporting-exceptions-and-errors_30.html