@charset "utf-8";html,body,a,h1,h2,h3,h4,h5,h6,p,a,b,i,em,s,u,dl,dt,dd,ul,ol,li,strong,span,table,th,tr,td,img,div,form,fieldset,legend,input,button,s ...
分类:
Web程序 时间:
2020-02-23 20:23:11
阅读次数:
111
虽然Imgui不支持富文本,也不能同一时刻显示2种或更多的字号,只能简单作为调式GUI用用,但是这并不妨碍它流行,有些东西还是需要简单方便才能赢得大众喜爱。 说回正题。 Imgui的例子默认是英文字体,要显示中文需要先添加中文字体,如 io.Fonts->AddFontFromFileTTF("As ...
分类:
其他好文 时间:
2020-02-22 21:53:40
阅读次数:
982
从问题说开去 接口又返回了乱码咋办呢? 看现象, 查原因 贴到浏览器窗口看 ipython打开贴上去看 说明浏览器和ipython都可以解码 后端怎么给前端准备数据的? //后端修复: josn.dumps(data, ensure_ascii=false) If is false, then th ...
分类:
编程语言 时间:
2020-02-22 21:46:15
阅读次数:
109
// 防抖 export function _debounce(fn, delay) { var delay = delay || 200; var timer; return function () { var th = this; var args = arguments; if (timer) ...
分类:
其他好文 时间:
2020-02-22 09:46:08
阅读次数:
120
还原注销背景 删除该目录下所有文件后变为wes7背景 24时制与非UNICODE字符乱码解决 Set HH:mm:ss 24 Hours Set non Unicode programs as Chinese (Simplified, PRC) 激活方法 使用管理员权限运行cmd指令(自备证书文件) ...
The 12th Doctor’s last words: “Oh there it is. Silly old universe. The more I save it, the more it needs saving. It’s a treadmill. “Yes, Yes I know th ...
分类:
其他好文 时间:
2020-02-21 18:15:37
阅读次数:
91
LeetCode 0121. Best Time to Buy and Sell Stock买卖股票的最佳时机【Easy】【Python】【贪心】 Problem "LeetCode" Say you have an array for which the i th element is the p ...
分类:
编程语言 时间:
2020-02-19 23:55:42
阅读次数:
125
深度学习(Deep Leaming, DL )属于表示学习( Representation Learning )的范畴,指的是利用具有一定“深度”的模型来自动学习事物的向量表示(vectorial rpresenation)的一种学习范式。目前,深度学习所采用的模型主要是层数在一层以上的神经网络。
... ...
分类:
编程语言 时间:
2020-02-19 23:44:40
阅读次数:
73
旧 th:onclick="'javascript:view_attendee_record_list('+${meetingMsg.getMeetingRecordAttendeeState()}+')'" html5的data-*能够为标签添加一些自定义的属性和值,借此来实现。 改为 <a hr ...
分类:
Web程序 时间:
2020-02-18 16:30:22
阅读次数:
107
字典树 Description 遇到单词不认识怎么办? 查字典啊,已知字典中有n个单词,假设单词都是由小写字母组成。现有m个不认识的单词,询问这m个单词是否出现在字典中。 Input 含有多组测试用例。 第一行输入n,m (n>=0&&n<=100000&&m>=0&&m<=100000)分别是字典 ...
分类:
其他好文 时间:
2020-02-17 19:54:32
阅读次数:
100