AfuWin64.zip
AMI_Aptio_V_5.12全集,2019.2.21发布。
在优快云找了半开,一个公开的刷机程序,为何都要那么高的下载分,有些过份了。在网上找了一份,传上来供新人下载吧...
gb2312中包含的所有汉字,注意没有对应表,只是汉字
想找一个纯的GB2312包含汉字的内容,一直没找到,网上都是带编码对应的,想找个纯字的真难,自己生成了一个。
新版CKEditor实现图片上传,绝对靠谱
近日要用到CKEditor实现图片上传,网上找了好多代码,要么跑不起来,要么不全,比如不知道如何返回值。跳了不少坑,现在彻底搞定。
目前上传用的是ASP.NET,可以随便切换成PHP、JAVA或其它的语言
只需要把ckeditor目录下的config.filebrowserImageUploadUrl的值,换成你上传文件的程序名就行了。
SysTools.SQL.Log.Analyzer SQLSERVER日志查看恢复工具.rar
SysTools SQL Log Analyzer ,可通过日志文件,查看所有SQL语句,并进行相应操作,亲测好使
网上那些4.X版本的,都不支持2008R2或2012,此版本都可以和谐
最新版本的NVIDIA cuDNN FOR WIN 10
NVIDIA cuDNN is a GPU-accelerated library of primitives for deep neural networks.
MySQL王者晋级之路
MySQL王者晋级之路, 本书是对 MySQL 基础知识的全面解析,也是他多年工作和教学经验的结晶,其内容几乎 涵盖了初学者对 MySQL 知识需求的方方面面,是一本非常值得学习的 MySQL 著作,本书将会 带你进入 MySQL 的神奇殿堂
数据库领域图灵奖获得者
数据库领域图灵奖获得者信息介绍
Michael Stonebraker
他比较新的观点认为,数据库领域可以有很多赢家,“将有3到5个,甚至 6个非常不同的数据库系统架构成为赢家,而在每一类下都会有2到3个成 功的供应商。传统的关系型数据库系统将慢慢收缩,这一切转变也许需要 十年。” Stonebraker教授作为数据库界的权威,还编辑过一本红宝书Readings in Database Systems,收集了最有价值的数据库领域论文,现在已经出到第 4版,极具价值。
made
MongoDB应用设计模式中文版
本书将MongoDB应用设计模式应用到许多具有挑战性的领域上,如电子商务、内容管理、在线游戏等等。
MONGODB实战中文版
MongoDB实战全面系统的讲解了设计、实现、安装、维护MONGODB的各方面内容。全书分三部分,第一部分为与传统数据 库差别,第二部分为实战教程,第三为数据库的维护管理
ETH以太坊入门
http://ethfans.org/posts/what-is-ethereum-17-12-15
Vᐟғ25ړᰦԧᥴզॡ࣑
video : https://www.youtube.com/watch?v=66SaEDzlmP4
translation:
http://ethfans.org/posts/Ethereum-in-25-minites-vision-2017-1
http://ethfans.org/posts/25-minutes-in-Ethereum-vision-2017-2
获取SQL语句的执行计划v1
获取 SQL 语句的执行计划
方法 1:使用 autotrace 查看执行计划
配置使用 autotrace
下面的例子为用户 scott 配置使用 autotrace。
创建角色 PLUSTRACE,并将角色授予用户 scott
Oracle Database 12c RAC 体系结构
A cluster comprises multiple interconnected servers that
appear as one server to end users and applications.
• With Oracle Clusterware, Oracle RAC enables you to
cluster an Oracle database.
– Oracle Clusterware enables nonclustered and RAC
databases to use the Oracle high-availability infrastructure.
– Oracle Clusterware enables you to create a clustered pool of
storage to be used by any combination of nonclustered and
Oracle RAC databases.
• Noncluster Oracle databases have a one-to-one
relationship between the database and the instance.
• Oracle RAC environments have a one-to-many
relationship between the database and instances.
– An Oracle RAC database can have up to 100 instances
DotNetBarcode.dll 生成二维码,亲手试过支持中文
网上有好多都说支持中文,实际都不行
这个是我试过可以支持中文的
代码例子从网上找了个...
string code = Request.Params["code"];
DotNetBarcode dnb = new DotNetBarcode(DotNetBarcode.Types.QRCode);
Bitmap img = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(img);
dnb.WriteBar(code, 0, 0, 120, 120, g);
Response.ContentType = "image/gif";
img.Save(Response.OutputStream, ImageFormat.Gif);