自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

唐浩专栏

计算机语言

  • 博客(101)
  • 资源 (44)
  • 收藏
  • 关注

原创 Centos8 编译Vue项目打包成apk

...

2021-04-22 17:36:28 137

原创 函数计算 Flask实现

1.安装插件pip intall -t . flaskpip install -t .flask-restful2.示例代码

2021-03-30 17:48:19 290

原创 koa2 微服务网关 服务发现实现

const Consul = require('consul')const { config } = require('../config')class Discovery { constructor() { this.consul = new Consul(config.consul) } async getValue(key) { return await this.consul.kv.get(key) } async s.

2021-03-30 17:43:52 745

原创 koa2配置文件设置

config/index.jsvar base={}var dev={}var pro={}module.exports=process.env.NODE_ENV=='dev'?Object.assign(dev,base):Object.assign(pro.base)

2021-03-30 17:32:48 641

原创 Go 生成手机验证码

import ( "fmt" "math/rand" "time")func captcha(n int) string{ code:="" rand.Seed(time.Now().Unix()) for i:=0;i<n;i++{ code=fmt.Sprintf("%s%d",code,rand.Intn(10)) } return code}func main() { code:= captcha(4) fmt.Println(code) /..

2020-07-07 17:30:59 1094

原创 Go实现1..100累加(递归算法实现)

func summary(a int) int{ if a==1{ return 1 } return a+summary(a-1)}func main() { m:=summary(100) fmt.Println(m)}

2020-07-05 19:42:43 2662

原创 Go 实现水仙花数

func itheima() { for i:=100;i<1000;i++{ d1:=i/100 //百位 d2:=i%100/10 // 十位 d3:=i%10 // 个位 d4:=int(math.Pow(float64(d1),3)) d5:=int(math.Pow(float64(d2),3)) d6:=int(math.Pow(float64(d3),3)) if d4+d5+d6 == i{ fmt.Printf("%v\.

2020-07-03 13:48:05 344

原创 vue-elment-admin 打包部署到oss存储桶

流水线打包和通过脚本上传到oss设置默认index.html即可访问如果后端采用函数计算则不需要ecs了,需要另购RDS 高并发都能扛得住

2020-06-28 18:12:13 488

原创 阿里云函数 访问Redis

阿里云函数是运行在容器中 只有触发器触发时才会创建容器云函数能正确访问redis,需要做以下配置vpc,vswitch 尽量放在杭州g h区中这样在云函数才能在配置选项中找到这些安全配置const redis= require('redis')const client=redis.createClient(port, host, { auth_pass: '...

2020-04-23 12:52:38 350 1

原创 阿里云函数 实现企业微信消息 回调地址验证

阿里云函数 实现企业微信消息 回调地址验证 getRawBody(req, async function (err, body) { // resp.send('Hello') // 企业微信消息回调地验证 if (req.method == 'GET') { var sVerifyMsgSig = req.queries.msg_signatur...

2020-04-22 16:55:08 508

原创 coding.net 自动化云部署

腾讯云的Coding.net提供了一整套开发平台工具scm,其中最适用的小团队开发利器自动化构建工具Jenkinsfile脚本。以下以一个H5网站为例实现代码自动构建和远程生产发布。业务流程说明:在Coding.net中创建一个项目并初始化一个空仓库 在线或本地IDE开发 创建一个构建脚本命名为 Jenkinsfile 在生产服务器上配置一个Flask应用(接收上传文件...

2019-11-29 18:45:12 1102

原创 Win10 通知显示自定义股票价格

工作时间查看股票价格不大方便,不停翻手机也存在问题该应用通过Powershell脚本实现自定义股票的通知显示在脚本中定义好股票代码就可以通过全局快捷方式启动查看$stocks = "sh600048","sh601225","sh600750"通过配置快捷方式加快捷键 如 CTRL+F12 就可以全局唤起通知显示效果如果所示10秒后自动关闭,方便上班族使用的利器如需...

2019-11-13 17:03:14 5455

原创 T440p黑苹果 BIOS设置

Bios Settings(开机按 F1)安装MacOS必须执行以下配置In Security menu, set the following settings:Security > Security Chip: must be Disabled, Memory Protection > Execution Prevention: must be Enabled, Vi...

2019-08-07 16:36:35 5979

原创 Spring Boot 开发优点

基于Spring开发Web应用更加容易采用基于注解方式的配置,避免了编写大量重复的XML配置轻松集成Spring家族的其他框架(Spring Boot Starter)Spring JDBCSpring Data提供嵌入式服务器,开发和部署...

2019-06-14 23:34:12 187

原创 Spring Cloud 模块介绍

Spring Cloud 模块介绍Eureka 服务注册中心Ribbon 基于客户端的负载均衡组件Hystrix 容错框架 防止服务的雪崩效应Feign Web服务客户端 简化Http接口的调用Zuul API网关,提供路由转发、请求过滤等功能Config 分布式配置管理Sleuth 服务跟踪Stream 构建消息驱动的微服务应用程序框架Bus 消息代理的集群消息总线...

2019-06-14 23:06:54 112

原创 SpringCloud与Dubbo

首先2者应是不同的东西Dubbo相当于SpringCloud的一个子集,与之对应的是gPRC,Thrift之类的框架从性能比较:Dubbo比Spring Cloud好,前者基于Netty的TCP及二进制的数据传输SpringCloud基于Http, 性能有些损耗从交互比较:REST API更容易测试从社区比较:SpringCloud有强大的社区支持,更新频率快Dubbo最近才...

2019-06-14 22:53:57 136

原创 Microservice 优劣势

1. 优势服务独立部署服务快速启动适合敏捷开发职责专一服务动态按需扩容代码复用2. 劣势分布式部署独立数据库测试难度提升运维难度提升 ​​​​...

2019-06-14 22:53:02 160

原创 重构

架构师对产品做一遍梳理出一个重构方案画一个架构图团队成员培训,提出会遇到的问题,会采用什么方式解决重构采用循序渐进的模式产品重构规划抽出业务服务抽出产品依赖的基础服务核心业务放在最后...

2019-06-14 22:52:17 86

原创 Spring Cloud框架

1. 服务注册2. 服务发现3. 配置中心4. 消息总线5. 负载均衡6. 断路器7. 数据监控主要贡献 Netflix OSS

2019-06-14 22:51:11 92

原创 10020 复制构造函数

以其他对象作为参数创建对象时# Student.hStudent(Student&amp;);# Student.cpp// 复制构造函数Student::Student(Student&amp; student){    strcpy(m_name,student.m_name);    m_age=student.m_age;    strcpy(m_addr,student...

2018-04-13 13:25:25 148

原创 20022 ES5变量提升

function foo():void{ if(true){ var bar:number=0; } console.log(bar);}foo();相当于function foo():void{ var bar:number; if(true){ bar=0; } console.log(bar);}所有变量声明都移到了函数的顶部ES6引入 let、const...

2018-04-12 15:15:35 139

原创 10200 类定义

#ifndef STUDENT_H#define STUDENT_Hclass Student{ public: Student(); void print(); protected: private: char name[128]; int age; char addr[128];...

2018-04-11 23:10:45 253

原创 20021 回调函数

export class HomeComponent implements OnInit { constructor() { let sum = this.testSum(1,2,this.testAdd); console.log(sum); } testAdd(a:number,b:number):number { return a+b; }...

2018-04-11 16:17:55 176

原创 20020 匿名函数

var foo = (name?:string):string =&gt;{  return name?name:'John';}console.log(foo());

2018-04-11 16:03:47 157

原创 20010 流程控制语句 switch

export class HomeComponent implements OnInit { constructor() { enum AlertLevel { info, warn, error } var emails:Array&lt;string&gt; = new Array(); var level:Al...

2018-04-11 15:20:26 129

原创 20001 TS环境搭建

在线编辑器http://www.typescriptlang.org/playgroundnpm install -g typescripttest.tsvar t:number = 1;tsc test.ts 生成test.js文件

2018-04-11 14:08:34 119

原创 10007 函数返回引用类型

#include &lt;iostream&gt;using namespace std;// 函数返回引用类型const int&amp; add(int a,int b,int&amp; c){ c=a+b; return c;}int main(){ int a=23,b=44,c; int d = add(a,b,c); co...

2018-04-10 23:29:01 137

原创 10004 函数模板

#include &lt;iostream&gt;using namespace std;//  函数模板template &lt;typename T&gt;T add(T a,T b){    return a+b;}int main(){    cout&lt;&lt;add(22,24)&lt;&lt;","&lt;&lt;add(23.5,0.5)&lt;&lt;

2018-04-10 23:19:14 131

原创 10004 函数重载

#include &lt;iostream&gt;using namespace std;// 函数重载// 参数列表数据类型相同,返回类型不同,不属于函数重载int add(int a,int b){ return a+b;}double add(double a,double b){ return a+b;}int main(){ c...

2018-04-10 23:06:54 184

原创 10004 函数默认参数

#include &lt;iostream&gt;#include &lt;string&gt;using namespace std;// 函数默认参数void move(int step= 1,int delta= 100);int main(){ move(); return 0;}void move(int step,int delta){ ...

2018-04-10 22:43:15 137

原创 10007 函数参数引用

#include &lt;iostream&gt;using namespace std;// 引用的主要用于在函数参数传递中,解决大块数据或对象的传递效率和空间的问题void swap(int&amp;,int&amp;);int main(){ int a=23; int&amp; b=a; cout&lt;&lt;a&lt;&lt;','&lt;...

2018-04-10 22:06:44 141

原创 30010 Auglar开发环境搭建

npm install -g @angular/cling new ng-demong serve http://localhost:4200

2018-04-10 15:54:39 303

原创 10003 字符统计vector

#include &lt;iostream&gt;#include &lt;vector&gt;#include &lt;string&gt;#include &lt;iomanip&gt;using namespace std;// 字符统计vectorint main(){    vector&lt;string&gt; text;    string rows;...

2018-04-10 14:10:34 127

原创 10200 容器vector操作

#include &lt;iostream&gt;#include &lt;vector&gt;#include &lt;string&gt;using namespace std;// 标准类库vector类型int main(){ vector&lt;string&gt; v(100); v.push_back("Hello"); v.push_bac...

2018-04-10 13:40:02 109

转载 20001 PHP CONENT_TYPE

CONTENT_TYPE = { .load':'text/html', .123':'application/vnd.lotus-1-2-3', .3ds':'image/x-3ds', .3g2':'video/3gpp', .3ga':'video/3gpp', .3gp':'video/3gpp', .3gpp':'video/3gpp', .602':'applicati...

2018-04-10 10:37:13 239

原创 10003 字符统计

#include &lt;iostream&gt;#include &lt;string&gt;using namespace std;// 字符串统计int main(){ string text; string line; int rows=0; while(getline(cin,line)){ if(line=="q"){ ...

2018-04-09 23:45:43 167

原创 10003 标准库string类型

#include &lt;iostream&gt;#include &lt;string&gt;using namespace std;// 标准库string类型int main(){ string key(10,'a'); string name = key + "bbb"; string password = string("123456"); ...

2018-04-09 23:40:27 150

原创 10003 字符串

#include &lt;iostream&gt;#include &lt;string&gt;using namespace std;// char[128]="This is a test";// char* s = "This is a test";// strcat()// strcmp()int main(){ string s1 ="This is ...

2018-04-09 23:37:26 203

原创 10102 循环输入字符串

#include &lt;iostream&gt;#include &lt;string&gt;using namespace std;// 循环输入字符串int main(){ string str; while(cin&gt;&gt;str){ if(str=="exit"){ break; } ...

2018-04-09 22:59:57 964

原创 10101 输出流

#include &lt;iostream&gt; using namespace std; // 空白字符(空格、制表符、回车) int main() { int a,b,c; cin&gt;&gt;a&gt;&gt;b&gt;&gt;c; // 1 2 3 &gt;&gt; 123 cout&lt;&lt;a&lt;&lt;b&

2018-04-09 22:55:47 162

rejson.so redisearch.so

rejson redis5以上可能使用 "redis-server", \ "--loadmodule", "/usr/lib/redis/modules/rejson.so", \ "--loadmodule", "/usr/lib/redis/modules/redisearch.so"]

2021-12-22

mysql8_recovery_tools.py

无需表结构 只要有idb文件就可以恢复数据库

2021-12-06

ml-data.rar

上市公司交易数据 截止到2020/11/2号 csv格式 ,ts_code,trade_date,open,high,low,close,pre_close,change,pct_chg,vol,amount 0,002772.SZ,20201102,8.91,9.03,8.82,8.93,8.96,-0.030000000000001137,-0.3348,40888.48,36383.419 1,002772.SZ,20201030,9.22,9.37,8.9,8.96,9.2,-0.23999999999999844,-2.6087,50883.57,46748.539 2,00277

2020-11-02

libzip-1.3.2.tar.gz

最新版php 7.3.20编译时需要更新这个模块才能安装最新版php 7.3.20编译时需要更新这个模块才能安装

2020-07-30

nginx-rtmp-module.rar

nginx rtmp 流模块可通过 flash 直播流

2020-07-30

StockNotify.rar

工作时间查看股票价格不大方便,不停翻手机也存在问题 该应用通过Powershell脚本实现自定义股票的通知显示 在脚本中定义好股票代码就可以通过全局快捷方式启动查看 $stocks = "sh600048","sh601225","sh600750" 效果说明 https://blog.csdn.net/python2007cn/article/details/103052838

2019-11-13

WEL2304_Student_Lab_Guide_WiNG5_2_RA_10272011(1).pdf

WEL2304 部署 WLAN 解决方案 Wi‐NG 5 实验指南 RFS4000 或符合以下要求的任何其他 RFS o 安装了大于 0 的 AP 许可证 [RFS400 上默认已有 6AP 许可证] o 安装了高级安全许可证 [RFS4000 上的默认已有许可证 o 安装了高级 WIPS 许可证 [如果不存在 – 跳过实验 1] o 您可以将其他 RFS 控制器与此实验指南结合使用,但必须配置某些以太网端口 (缺少 UP1 和 vlan1 默认配置等)  AP650 双模 Radio 或任何其他 WING5 AP  符合以下要求的笔记本电脑 o 笔记本电脑上有 RS‐232 DB9 端

2019-08-28

CDS_User_Guide.pdf

The CDS program provides qualified mailers with updated delivery sequence information for customer-provided address lists. Customer eligibility is determined through the CDS qualification process. Address lists meeting the qualification criteria become eligible for CDS updates. Information on the qualification criteria and process, Electronic Address Sequence Service (EAS), is described in DMM® 507 and in the EAS User Guide (https://postalpro.usps.com/address-quality/eas).

2019-07-08

PHP in Action.pdf

This book’s purpose involves a kind of bigamy. It introduces state-of-the art objectoriented design principles, patterns, and techniques. Then it weds these to two different partners. The first partner is PHP, the programming language. The second partner is the PHP programmer’s everyday work. More specifically, this book is about handling and implementing these principles, patterns, and techniques in PHP with its specific syntax and characteristics. It is also about how to apply them to the specific and common challenges of web programming

2019-06-25

php-7.3.6-nts-Win32-VC15-x64.zip

30 May 2019 cURL: Implemented FR #72189 (Add missing CURL_VERSION_* constants). EXIF: Fixed bug #77988 (heap-buffer-overflow on php_jpg_get16) (CVE-2019-11040). FPM: Fixed bug #77934 (php-fpm kill -USR2 not working). Fixed bug #77921 (static.php.net doesn't work anymore). GD: Fixed bug #77943 (imageantialias($image, false); does not work). Fixed bug #77973 (Uninitialized read in gdImageCreateFromXbm) (CVE-2019-11038). Iconv: Fixed bug #78069 (Out-of-bounds read in iconv.c:_php_iconv_mime_decode() due to integer overflow) (CVE-2019-11039). JSON: Fixed bug #77843 (Use after free with json serializer). Opcache: Fixed possible crashes, because of inconsistent PCRE cache and opcache SHM reset. PDO_MySQL: Fixed bug #77944 (Wrong meta pdo_type for bigint on LLP64). Reflection: Fixed bug #75186 (Inconsistent reflection of Closure:::__invoke()). Session: Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). SOAP: Fixed bug #77945 (Segmentation fault when constructing SoapClient with WSDL_CACHE_BOTH). SPL: Fixed bug #77024 (SplFileObject::__toString() may return array). SQLite: Fixed bug #77967 (Bypassing open_basedir restrictions via file uris). Standard: Fixed bug #77931 (Warning for array_map mentions wrong type). Fixed bug #78003 (strip_tags output change since PHP 7.3).

2019-06-25

php-7.3.6.tar.gz

Version 7.3.6 30 May 2019 cURL: Implemented FR #72189 (Add missing CURL_VERSION_* constants). EXIF: Fixed bug #77988 (heap-buffer-overflow on php_jpg_get16) (CVE-2019-11040). FPM: Fixed bug #77934 (php-fpm kill -USR2 not working). Fixed bug #77921 (static.php.net doesn't work anymore). GD: Fixed bug #77943 (imageantialias($image, false); does not work). Fixed bug #77973 (Uninitialized read in gdImageCreateFromXbm) (CVE-2019-11038). Iconv: Fixed bug #78069 (Out-of-bounds read in iconv.c:_php_iconv_mime_decode() due to integer overflow) (CVE-2019-11039). JSON: Fixed bug #77843 (Use after free with json serializer). Opcache: Fixed possible crashes, because of inconsistent PCRE cache and opcache SHM reset. PDO_MySQL: Fixed bug #77944 (Wrong meta pdo_type for bigint on LLP64). Reflection: Fixed bug #75186 (Inconsistent reflection of Closure:::__invoke()). Session: Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). SOAP: Fixed bug #77945 (Segmentation fault when constructing SoapClient with WSDL_CACHE_BOTH). SPL: Fixed bug #77024 (SplFileObject::__toString() may return array). SQLite: Fixed bug #77967 (Bypassing open_basedir restrictions via file uris). Standard: Fixed bug #77931 (Warning for array_map mentions wrong type). Fixed bug #78003 (strip_tags output change since PHP 7.3).

2019-06-21

Learn PHP 7

LearThis new book on PHP 7 introduces writing solid, secure, object-oriented code in the new PHP 7: you will create a complete three-tier application using a natural process of building and testing modules within each tier.

2018-05-04

Design Patterns in PHP and Laravel

Learn each of the original gang of four design patterns, and how they are relevant to modern PHP and Laravel development. Written by a working developer who uses these patterns every day, you will easily be able to implement each pattern into your workflow and improve your development. Each pattern is covered with full examples of how it can be used. Too often design patterns are explained using tricky concepts, when in fact they are easy to use and can enrich your everyday development. Design Patterns in PHP and Laravel aims to break down tricky concepts into humorous and easy-to-recall details, so that you can begin using design patterns easily in your everyday work with PHP and Laravel.

2018-05-03

Laravel框架关键技术解析

本书第1章到第4章主要介绍了与Laravel框架学习相关的基础部分,读者可以深入了解该框架的设计思想,学习环境搭建,了解PHP语法知识和HTTP协议;第5章到第14章分别从某个方面介绍Laravel框架是如何构建和使用的,包括程序的生命周期、服务容器和数据库等,同时也将其中的一些构建技术剥离开,使读者可以学习该框架的构建技术和思想,如设计模式的内容;第15章是一个简单的实例,将前面的学习内容串联起来并在实践中应用,使读者学会使用该框架定制化地设计应用程序。本书既适合想了解Laravel框架构建技术的读者,也适合想深入了解Laravel框架的读者

2018-05-03

Spring boot 2.x

Applications and Microservices with the Spring Framework

2018-03-10

新世纪QQ五笔码库

修正“民”字的编码,全码为:NNAV,带有民字偏旁的全改为取该编码;另外用户需注意:“式”字的编码为 AAYI,简码为 AAY。

2017-10-22

pd16.5.5.0 x64 SP05 patch

SAP PowerDesign 16.5.5 x64 PATCH 可用

2017-07-09

GitHub入门与实践

代码审查不到位,审查效率低下 只有编程者本人能看懂的代码、可靠性不高的代码直接被部署至正式环境中 因键入错误、理解错误而造成的低级代码错误导致BUG频繁出现 没有机会和其他人互相交流代码、共享知识,相互学习、指正改善 没有一个简单高效、能在一天之内添加多个功能的开发流程

2017-05-25

CI 3.1.1配置Jade模板引擎

为什么要配置Jade模板引擎,而不是Smarty之类 原因很简单NodeJS与PHP之间摇摆不定时,前端至少统一了 配置Jade主要用到composer,需要用之前开启一个composer application/config.php $config['composer_autoload']=true; CI3.1.1 默认加载路径 application/vendor/autoload.php

2016-10-28

MyEclipse 2016 Stable 1.0 keygen&crack

2016-08-13

tfpdf-1.2.4

经测在php-7.0.8中运行良好 与以前fpdf加一个chinese.php完全不同,是官方推荐的支持utf-8类库,加ttf字体非常方便直接拖入即可 示例代码: $pdf = new tFPDF(); $pdf->AddPage(); $pdf->image('http://e.hiphotos.baidu.com/image/h%3D200/sign=c898bddf19950a7b6a3549c43ad0625c/14ce36d3d539b600be63e95eed50352ac75cb7ae.jpg', 10,10,30,46,'JPG'); // Add a Unicode font (uses UTF-8) $pdf->AddFont('Yahei','','Monaco_Yahei.ttf',true); $pdf->SetFont('Yahei','',8); // Load a UTF-8 string from a file and print it //$txt = file_get_contents('HelloWorld.txt'); $pdf->Write(8, "中文测试"); $pdf->ln(10); for($i=0;$i<50;$i++) { //$pdf->Write(8, "中文测试"); $ln = ($i+1)==0?1:0; $pdf->Cell(15,5,'中文测试',1,$ln,'C'); //$pdf->Ln(0); } // Select a standard font (uses windows-1252) $pdf->SetFont('Arial','',14); $pdf->Ln(10); $pdf->Write(5,'The file size of this PDF is only 12 KB.'); $pdf->Cell(80); // Centered text in a framed 20*10 mm cell and line break $pdf->Cell(20,10,'Title',1,1,'C'); // Go to 1.5 cm from bottom $pdf->SetY(-15); // Select Arial italic 8 $pdf->SetFont('Arial','I',8); // Print centered page number $pdf->Cell(0,10,'Page '.$pdf->PageNo(),0,0,'C'); $pdf->Output('abc.pdf','I');

2016-07-11

编写PHPMSSQLProxy实现SQL Server 2014代理服务

现在的PHP-CGI在IIS支持的不错,可以快整部署 在PHP网站下载编译的二进制包(PHP 7.0.6)解压就算安装完成了, 但在Linux下访问MSSQL2014非常容易,反而在Windows 平台下也没有合适的官方组件可使用(PHP 7.0.6没有MSSQL连接组件) 与是用C#编写了一个SocketServer进行数据库的读写操作 PHPService.cs 负责侦听 ClientService.cs 负责业务解析 DatabaseHelper.cs 负责数据库操作 安装成服务后PHP就可以通过socket访问了非常方便

2016-05-13

解析通达信代码表上传到数据库

通达信的股票代码放在shm.tnf和szm.tnf 新版的略有变化,解析后直接存入数据 结合上期数据采集,可以看到完整的股票数据了 用到存储过程 BEGIN select count(*) into @code from codes where code=st_code; if @code= 0 THEN insert into codes (code,name,market) values(st_code,st_name,st_market); ELSE update codes SET name = st_name where code=st_code; end if; END

2016-05-06

CodeIgniter_3.x_用户手册

把PHP CI用户手册编译成了CHM,内容与在线手册相同,便于翻看

2016-05-01

通达信数据文件转成数据库

实现了从通达信软件的数据文件中提取数据保存至MySQL的功能,每运行一次就同步到最新状态

2015-11-20

Postgesql服务器端编程

服务端编程环境设置 第一个PL/pgSQL函数 返回结构数据 PL/pgSQL触发器 事件触发 调试PL/pgSQL 用PL/Python 用C编写高级函数

2015-09-01

HTML5揭秘(Up and Running)

本书全面深入地对HTML5相关的技术进行详细介绍和剖析。

2012-08-02

ADO.NET 3.5经典实例

本书针对Visual Studio 2008、.NET框架3.5和SQL Server 2008进行了更新,演示了如何使用LINQ和其他.NET新技术更方便、更高效地实现数据访问。本书的解决方案涵盖了下面这些内容: 连接数据、处理断开连接数据对象、查询、搜索、分析、添加、修改和传输数据、维护数据库的完整性、通过代码处理.NET Windows和WEB窗体用户界面中的数据、处理XML数据、优化数据访问、枚举和维护数据库对象、SQL Server CLR集成

2012-07-29

Web 配色宝典(配色手册)

颜色绝不会单独存在。事实上,一个颜色的效果是由多种因素来决定的:反射的光,周边搭配的色彩,或是观看者的欣赏角度。 有十种基本的配色设计,分别叫做:  无色设计(achromatic)、类比设计(analogous)、冲突设计(clash)、  互补设计(complement)、单色设计(monochromatic)、中性设计(neutral)、分裂补色设计(splitcomplement)、原色设计(primary)、  二次色设计(secondary)以及三次色三色设计(tertiary)。

2012-05-11

Android应用开发详解

全书共18章,从基础到案例覆盖了Android应用开发的三大领域: 基础应用、网络应用和游戏应用。

2011-09-23

ADO.NET本质论

深入剖析ADO.NET本质,探索类 接口 属性和方法的工作原理.

2010-06-05

SYMBIAN OS C++高效编程.part2.rar

  本书旨在帮助读者编写良好的基于Symbian OS的C++程序。全书共分为21章,分别介绍了Symbian OS中的类命名约定、异常退出、清除栈、两段构造、描述符、良好的描述符风格、动态的数组与缓冲区、使用活动对象的事件驱动多任务、活动对象、Symbian OS的线程与进程、客户/服务器原理、客户/服务器框架实践、二进制类型、ECOM、严重错误、用断言发现bug、调试宏与测试类、兼容性、轻量级模板、API、良好的编码风格等内容。   本书适合于使用Symbian OS进行程序开发的人员。

2010-04-05

SYMBIAN OS C++高效编程.part1.rar

本书旨在帮助读者编写良好的基于Symbian OS的C++程序。全书共分为21章,分别介绍了Symbian OS中的类命名约定、异常退出、清除栈、两段构造、描述符、良好的描述符风格、动态的数组与缓冲区、使用活动对象的事件驱动多任务、活动对象、Symbian OS的线程与进程、客户/服务器原理、客户/服务器框架实践、二进制类型、ECOM、严重错误、用断言发现bug、调试宏与测试类、兼容性、轻量级模板、API、良好的编码风格等内容。   本书适合于使用Symbian OS进行程序开发的人员。

2010-04-05

C 语言最大难点揭秘

C 语言最大难点揭秘 C 语言最大难点揭秘 C 语言最大难点揭秘

2009-10-06

OpenGL三维图形程序设计(CHM)

OpenGL是目前最新的开放式的三维图形标准,用OpenGL编写的程序不仅可以在SGI、 DEC、SUN、HP等图形工作站上运行,而且可以在微机环境下运行。本书系统地讲述了OpenGL 三维图形程序设计的基本方法概念。全书共分四大篇,即引导篇、基础篇、提高篇和辅助篇。 引导篇分三章,主要介绍了OpenGL的概况和在Windows NT 下OpenGL的主要运行机制;基 础篇分七章,重点介绍了OpenGL的模型建立、基本变换、颜色设置、光照模型和材质定义 的概念及其编程方法;提高篇分七章,特别介绍了OpenGL的图像处理、纹理映射、复杂物 体建模、特殊光和特殊效果处理以及OpenGL显示列表、帧缓存与动画的程序设计技巧。 书中列举了大量的编程实例,并且全部存于本书附盘中。所有例程都经过调试通过,是 OpenGL开发者必备之参考。 本书无论是对初次涉足三维图形世界的有关人员,还是对OpenGL三维图形开发人员而 言,都是一本十分实用的技术指导和参考书籍。此外,本书还可以作为从事计算机图形工作 的一般人员的三维图形概念引导,而且可以作为OpenGL三维图形编程的培训教材。

2009-05-06

空空如也

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

TA关注的人

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