随笔分类 -  踩过的坑

摘要:复制: 鼠标选中就复制了 粘贴: 粘贴到xterm里面 shift+Insert; 粘贴到其他应用 shift + 鼠标滚轮; https://askubuntu.com/questions/237942/how-does-copy-paste-work-with-xterm 阅读全文
posted @ 2021-04-02 10:14 ChevisZhang 阅读(344) 评论(0) 推荐(0)
摘要:转自 https://www.jianshu.com/p/1eff17aa6743?utm_campaign=haruki&utm_content=note&utm_medium=reader_share&utm_source=qq 阅读全文
posted @ 2020-11-14 14:05 ChevisZhang 阅读(241) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/58607298 阅读全文
posted @ 2020-11-14 13:50 ChevisZhang 阅读(76) 评论(0) 推荐(0)
摘要:# 可以用 next(iter(list/dict)) 来查看l = [1,2,3,4] print(next(iter(l))) # 1 d = {5:'a',6:'b'} print(next(iter(d.items()))) # (5, 'a') 阅读全文
posted @ 2020-11-14 11:06 ChevisZhang 阅读(125) 评论(0) 推荐(0)
摘要:list不能直接做减法,需要先转化成set之后再做减法,再转化为list; tuple也是不能做减法的,所以需要 set(list) 阅读全文
posted @ 2020-11-11 18:56 ChevisZhang 阅读(386) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/chjbbs/p/6705199.html 阅读全文
posted @ 2020-11-11 10:02 ChevisZhang 阅读(191) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/u010916338/article/details/77995093 阅读全文
posted @ 2020-11-10 11:45 ChevisZhang 阅读(73) 评论(0) 推荐(0)
摘要:https://www.jianshu.com/p/b009fd3ac044 1、按ctrl+shift+a,弹出搜索框 2、输入registry,然后按回车 3、找到“ide.suppress.double.click.handler”,将后面的复选框勾上 4、勾选上复选框后直接点击close,然 阅读全文
posted @ 2020-11-10 09:06 ChevisZhang 阅读(406) 评论(0) 推荐(0)