码迷,mamicode.com
首页 >  
搜索关键字:tutorial    ( 3034个结果
数据库设计(二)Introduction to Database Design
原文链接:http://www.datanamic.com/support/lt-dez005-introduction-db-modeling.html Introduction to Database Design This article/tutorial will teach the bas ...
分类:数据库   时间:2018-02-23 11:59:57    阅读次数:233
TortiseGit 添加SSH-Key
TortoiseGit 使用扩展名为ppk的密钥,而不是ssh-keygen生成的rsa密钥。使用命令ssh-keygen -C "邮箱地址" -t rsa产生的密钥在TortoiseGit中不能用。 而基于git的开发必须要用到rsa密钥,因此需要用到TortoiseGit的putty key g ...
分类:其他好文   时间:2018-02-22 15:26:48    阅读次数:172
Pytorch model saving and loading 模型保存和读取
It is really useful to save and reload the model and its parameters during or after training in deep learning. Pytorch provides two methods to do so. ...
分类:其他好文   时间:2018-02-21 10:52:06    阅读次数:902
海量数据处理算法与面试题
http://www.jiuzhang.com/tutorial/big-data-interview-questions/163 1.最高频 K 项问题 2.布隆过滤器 3.外排序算法 4.概率类大数据问题 ...
分类:编程语言   时间:2018-02-19 23:47:43    阅读次数:353
[cmake] Basic Tutorial
Basic Project The most basic porject is an executable built from source code file. CMakeLists.txt tutorial.cxx Project files: Upper, lower, and mixed ...
分类:其他好文   时间:2018-02-19 13:48:25    阅读次数:150
django
安装django sudo pip install django==1.8.3 实用虚拟环境 source venv/bin/activate deactivate 创建django 项目 django-admin startproject tutorial cd tutorial python m ...
分类:其他好文   时间:2018-02-18 15:59:00    阅读次数:187
Python tutorial阅读之基本数据结构
list | API | 作用 | 等价操作 | | : | : | : | | list.append(x) | 把一个元素添加到结尾 | a[len(a):] = [x] | | list.extend(L) | 把一个列表的元素添加到另一个列表 | a[len(a):] = L | | lis ...
分类:编程语言   时间:2018-02-17 16:39:37    阅读次数:196
Thrift第三课 编写脚本
警告    尽量使用tutorial下面的模板,注意脚本的格式,否则生成错误使用thrift-0.9.0生成C++/csharp代码使用的指令如下:thrift-0.9.0.exe --gen cpp thriftcom.thriftthrift-0.9.0.exe --gen csharp thriftcom.thrift1 注释有如下的三种方式1)// 2)/**
分类:其他好文   时间:2018-02-17 14:48:26    阅读次数:121
怎样避免在EF自己主动生成的model中的DataAnnotation被覆盖掉
相信非常多人刚接触EF+MVC的时候,会有这个疑问。就是当我们在model类中加验证信息的时候。会在又一次生成model的时候被重写掉。这里介绍一个方法: 比方我有个Employee类是从数据库中生成到model中的,我们能够在Models目录中创建一个部分类名称与Employee类同名(注意:该类 ...
分类:其他好文   时间:2018-02-16 15:34:33    阅读次数:184
Python tutorial阅读之函数的定义与使用
函数的定义 Python 使用关键字def定义函数,格式与C语言类似,但是没有返回类型,参数也不需要设置类型。 函数调用 会为函数局部变量生成一个新的符号表。确切的说,所有函数中的变量赋值都是将值存储在局部符号表。变量引用首先在局部符号表中查找,然后是包含函数的局部符号表,然后是全局符号表,最后是内 ...
分类:编程语言   时间:2018-02-14 15:59:48    阅读次数:156
3034条   上一页 1 ... 94 95 96 97 98 ... 304 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!