Autodesk (ex Delcam) Crispin LastMaker 2016 R1 Win64 1CDAutodesk (ex Delcam) Crispin TechPac 2016 R1 Win64 1CDCLO3D.Modelist.v2.2.134.MacOSX 1CDCLO3D....
分类:
其他好文 时间:
2015-09-27 21:31:00
阅读次数:
399
使用flask作为开发框架,一定要按功能模块化,否则到了后面项目越大,开发速度就越慢。1、Flask模块化结构规划[root@yang-218yangyun]#tree
.
├──asset#资产功能目录
│├──__init__.py
│├──models.py#资产数据库结构文件
│└──views.py#资产视图文件
├──user#..
分类:
其他好文 时间:
2015-09-17 15:33:26
阅读次数:
281
修改数据库articles结构,添加到user表的外键,migrate:refresh public function up() { Schema::create('articles', function (Blueprint $table) { $t...
分类:
其他好文 时间:
2015-09-14 00:34:11
阅读次数:
173
flask web框架中,有一个叫做blueprint的模块。既然存在,那么就有了一些哲学问题啦=_=,为什么要开发这个blueprint,怎样使用这个blueprint,有什么好处?有什么坏处?...
分类:
其他好文 时间:
2015-08-15 16:40:30
阅读次数:
191
Blueprint Container 规范还定义了许多特殊的环境管理器,它们设置 ID 并提供对环境组件的访问。它们不具有 XML 定义,并且也不能被重写,因为它们的 ID 被保护起来,不能被其他管理器使用。环境管理器提供的对象只能被注入到使用引用的其他管理器中。Blueprint
Container 规范定义了 4 种环境管理器:
blueprintBundle
提供包...
分类:
其他好文 时间:
2015-08-06 15:06:06
阅读次数:
133
'accept_charsets','accept_encodings','accept_languages','accept_mimetypes','access_route','application','args','authorization','base_url','blueprint',...
分类:
其他好文 时间:
2015-08-03 16:34:56
阅读次数:
147
创建migrate 文件 php artisan make:migration create_comments_table 编辑表字段 <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCommentTable...
分类:
其他好文 时间:
2015-07-12 12:57:30
阅读次数:
148
storm blueprint: P20
从零开始学storm : P40
可靠性:spout发送的消息会被拓扑树上的所有节点ack,否则会一直重发。
完整的可靠性示例请参考storm blueprint的chapter1 v4代码,或者P22。
关键步骤如下:
(一)spout
1、创建一个map,用于记录已经发送的tuple的id与内容,此为待确认的tuple列表。
priva...
分类:
其他好文 时间:
2015-06-17 16:46:10
阅读次数:
135
1) php artisan migrate:make action_table_name2) public function up() { Schema::create('up_appinfos', function(Blueprint $table) { $table->string('bi.....
分类:
其他好文 时间:
2015-05-22 19:05:39
阅读次数:
82
1.介绍
【使用uml的方式】
把uml当做草图sketch。顺向工程forward engineering在写代码前会绘制uml。而逆向工程reverse engineering根据已有的代码绘制uml来帮助理解。
把uml当做设计图blueprint是为了完整性completeness。在顺向工程中工作是构建详细设计的设计师会绘制设计图来让程序员更好的写代码实现。这个设计需要足够...
分类:
其他好文 时间:
2015-04-26 15:17:39
阅读次数:
147