摘要:
构建 Python C 扩展模块 有好几种扩展 Python 的功能的方法。其中一种就是用 C 或 C++ 编写 Python 模块。通过这个过程可以提高性能,更好地访问 C 库函数和系统调用。在本教程中,我将带大家了解如何使用 Python API 来编写 Python C 扩展模块。这里说的都是 阅读全文
摘要:
w={"navigator":"hehe"} var handler = { get(target, key,receiver){ console.log("target",target,receiver); return Reflect.has(target, key) ? Reflect.get 阅读全文
摘要:
let testArr = [1,2,3,4,5,6] let a1 = 0 let a2=0 let b1=0 let b2 = 0 // ++在后 console.log(testArr[a1++]) console.log("此时的a1",a1) //++在前 console.log(test 阅读全文
摘要:
def clean_data(data): return unicodedata.normalize('NFKC', data).strip().replace("/r", "").replace("/t", "").replace("/n", "") 阅读全文
摘要:
https://guides.emberjs.com/v3.0.0/getting-started/quick-start/ 阅读全文
摘要:
Object.getOwnPropertyDescriptor 一般的我们通过name属性可以获取函数名,像下面 let demo1 ={ say(){ console.log("im say") } } console.log("第一个例子",demo1.say.name) 如果对象的方法使用了取 阅读全文
摘要:
//Ajax $.ajax({ url:"https://www.baidu.com", type:"GET", dataType:"text", contentType:"application/x-www-form-urlencoded;charset=utf-8", data:{ id:"12 阅读全文
摘要:
docker cp 86e1111ac273:/app portia_in_docker docker+cp+容器的id 然后冒号 容器的绝对路径 本地宿主机路径 https://apppit6dcs05916.pc.xiaoe-tech.com/detail/p_5d9eb71212cbe_Ckz 阅读全文
摘要:
npm i -g npm-check-updates ncu -u npm install 效果 阅读全文
摘要:
https://en.wikibooks.org/wiki/XPath/CSS_Equivalents 阅读全文