自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (2)
  • 收藏
  • 关注

原创 Ubuntu升级或安装Nginx最新稳定版(包安装)

说明1)如果你之前安装过Nginx,你可以输入sudo apt-get --purge remove nginx将Ngxin的配置文件和程序全都卸载,然后按照下面的方式安装即可。2)如果你不想卸载之前的,仍然可以按照下面的方式进行安装升级,但是/etc/nginx目录下可能会有你之前版本的一些配置文件,比如sites-enabled文件夹和sites-sites-available文件夹等...

2018-10-16 11:21:20 11905 2

原创 C/C++代码的内存分布

#include<iostream.h>/*全局变量,项目中的所有文件都可以使用这个变量,但外部文件使用前要加extern声明*/int a = 1;/*静态全局变量,具有文件作用域,即该变量只能在当前文件的任意位置使用*/static int b;void func(){ /*局部变量,是在函数体内定义的变量(包括main,各函数同名的局部变量并无影响), 只在函...

2018-10-15 10:59:43 233

Odoo开发手册(英文版)

Odoo, formerly known as OpenERP, is a great platform for developers. The framework at its core is very rich and allows building client–server applications from scratch as well as adapting existing applications to your needs through a clever extension mechanism and a very modular design. The latest versions have brought a wealth of new possibilities with the addition of a full-featured website development stack. The scope is huge and it is easy for newcomers to feel lost. For years, Odoo developers have been learning their craft by reading the code of the addon modules, which are built on top of the framework to provide enterprise management features. While effective, the process is long and error prone, since it is diffcult to know whether the source code you are learning from is using the latest possibilities offered by the framework, or if you are looking at an older module that has not been updated to use these features. To make things worse, some code flows are intrinsically hard to follow because they're partly in the business logic layer, partly in the database layer, partly in the request handling layer, and partly in the client side code. The introduction of a new API in version 8 has made things even more confusing, since most of the code base was not immediately ported to this new API. This book is meant to save you time by tapping in to the years of experience accumulated by long-time Odoo contributors to learn the current best practices in Odoo development by focusing on the new features of version 9, and also giving a solid base in the existing mature functionality of the framework. Since Odoo has a long tradition of guaranteeing backward compatibility, most of the presented material should still work with the upcoming versions.

2018-08-12

labview与Access数据库的简单链接

实现了labview与Access数据库的简单链接

2017-06-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除