scp-1024 / scp-1024.github.io

0 stars 0 forks source link

guestbook | 空博客 #13

Open scp-1024 opened 5 years ago

scp-1024 commented 5 years ago

https://nullblog.top/guestbook/

The early worm is catched by birds

scp-1024 commented 5 years ago

在Stack Overflow上看到很有意思的探讨for循环和while循环之间的优缺点,原地址:https://stackoverflow.com/questions/2950931/for-vs-while-in-c-programming 简单翻译一下我觉得精髓的内容:我们通常在已经知道迭代次数的情况下使用for循环,不知道时使用while

scp-1024 commented 5 years ago

简而言之:at a simplistic level

scp-1024 commented 5 years ago

AG0T5F.md.png

scp-1024 commented 5 years ago

Python命名规范

scp-1024 commented 5 years ago

全局变量报错:local variable 'xxx' referenced before assignment. https://blog.csdn.net/u012340794/article/details/53013022

scp-1024 commented 5 years ago

编程语言中,取余和取模的区别到底是什么? - 竹月凉的回答 - 知乎 https://www.zhihu.com/question/30526656/answer/95242887

scp-1024 commented 5 years ago

Python直接赋值,浅拷贝,深拷贝的联系和区别 http://www.runoob.com/w3cnote/python-understanding-dict-copy-shallow-or-deep.html

scp-1024 commented 5 years ago

Numpy中reshape函数、reshape(1,-1)的含义 https://blog.csdn.net/W_weiying/article/details/82112337

scp-1024 commented 5 years ago

hexo g:expected variable end,即{{嵌套问题的解决方法 https://www.jianshu.com/p/a9f26f4cd4e6

scp-1024 commented 5 years ago

linspace和arange的区别 https://blog.csdn.net/suibianshen2012/article/details/41624151

scp-1024 commented 5 years ago

c++中,变量和对象的联系在于都关注一段内存;区别在于,变量侧重于关注这段内存的名字,而对象侧重关注这段内存的类型。 参考:https://blog.csdn.net/yby4769250/article/details/7377526

scp-1024 commented 5 years ago

in particular 具体而言 typically 通常,典型,一般

scp-1024 commented 5 years ago

计算机图形中最简单的位图存储方法,以像素为单位,一个像素的颜色根据RGB标准,由24位存储(即3个8位分别表示R、G、B三个颜色通道)。其中这24位的值其实是对应到RGB调色板的索引值。

scp-1024 commented 5 years ago

np.mean()和x.mean()都可以调用.mean()的方法。区别在于一个是用模块名.函数名,另一个则是用对象.函数名

scp-1024 commented 5 years ago

如果一个多维数组是2x3x2,他就是3维的,参数axis=0指的就是第一维,即2那一个数轴,axis=1,即3的那个数轴,axis=2,即最后2的那个数轴。

scp-1024 commented 5 years ago

EJVPzV.png

scp-1024 commented 5 years ago

numpy 辨异 (五)—— numpy.ravel() vs numpy.flatten() https://blog.csdn.net/lanchunhui/article/details/50354978

scp-1024 commented 5 years ago

F1 score, which tells you how well you’re doing on finding the ground truth anomalies given a certain threshold. 翻译:F1值,告诉你在给定阈值的情况下,在正确找到异常值方面对算法的评估

scp-1024 commented 5 years ago

np.square()和的区别在于预算时间,的效率更高

scp-1024 commented 5 years ago

EyGlAP.png

scp-1024 commented 5 years ago

耆英的怀柔和叶名琛的强硬,都无法解决和西方列强的问题。 清朝做着天朝上国的梦,英国也不会卑躬屈膝,最后只能是谁拳头硬,谁说的算。

scp-1024 commented 5 years ago

关于python list 中的sort()函数 https://blog.csdn.net/a_newbie_007/article/details/80296542

scp-1024 commented 5 years ago

E72CqI.md.png

scp-1024 commented 5 years ago

self-explanatory 不言自明的

scp-1024 commented 5 years ago

人性和兽性是存在于任意一个人的性格之中的,二者不可分割。在历史的长河中,人性固然有许多闪耀之处值得赞扬,兽性固然也导致了许多令人发指的事件。 但失去人性,失去很多;失去兽性,失去一切。

scp-1024 commented 5 years ago

有思想,比有文化重要 ——《亮剑》有感

scp-1024 commented 5 years ago

平等是建立在互相威慑之上的

scp-1024 commented 5 years ago

from scratch 从头开始

scp-1024 commented 5 years ago

performance 性能

scp-1024 commented 5 years ago

pandas中loc-iloc-ix的使用

scp-1024 commented 5 years ago

非限定性定语从句:修饰性,先行词具体名词抽象名词

同位语从句:解释性,先行词为抽象名词

scp-1024 commented 5 years ago

it:

1、指代时间、地点等;

2、形式主语;

3、强调句,这个可以把it和强调词去掉,还原出一个完整句子,这既是一种判断方法,也是一种翻译方法。

scp-1024 commented 5 years ago

c中的下标运算符:http://c.biancheng.net/view/292.html