韩顺平Linux网课笔记(25到28)

二十五 .Linux实操篇_实用指令 mkdir rmdir     二十六 .Linux实操篇_实用指令 touch cp    二十七 .Linux实操篇_实用指令 rm mv    二十八 .Linux实操篇_实用指令 cat more less      ...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

《千锋Django培训》网课笔记(从1到4)

一. Django流程基本走通   首先,用户在页面输入一个url. 服务器的url控制器接收了,并根据url匹配相应的视图。 视图去models里取数据,models从数据库里取数据。 models将数据传给视图,视图再将数据传给templates. 模板将数据渲染成HTML文件,并将html文件返回给浏览器。 二. Django流程基本走通  三. Django流...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

韩顺平Linux网课笔记(29到32)

二十九. Linux实操篇_实用指令 重定向和追加  三十. Linux实操篇_实用指令 echo head tail   三十一. Linux实操篇_实用指令 ln  history      三十二. Linux实操篇_实用指令 date cal         ...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

韩顺平Linux网课笔记(33到35)

三十三. Linux实操篇_实用指令 find locate grep 管道符 三十四. Linux实操篇_实用指令 压缩和解压类指令             三十五. Linux实操篇_实用指令 组管理                            ...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

韩顺平Linux网课笔记(36到)

三十六. Linux实操篇_实用指令 权限详细介绍   三十七. Linux实操篇_实用指令 权限管理        
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

网易C++设计模式

该套视频基于:https://www.bilibili.com/video/av22292899 一. 设计模式简介  
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

matplotlib库学习笔记(一)——《Sample plots in Matplotlib》

该套笔记依据于matplotlib的官方文档:https://matplotlib.org/tutorials/introductory/sample_plots.html#sphx-glr-tutorials-introductory-sample-plots-py Sample plots in Matplotlib 1. line plot (1)首先要了解最基本的plot()函数相关...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

《千锋Django培训》网课笔记(从5到)

五.     六.    >>> from myApp.models import Grades, Students >>> from django.utils import timezone >>> from datetime import * >>> Grades.object...
分类: 企业开发 发布时间: 09-03 22:31 阅读次数: 0

那些年,我们一起踩过的坑-——python实践错误笔录

1. file.seek(0)的关键作用file.seek(0)的作用是将读写文件的光标移动到文件开头。这相当于一种初始化操作,就像我们在使用一个变量i时,我们不知道之前是否给其赋值了,所以不能想当然地认为i=0. 如果想用,要人为进行初始化:i=0. file.seek(0)也是同理。我们不知道之前是否读取过当前文件,从而不知道光标停留的位置,所以需要人为初始化。当然,在用完一个文件后,用fil...
分类: 其他 发布时间: 09-03 22:31 阅读次数: 0

解决hibernate报错:no-session的问题

解决hibernate报错:no-session的问题
分类: 服务端 发布时间: 09-03 22:31 阅读次数: 0

著名音频库多角度对比(多平台可用)

著名音频库多角度对比
分类: 移动开发 发布时间: 09-03 22:31 阅读次数: 0

RDF集合:first, rest, nil

一直没太弄清楚rdf或owl语言中经常出现的first, rest 和nil是什么意思,在网上也没找到合适的中文资料。好在还能参考一下英文,为自己解惑。概述简而言之,first, rest, nil三个词在rdf中是共存亡的。它们共同表示一个集合。详细说明本文以下部分转自W3C,作者不详。原文介绍了rdf中的若干术语,值得参考。链接如下:https://www.w3.org/TR/rdf-sche...
分类: 其他 发布时间: 09-03 22:30 阅读次数: 0

python实战===用python调用jar包--转自博客园

本文转自博客园,作者botoo。原文链接如下:https://www.cnblogs.com/botoo/p/8038507.html一个困扰我很久的问题,今天终于解决了。用python调用jar包很简单,但是网上的人就是乱转载。自己试都不试就转载,让我走了很多弯路 背景:python3.6 32位   + jre 32位  +  windows64位 首先环境搭建:安装jpype,安装的时候输入...
分类: 其他 发布时间: 09-03 22:30 阅读次数: 0

python 生成有向无环图(DAG)--改编自CSDN

本文改编自CSDN,作者ZhouMu,原文链接如下:https://blog.csdn.net/zhoujinyu0713/article/details/10163037?utm_source=tuicool本文的主要工作是,说明拓扑序的含义及其在生成DAG时的妙用,并给原文代码标注释。0. 拓扑序这一部分主要参考自百度百科中的“拓扑排序”词条。原文链接如下:https://baike.baid...
分类: 其他 发布时间: 09-03 22:30 阅读次数: 0

【写paper系列之一】怎样写好introduction--转自nature

本文转自nature官网,作者不详。原文链接如下:https://www.nature.com/scitable/ebooks/english-communication-for-scientists-14053993/118519636#headerAndCitationScientific papers are for sharing your own original research wo...
分类: 其他 发布时间: 09-03 22:30 阅读次数: 0

【写paper系列之二】怎样撰写论文主体(body)--转自nature

The bodyEven the most logical structure is of little use if readers do not see and understand it as they progress through a paper. Thus, as you organize the body of your paper into sections and perhap...
分类: 其他 发布时间: 09-03 22:29 阅读次数: 0

【写paper系列之三】怎样撰写论文结论(conclusion)--转自nature

The conclusionIn the Conclusion section, state the most important outcome of your work. Do not simply summarize the points already made in the body — instead, interpret your findings at a higher level...
分类: 其他 发布时间: 09-03 22:29 阅读次数: 0

Windows环境下Python中wordcloud的使用--转自CSDN

本文转自CSDN,作者热锅上的刺猬。原文链接如下:https://blog.csdn.net/heyuexianzi/article/details/76851377Python-wordcloud-初次尝试作为一个Python初学者,作为学习的开始,这次我根据《一件有趣的事:用Python 爬了爬自己的微信朋友》中的方法测试了一遍效果。这里记录下目前用的wordcloud这个包时遇到的一些问题吧...
分类: 其他 发布时间: 09-03 22:29 阅读次数: 0

【写paper系列之四】怎样写好英文摘要(Abstract)——转自nature

The abstractAn effective abstractIn just under 200 words, the abstract reproduced here conveys the motivation for and the outcome of the work with some accuracy but without intimidating readers by its...
分类: 其他 发布时间: 09-03 22:29 阅读次数: 0

【写paper系列之五】论文中的动词——转自nature

Effective writing is readable — that is, clear, accurate, and concise. When you are writing a paper, try to get your ideas across in such a way that the audience will understand them effortlessly, una...
分类: 其他 发布时间: 09-03 22:28 阅读次数: 0