查看所有进程:
ps -aux
如果需要搜索某个关键字,比如aliyun,可以使用:
ps -aux | grep aliyun
终止进程,pid为进程号,可以通过上面命令找到。
kill pid
查看所有进程:
ps -aux
如果需要搜索某个关键字,比如aliyun,可以使用:
ps -aux | grep aliyun
终止进程,pid为进程号,可以通过上面命令找到。
kill pid
You’re probably doing DNS wrong, like we were
https://medium.com/@brianarmstrong/youre-probably-doing-dns-wrong-like-we-were-6625efaed390
看不懂吧,哈哈哈……
http://www.directorylister.com/
Directory Lister is a simple PHP based script created to let you list the contents of a directory and all it’s sub-directories and allow you to navigate there within. Just download and install Directory Lister to any web directory and have immediate access to all files and sub-directories under that directory.
FireFox表单自动填充插件:Autofill Forms
https://addons.mozilla.org/en-US/firefox/addon/autofill-forms/
当每个输入框都有一个ID的时候,可以在console控制台输入类似以下命令,回车即可:
void((function(){
document.getElementById(“username”).value = “我的用户名”;
document.getElementById(“address”).value = “我的地址”;
document.getElementById(“email”).value = “[email protected]”;
})())
如果输入框没有ID,但是有name,那么可以在console控制台输入类似以下命令,回车即可:
$(‘[name=username]’).val(‘我的用户名’);
$(‘[name=address]’).val(‘我的地址’);
$(‘[name=email]’).val(‘[email protected]’);
日本研究人员最新发现,夜行性实验鼠在夜间免疫应答反应较强,因此这期间接种疫苗效果好。研究人员据此认为,昼行性的人类上午接种疫苗效果更好。日本大阪大学一个研究小组在美国《实验医学杂志》网络版上报告说,他们在研究实验鼠交感神经活跃程度和淋巴结中淋巴细胞数量之间关系后发现,实验鼠交感神经到了夜间变得活跃,而这期间实验鼠淋巴细胞从淋巴结中流出受到抑制,淋巴细胞大量集中在淋巴结中。
从免疫发生机制来看,淋巴结中淋巴细胞数量的多少体现出免疫应答反应的强弱。淋巴结中的淋巴细胞较多则免疫应答反应较强,接种疫苗能够产生更多抗体,免疫效果也较好。因此,夜行性实验鼠夜间接种疫苗的效果比白天接种更好。
研究人员解释说,交感神经的活跃程度在一天中随着身体活跃程度而有规律变动,作为昼行性动物的人类和夜行性实验鼠相反,白天交感神经活跃度高,淋巴结中的淋巴细胞数量较多。研究人员因此认为,人在交感神经更活跃、免疫应答反应较强的上午接种疫苗效果可能更加理想。
回复