Postgesql服务器端编程
服务端编程环境设置
第一个PL/pgSQL函数
返回结构数据
PL/pgSQL触发器
事件触发
调试PL/pgSQL
用PL/Python
用C编写高级函数
通达信数据文件转成数据库
实现了从通达信软件的数据文件中提取数据保存至MySQL的功能,每运行一次就同步到最新状态
解析通达信代码表上传到数据库
通达信的股票代码放在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
ADO.NET 3.5经典实例
本书针对Visual Studio 2008、.NET框架3.5和SQL Server 2008进行了更新,演示了如何使用LINQ和其他.NET新技术更方便、更高效地实现数据访问。本书的解决方案涵盖了下面这些内容:
连接数据、处理断开连接数据对象、查询、搜索、分析、添加、修改和传输数据、维护数据库的完整性、通过代码处理.NET Windows和WEB窗体用户界面中的数据、处理XML数据、优化数据访问、枚举和维护数据库对象、SQL Server CLR集成
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');
C 语言最大难点揭秘
C 语言最大难点揭秘 C 语言最大难点揭秘 C 语言最大难点揭秘
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
GitHub入门与实践
代码审查不到位,审查效率低下
只有编程者本人能看懂的代码、可靠性不高的代码直接被部署至正式环境中
因键入错误、理解错误而造成的低级代码错误导致BUG频繁出现
没有机会和其他人互相交流代码、共享知识,相互学习、指正改善
没有一个简单高效、能在一天之内添加多个功能的开发流程
编写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访问了非常方便
Web 配色宝典(配色手册)
颜色绝不会单独存在。事实上,一个颜色的效果是由多种因素来决定的:反射的光,周边搭配的色彩,或是观看者的欣赏角度。
有十种基本的配色设计,分别叫做:
无色设计(achromatic)、类比设计(analogous)、冲突设计(clash)、
互补设计(complement)、单色设计(monochromatic)、中性设计(neutral)、分裂补色设计(splitcomplement)、原色设计(primary)、
二次色设计(secondary)以及三次色三色设计(tertiary)。
ADO.NET本质论
深入剖析ADO.NET本质,探索类 接口 属性和方法的工作原理.
OpenGL三维图形程序设计(CHM)
OpenGL是目前最新的开放式的三维图形标准,用OpenGL编写的程序不仅可以在SGI、
DEC、SUN、HP等图形工作站上运行,而且可以在微机环境下运行。本书系统地讲述了OpenGL
三维图形程序设计的基本方法概念。全书共分四大篇,即引导篇、基础篇、提高篇和辅助篇。
引导篇分三章,主要介绍了OpenGL的概况和在Windows NT 下OpenGL的主要运行机制;基
础篇分七章,重点介绍了OpenGL的模型建立、基本变换、颜色设置、光照模型和材质定义
的概念及其编程方法;提高篇分七章,特别介绍了OpenGL的图像处理、纹理映射、复杂物
体建模、特殊光和特殊效果处理以及OpenGL显示列表、帧缓存与动画的程序设计技巧。
书中列举了大量的编程实例,并且全部存于本书附盘中。所有例程都经过调试通过,是
OpenGL开发者必备之参考。
本书无论是对初次涉足三维图形世界的有关人员,还是对OpenGL三维图形开发人员而
言,都是一本十分实用的技术指导和参考书籍。此外,本书还可以作为从事计算机图形工作
的一般人员的三维图形概念引导,而且可以作为OpenGL三维图形编程的培训教材。
SYMBIAN OS C++高效编程.part1.rar
本书旨在帮助读者编写良好的基于Symbian OS的C++程序。全书共分为21章,分别介绍了Symbian OS中的类命名约定、异常退出、清除栈、两段构造、描述符、良好的描述符风格、动态的数组与缓冲区、使用活动对象的事件驱动多任务、活动对象、Symbian OS的线程与进程、客户/服务器原理、客户/服务器框架实践、二进制类型、ECOM、严重错误、用断言发现bug、调试宏与测试类、兼容性、轻量级模板、API、良好的编码风格等内容。
本书适合于使用Symbian OS进行程序开发的人员。
SYMBIAN OS C++高效编程.part2.rar
本书旨在帮助读者编写良好的基于Symbian OS的C++程序。全书共分为21章,分别介绍了Symbian OS中的类命名约定、异常退出、清除栈、两段构造、描述符、良好的描述符风格、动态的数组与缓冲区、使用活动对象的事件驱动多任务、活动对象、Symbian OS的线程与进程、客户/服务器原理、客户/服务器框架实践、二进制类型、ECOM、严重错误、用断言发现bug、调试宏与测试类、兼容性、轻量级模板、API、良好的编码风格等内容。
本书适合于使用Symbian OS进行程序开发的人员。
Android应用开发详解
全书共18章,从基础到案例覆盖了Android应用开发的三大领域:
基础应用、网络应用和游戏应用。
CodeIgniter_3.x_用户手册
把PHP CI用户手册编译成了CHM,内容与在线手册相同,便于翻看
HTML5揭秘(Up and Running)
本书全面深入地对HTML5相关的技术进行详细介绍和剖析。
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.
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.
阿里云对象存储OSS 快速入门.pdf
Alibaba Cloud Object Storage Service (OSS) is a network-based data storage service. Using OSS, you can store and retrieve a variety of unstructured data files over the network at any time,including text files, images, audios, and videos
阿里对象存储服务基于云存储服务,OSS可以在线存储和接收非结构化数据,包含文本、图像、声音和视频
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).
rejson.so redisearch.so
rejson redis5以上可能使用
"redis-server", \
"--loadmodule", "/usr/lib/redis/modules/rejson.so", \
"--loadmodule", "/usr/lib/redis/modules/redisearch.so"]
Spring boot 2.x
Applications and Microservices with the Spring Framework
libzip-1.3.2.tar.gz
最新版php 7.3.20编译时需要更新这个模块才能安装最新版php 7.3.20编译时需要更新这个模块才能安装
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).
nginx-rtmp-module.rar
nginx rtmp 流模块可通过 flash 直播流
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 端
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
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).
StockNotify.rar
工作时间查看股票价格不大方便,不停翻手机也存在问题
该应用通过Powershell脚本实现自定义股票的通知显示
在脚本中定义好股票代码就可以通过全局快捷方式启动查看
$stocks = "sh600048","sh601225","sh600750"
效果说明 https://blog.youkuaiyun.com/python2007cn/article/details/103052838
pd16.5.5.0 x64 SP05 patch
SAP PowerDesign 16.5.5 x64 PATCH
可用
Laravel框架关键技术解析
本书第1章到第4章主要介绍了与Laravel框架学习相关的基础部分,读者可以深入了解该框架的设计思想,学习环境搭建,了解PHP语法知识和HTTP协议;第5章到第14章分别从某个方面介绍Laravel框架是如何构建和使用的,包括程序的生命周期、服务容器和数据库等,同时也将其中的一些构建技术剥离开,使读者可以学习该框架的构建技术和思想,如设计模式的内容;第15章是一个简单的实例,将前面的学习内容串联起来并在实践中应用,使读者学会使用该框架定制化地设计应用程序。本书既适合想了解Laravel框架构建技术的读者,也适合想深入了解Laravel框架的读者
新世纪QQ五笔码库
修正“民”字的编码,全码为:NNAV,带有民字偏旁的全改为取该编码;另外用户需注意:“式”字的编码为 AAYI,简码为 AAY。
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