Better SVG Fallback and Art Direction With The Element

Besides using an SVG as a background image in CSS, you can serve SVG foreground images in HTML using one of several embedding techniques, each of which has its advantages and use cases. Unless you...

apache rewrite中文问题

RewriteRule ^star/(.*)$ phpinfo.php?a=$1 [QSA,L,B] 这条规则有些中文无法匹配,出现404问题,无法匹配的中文中包含%85,0085在ansi中为换行符,而.匹配除换行的任何字符,要换成以下这条 RewriteRule ^star/([...

Promise和Async/Await用法整理

1.Promise 1.简介 Promise,简单来说就是一个容器,里面保存着某个未来才会结束的时间(通常是一个异步操作的结果) Promise对象的基本语法: new Promise((resolve,reject) => { //..... }); 从语法上来...

CSS 或 srcset 让浏览器自动切换 1X/2X/3X 图像

现在很多客户都买高分屏的电脑,如果直接发 JPG 图给客户,会影响设计质量。为了让网站设计效果图更加真实,最近把设计提案直接做成 Web 版,模拟浏览器真实视觉效果,同时能自动识别是否为视网膜显示屏,并自动...

php汉字转拼音

include_once 'pinyin.class.php'; $zh = new ChineseSpell(); if($ishead){ return $zh->getFirstAlphaSpell($str,''); }else{ return $zh->getFullSpell($str,''); } <?php class ChineseSpell {...

How do I clear Cloudflare data from a user account in cPanel

The Cloudflare data for each individual account is stored in the following location: /home/[USERNAME]/.cpanel/datastore/cloudflare_data.yaml You can either SSH into that specific user account and r...

ajax status为canceld

因为ajax请求太久,会出现canceled状态,然后尝试把ajax的timeout值设置为2000,发现ajax请求成功并返回数据。 You can attach an ajaxError handler to document $(function(){ $(document).ajaxError(func...

图片鉴别open_nsfw

[repo owner="yahoo" name="open_nsfw"] python ./classify_nsfw.py \ --model_def nsfw_model/deploy.prototxt \ --pretrained_model nsfw_model/resnet_50_1by2_nsfw.caffemodel \ INPUT_IMAGE_PATH  

人脸识别face_recognition

https://pypi.org/simple/dlib/ https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy https://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy https://www.lfd.uci.edu/~gohlke/pythonlibs/#pillow https://www.lfd....