自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(47)
  • 资源 (22)
  • 问答 (1)
  • 收藏
  • 关注

原创 基于flexbox的运动主题响应式网页

使用到fontawesome 5<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="C:\Wnmp\html\shop-cart-2\fontaw

2021-02-23 10:29:49 240

原创 基于Flexbox 的响应式个人博客样式

效果图:源代码<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>响应式Blog -- 基于Flexbox</title> <style>

2021-01-26 10:03:07 184 1

原创 flexbox card的小例子

效果如下:代码如下<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{

2021-01-26 02:31:28 218

原创 Flexbox 响应式网页例子

使用到font-awesome, google 字体。效果代码<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="C:\Wnmp\html\

2021-01-18 07:08:27 222

原创 flexbox小例子--一个商场响应式网站的导航和图片展示部分

以下是基于flexbox的商城产品展示区域<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Flexbox Shop</title> <style> *{ marg

2021-01-14 05:01:06 190

原创 PHP小例子(1)--jQuery检查session过期后并实现跳转

PHP7.2+Bootstrap 5测试,未通过,貌似jsquery中的setinterval有问题。用到的数据库文件 -- -- Table structure for table `tbl_users` -- CREATE TABLE IF NOT EXISTS `tbl_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` va

2021-01-02 19:29:47 222

原创 PHP小例子(6)--jQuery实现数据的增删改查综合案例

本例子是一个Ajax(jQuery)增删改查的综合案例Bootstrap 5 + PHP 7.2通过https://www.webslesson.info/2016/02/live-table-add-edit-delete-using-ajax-jquery-in-php-mysql.html 修改而来。适合初学者。用到的数据库叫test,下面的是sql代码-- ----------------------CREATE TABLE IF NOT EXISTS `tbl_sample` (

2021-01-02 17:59:05 184

原创 PHP小例子(8)-- 通过jQuery实现数据插入

功能:Ajax添加数据,jQuery实现页面元素添加Bootstrap 5 + PHP 7.2 测试参考:https://www.webslesson.info/2016/02/dynamically-add-remove-input-fields-in-php-with-jquery-ajax.htmlSQL文件---- 使用test数据库--CREATE TABLE IF NOT EXISTS `tbl_name` ( `id` int(11) NOT NULL AUTO_INCRE

2021-01-02 14:59:35 117

原创 PHP小例子(5)--手动加载评论

前言:手动加载评论在国外网站(比如油管等)的评论区已经不再是通过分页进行,而是通过手工点击一个按钮或者不断下拉屏幕进行加载。其技术本质就是Ajax,并不复杂。代码修改自https://www.webslesson.info/2016/02/how-to-load-more-data-using-ajax-jquery.htmlBootstrap 5 + PHP 7.2...

2021-01-02 13:11:31 117

原创 PHP小例子(4)-- 调用MYSQL数据库的存储过程

Bootstrap 5 + PHP 7.2测试通过 -- -- Table structure for table `tbl_users` -- CREATE TABLE IF NOT EXISTS `tbl_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(20) NOT NULL, PRIMARY KEY

2021-01-01 21:18:05 167

原创 PHP 小例子(3)--jQuery,Ajax 实现数据库添加

修改自:https://www.webslesson.info/2016/06/php-jquery-ajax-insert-radio-button-value-on-click.htmlBootstrap 5 + PHP7.2测试通过test数据库下的表格 -- -- Table structure for table `tbl_gender` -- CREATE TABLE IF NOT EXISTS `tbl_gender` ( `id` int(11) NOT N

2021-01-01 18:07:15 115

原创 Flex box 小例子(2)

书接前文,在给出了一个例子后,再给一个例子:navbar<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Navbar in Flexbox</title> <style> *{ box-sizing: border-box; magin:0;

2020-12-27 14:11:57 133

原创 PHP小例子(0)--购物车

本项目基于www.webslesson.info上的例子修改而来,Bootstrap 5 加持,经过wnmp(PHP7.2)测试通过,可以做为初学者学习使用。<?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); session_start(); // connect to DB by mysqli

2020-12-27 10:15:40 178

原创 Flex box 小例子(1)

前言:网页元素布局从最初的table画表格阶段(史前到2000前后),到div+float(2000到2017),再到现在的flex box, grid(2017后)的布局方式,已经过去了20年了。flex尤其是grid布局出现后,基本上取代了float的功能,再不用左右float了。至于兼容性,最新的的浏览器全部支持flex box与grid的布局。今天开始,以几个例子展示一下flex box的布局。如果需要了解flex box的基础语法,请离开本教程。0.一个简单的响应式布局...

2020-12-24 17:58:52 84

原创 基于Zephir 的 Phalcon 框架即将死亡 --- 2020年8月的官方blog

前言:内容来源于Phalcon 官方blogPhalcon 是基于C语言(或者说Zephir组件)的一个PHP框架(也有人称为PHP扩展,因为它太不像其他PHP框架了),以小巧高效著称,历来是最快的PHP框架,没有之一。Phalcon小组开发人员Serghei离开导致Zephir这个半成品面临无人维护升级的尴尬地位,其积累下的诸多bug使得Zephir面临重构的需求。这实际上已经不可能了。另一方面,2020年底PHP 8即将发布,这使得Zephir下开发的Phalcon框架面临严重的语法兼容性问题。

2020-11-15 21:34:43 1087

原创 一步一步学PHP MVC 框架--一个简单例子

前言:MVC模式是PHP下的默认开发模式。不懂MVC模式的请出门左转,有很多PHP在MVC的开发的教程。本教程再赘述一下环境:XAMPP(PHP 7.4.10) + Ubuntu 20.04。安装略过。Step 0:创建目录:在/opt/htdocs/tutorials/创建基本目录如下,这里没有什么好说的。Step 1: 初始化程序这里把.htaccess的部分放在后面,把初始化的部分提前。许多写程序的人都会有一个基本思路:先把初始化的部分准备好,然后其余的部分随后跟进,这里也把这部分提前。

2020-11-01 13:30:41 555

原创 Linux/Unix下多进程之间通过共享内存交替读写的例子(一)

前言:Linux/Unix系统编程中的一个重要概念是进程以及进程的通信问题。不懂进程、进程通信、共享内存的朋友请出门左传看看基本概念,这里就不再赘述。逻辑描述:首先生成一个共享内存区域,通过fork生成1个子进程,然后父子进程交替进行读写。这里,由于没有进行同步化的处理(加锁的问题),仅仅作为展示。本来,想通过almart的信号来处理的,会修改后在下一个例子中进行展示。代码 oss.c#include <stdio.h>#include <stdlib.h>#include

2020-10-22 11:11:22 629

原创 Flexbox响应式教程

Flexbox属于一个html的一个布局,其设计初衷为的是便于适应新时期多种屏幕碎片化的趋势,具有良好的拉伸适应性。其浏览器兼容性也比较好。本讲把重点放在响应式的例子,而非flexbox的基本概念上,通过几个例子进行演示。0.flexbox小结这个小结旨在把容易弄错的内容总结一下:父容器的属性:display, flex-direction, flex-wrap, flex-flow, justify-content, align-items, align-content子元素的属性:order,

2020-08-25 16:07:43 257

原创 MySQL 5.7+ 实用技巧、最佳实践、索引等

前言:本讲将讲解MySQL的实用技巧.本讲内容不适合对sql语法毫无基础的初学者。参考内容https://github.com/michaljuhas/sample-databasehttps://github.com/michaljuhas/SQL-training-advanced使用平台:wampserver x64+mysql 5.7.x0.导入数据1.代码书写风格注释缩进, tab空行关键词打头阵1 = 1 (这里相当于一个关节点,便于debug使用的)别名的可读性至

2020-08-17 10:39:33 205

原创 一步一步学Bootstrap 4(2)-- PhotoX项目

Step 0: 导入bootstrap 4 + fontawesome(略)Step 1:banner部分 和对应的style.css文件index.html:<!doctype html><html> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-w

2020-08-03 16:00:43 6246

原创 Codeigniter 4基础教程(11)-- 注册登陆案例(1)

0.创建users的数据表CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` varchar(255) DEFAULT NULL, `u_email` varchar(255) DEFAULT NULL, `u_password` varchar(255) DEFAULT NULL, `u_link` varchar(255) DEFAULT NULL, `u_date` datetime NOT NU

2020-07-18 07:26:03 1449

原创 Codeigniter 4基础教程(10)-- 注册登陆案例(0)

前言:本节将以Codeigniter 4.0.3为基础,讲解一个登陆的案例0.安装Wamp环境(略)wamp使用得比较普遍,我使用的是PHP 7.3 的版本。安装步骤网上很多,略过。1.安装配置CI4下载ci4的源代码报,解压到wamp的www/ci4signup/文件夹中拷贝app/public/的.htaccess和index.php到app/下,以此来去掉路径中的public。修改app/index.php,去掉…/, 代码如下$pathsPath = realpath(FCPATH .

2020-07-12 08:21:54 1208 1

原创 以OOP之名--重构PHP代码小教程(2)

前言:前面0-1完整讲解了TennisGame的重构过程。本节将以一个Insurance的例子继续。本节将使用到PHPUnit。注意:PHPUnit的安装过程略过,我使用的是PHP7.1,所以,用到了PHPUnit 7.5.20的安装包。而且,不同版本的PHPUnit的手册差异比较大,在展示的代码或许无法在你的PHP环境中正确运行。这部分的PHPUnit可以忽略。原始代码注意:这里的原始代码中的链接是一个无意义的链接,仅为了演示代码重构使用,关键是var_dump返回的那个array&lt

2020-07-05 19:25:33 126

原创 以OOP之名--重构PHP代码小教程(1)

前言:把TennisGame进行到底Step 0: OOP化OOP是种便于程序设计的好概念,尤其是类型声明引入PHP后,OOP的作用被强化了。把player OOP化<?php class TennisGame{ public function getScore(Player $player1, Player $player2){ $score = ''; if($player1->score == $player2->score){ swit

2020-07-04 18:46:27 99

原创 以OOP之名--重构PHP代码小教程(0)

前言:由于一些历史原因,偶尔还是会遇到一些陈年老码,笔者学习PHP的过程中第二个阶段就重构了一些项目实战的源代码(基于PHP4+HMTL4的改成PHP7+HTML5)。就目前业界而言,多数PHP网站其实是一锤子买卖--业者花一次钱,之后就要求跑一万年,因此至今仍然有一些PHP4和PHP5的项目在运行。但是,针对一些需要更新后续的网站,要么第一次创建时需要考虑选择MVC框架,要么就需要重构PHP代码。0.PHP的重构常见内容参数签名设置1.网球小案例 tennisgame.php这里是个OOP

2020-07-04 15:40:45 112

原创 Codeigniter 3.1.11笔记(4) -- 数据库Migration之创建表格以及回滚演示

数据库迁移是几乎所有MVC模式的框架都会涉及到的内容,其目的在于便于数据库相关的更新维护,比方说,在某个时间点,某个表需要修改结构(增加或者删除一列的),迁移的程序也就起到了版本控制的作用,用以对应修改前以及修改后的版本。0.配置好数据库(略)1.创建migration的文件夹以及文件application/...

2020-07-03 19:35:54 519

原创 Codeigniter 3.X 的增删改查小例子(2)

书接上文,接着把数据填充的部分完成。1.读取数据到list.php之中application/views/list.php<!DOCTYPE html><html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>CRUD application -- create</title> <link rel="styleshee

2020-06-27 00:38:41 150

原创 Codeigniter 3.X 的增删改查小例子(1)

本讲讲以一个数据库增删改查的小例子演示codeigniter 3.x的使用。1.安装WAMPSERVER(略)2.下载Codeigniter 3.X,并解压到wampserver 的 www目录中,这里改名为crud0(略)3.配置Codeigniter 3.X以及数据库application/config/config.php$config['base_url'] = 'http://localhost/crud0/';application/config/autoload.p.

2020-06-26 16:40:02 213

原创 Codeigniter 3.1.11笔记(3)

本集讲一个小的login例子

2020-06-19 10:12:32 231

原创 Codeigniter 3.1.11笔记(2)

获取数据的active方法其余不变,models/New_model.php<?php class New_model extends CI_Model{ public function database(){ $this->load->database(); // $sql = $this->db->query("SELECT * FROM posts"); $sql = $this->db->where('i

2020-06-18 16:01:23 217

原创 Codeigniter 3.1.11笔记(1)

前言:纯粹个人笔记,好记性比不上个烂笔头1.安装wamp+下载codeigniter 3.X2.welcome controler, welcome message view3.views/Pages/home.php, controllers/Page.php public function index() { // $this->load->view('welcome_message'); // echo 'hello ci3 from me'; $data

2020-06-17 13:34:08 329

原创 网页优化,从网页加载开始

前言:本文的目的在于介绍网页加载的那些事儿,加载越快越好。0.优化关键:降低http请求的数量(因为一个网页中会有多个部分分别发出请求)降低资源体积图片优化js优化css优化代码优化优化http的请求顺序(一般是顺序请求,因此,可以关注一下代码顺序)服务器端优化其中,3,4,5,6,与浏览器相关。1.网页元素加载的一般顺序接受第一个字节之前 – 受限于服务器速度,网速,后台程序的速度。一般人物200ms之内的都不错,超过500ms的就需要看看哪里出了问题。其顺序一般如下:DOM

2020-06-14 09:42:21 169

原创 Codeigniter 4基础教程(8)-- 一个简单的博客(blog)例子(一)

前言:迄今为止,我们讲解了Codeigniter 4 的几个常见概念。从这一将开始,我们以一个简单的博客(Blog)项目演示一下如何使用Codeigniter 4.0.安装配置安装wamp 64位的, 7.2+(略过)下载Codeigniter 4包,解压到www/blog创建一个虚拟主机,重启wamp的全部服务浏览器输入blog.net打开app/Config/App.php public $baseURL = 'http://blog.net/'; public $indexPa

2020-06-08 15:28:22 2044

原创 老电脑安装Genymotion的一个小教训

2019年,开始接触Kotlin,当时没有买SSD,于是看了大家的推荐使用Genymotion这个非官方辅助虚拟机。Genymotion的性能的确比安卓官方的虚拟机快不少,我的感觉是它能和SSD+安卓官方虚拟机启动速度差不多。但是,由于当时我的电脑很老(CPU i7 2670qm大家可以估计出5年以上了),在安装最新的Genymtion时出了问题,问题根源在于这一代配的intel显卡过于老旧。于是,不得不安装genymotion 2.12.2,安装之后可以运行Android 8及其以下的版本。后来,SS

2020-06-08 07:14:55 151

原创 Codeigniter 4 基础教程(5)-- 文件上传小例子

本节将讲解如何上传文件0.uploadPost.phpapp/Views/uploadPost.php<form method="post" action="" enctype="multipart/form-data"> <input type="text" name="title" required> <input type="file" name="banner" required> <input type="submit" name="" val

2020-06-07 15:18:21 863

原创 Codeigniter 4基础教程(6)-- Model部分

本节课讲演示一个Model0.新建数据表仍然使用之前的codeigniter4数据库,并且需要修改对应的app/Config/Database.php。数据表的内容如下:CREATE TABLE `posts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `banner` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `intro` varchar(255) NOT NULL, `content

2020-06-07 13:36:53 1504

原创 Codeigniter 4基础教程(3)-- url,bootstrap,routes

讲点常见的困扰:url去哪儿了?PHP中常见的链接(说白了就是url地址)往往令人困扰,一不小心就跑丢了。这里给出一个小例子<?php namespace App\Controllers;class MyHelper extends BaseController{ public function index() { // return view('welcome_message'); // echo '<h1>Hello Codeigniter 4.0.3<h1

2020-06-06 15:15:47 714

原创 Codeigniter 4基础教程(2)-- 版本差异,模板,一个form例子

1.模板模板的概念源远流长,其目的在于把网页分成若干部分,把不变的部分和变动的部分区分开来,便于管理。其实,PHP语言本身的特性决定了模板其实是个多余的鸡肋,虽然laravel,phalcon等也有相应的引擎模板,大家也在用,但是没有模板引擎照样可以换新天。2.模板的例子创建app/controllers/ViewTemplate.php。这里有个小问题:之所以用echo好几个view而非return,因为return只有一次。<?php namespace App\Controllers;

2020-06-06 13:53:27 3008 1

原创 Codeigniter 4基础教程(1)-- Wamp+CodeIgniter 4以及helloworld

前言: Codeigniter 是PHP语言上比较普遍的MVC框架(不懂MVC的请出门左转,那里有教程)。相对而言比较简单,效率较高(一般认为仅次于Phalcon),市场占有率比较高(一般认为仅次于laravel)。缺点是Codeigniter更新不够快,新的内容不够多,比如,csrf等内容就曾经长期没有获得更新。0.WAMP注意:codeigniter 4.0.3 需要至少PHP 7.2+的平台。这里选择Wamp安装包。具体安装请参考其他教程。安装后的效果如下1.安装Codeigniter 4 +

2020-06-06 10:18:31 2962 4

原创 Phalcon 4 教程(9)--借助Bootstrap修改Form

前言:前面介绍了form的提交,这里以bootstrap为例把form的样式做修改。首先,Phalcon 4默认继承了bootstrap 4.1的库,打开浏览器,查看源代码如下:修改app/views/signup/index.phtml的源代码如下:<h2>Sign up using this form</h2><?php $path = strpos(BASE_PATH,'\\')? substr(BASE_PATH,strrpos(BASE_PA

2020-06-06 05:02:54 171

Flattern.zip

一个视频教程配合的html模板。后续会把bilibili上面把原视频放上去。 Laravel Vue js Blog Project Here are the things you will learn in this series: * How use Vue Router with Laravel(Using for routing) * How to Use Vue filter * How use Vuex with Laravel (Used for state management) * How to Install AdminLTE 3 (Template used for admin panel) * How to Use Font Awesome 5 on Laravel (Used for admin panel icon) * Vform validation with Laravel (Used for form validation) * Relational Database with Laravel (Used for Maintainance DB) * Axios and Ajax Request (Passing request for fetch and crud operation) * How to Use Moment js on Laravel (Used for formating date time) * How to Use sweetalert2 (Used for flash message) * How to Image intervation with Laravel (Used for image resize) * How to Use lodash * And much more...

2020-03-12

Mastering Media with the Raspberry Pi

Create and maintain Raspberry Pi-based entertainment systems in a comprehensive and fun manner. Instead of front-loading a bunch of theory and minutia, this book takes a more practical approach of showing what’s needed when it’s needed. You’ll first explore the possibilities and options available. Then you’ll learn the hardware and software requirements based on various builds and projects. Finally, you’ll be guided through building media centers, music players, recording studios, etc. Mastering Media with the Raspberry Pi presents all of this and more in an easy-to-understand-and-accomplish way, in plain English.

2017-10-31

Software Testing Automation Tips

Quickly access 50 tips for software test engineers using automated methods. The tips point to practices that save time and increase the accuracy and reliability of automated test techniques. Techniques that play well during demos of testing tools often are not the optimal techniques to apply on a running project. This book highlights those differences, helping you apply techniques that are repeatable and callable in professionally run software development projects. Emphasis is placed on creating tests that, while automated, are easily adapted as the software under construction evolves toward its final form. Techniques in the book are arranged into five categories: scripting, testing, the environment, running and logging of tests, and reviewing of the results. Every automation engineer sooner or later will face similar issues to the ones covered in these categories, and you will benefit from the simple and clear answers provided in this book. While the focus of the book is on the use of automated tools, the tips are not specific to any one vendor solution. The tips cover general issues that are faced no matter the specific tool, and are broadly applicable, often even to manual testing efforts.

2017-10-31

Using SVG with CSS3 and HTML5

Using Scalable Vector Graphics (SVG) for illustrations only scratches the surface of this format’s potential on the web. With this practical guide, you’ll learn how to use SVG not only for illustrations but also as graphical documents that you can integrate into complex HTML5 web pages, and style with custom CSS. Web developers will discover ways to adapt designs by adding data based graphics, dynamic styles, interaction, or animation. Divided into five parts, this book includes: SVG on the web: Understand how SVG works with HTML, CSS, and JavaScript to define graphics Drawing with markup: Learn the vector language of x and y coordinates that let SVG create basic and custom shapes Putting graphics in their place: Use the coordinate system to draw SVG shapes and text at different scales and positions Artistic touches: Explore how color is used, how strokes are created and manipulated, and how graphical effects like filters, clipping, and masking are applied SVG as an application: Make your graphic more accessible to humans and computers, and learn how to make it interactive or animated

2017-10-30

Data Structures and Transmission

The recent advances in computer networks and the widespread use of the Internet, together with other developments in telecommunications technology have made it possible to send messages and exchange information around the whole world. The high variety and the large amount of data exchanged across communication networks have increased over the last few years. This means the threat of interception during data transmission has become a major concern. Important research aimed at designing algorithms to help prevent interception and enhance data security is currently of primary relevance. This advanced technology requires new and efficient encryption methodologies. These algorithms can assure security for fast evolving communication and storage applications that must be secured against intrusion threats, which unfortunately are increasing in sophistication and frequency. This book analyzes new research on the technology and applications of data structures and data transmission.

2017-10-30

OCA Oracle Database 12c SQL Fundamentals I Exam Guide Exam 1Z0-061

A Complete Study System for OCA Exam 1Z0-061 Prepare for the Oracle Certified Associate Oracle Database 12c SQL Fundamentals I exam with this Oracle Press guide. Each chapter features challenging exercises, a certification summary, a two-minute drill, and a self-test to reinforce the topics presented. This authoritative resource helps you pass the exam and also serves as an essential, on-the-job reference. Get complete coverage of all OCA objectives for exam 1Z0-061, including: Data retrieval using the SQL SELECT statement Restricting and sorting data Single-row functions Using conversion functions and conditional expressions Reporting aggregated data with the group functions Displaying data from multiple tables with joins Using subqueries to solve problems Using the set operators Manipulating data with DML statements Using DDL statements to create and manage tables Electronic content includes: 150+ practice exam questions with detailed answers and explanations Score report performance assessment tool PDF copy of the book

2017-09-13

Professional Microsoft SQL Server 2016 Reporting Services and Mobile Reports

Professional Microsoft SQL Server 2016 Reporting Services and Mobile Reports provides a comprehensive lesson in business intelligence (BI), operational reporting and Reporting Services architecture using a clear, concise tutorial approach. You’ll learn effective report solution design based upon many years of experience with successful report solutions. Improve your own reports with advanced, best-practice design, usability, query design, and filtering techniques. Expert guidance provides insight into common report types and explains where each could be made more efficient, while providing step-by step instruction on Microsoft SQL Server 2016. All changes to the 2016 release are covered in detail, including improvements to the Visual Studio Report Designer (SQL Server Data Tools) and Report Builder, Mobile Dashboard Designer, the new Report Portal Interface, HTML-5 Rendering, Power BI integration, Custom Parameters Pane, and more. The Microsoft SQL Server 2016 release will include significant changes. New functionality, new capabilities, re-tooled processes, and changing support require a considerable update to existing knowledge. Whether you’re starting from scratch or simply upgrading, this book is an essential guide to report design and business intelligence solutions. Understand BI fundamentals and Reporting Services architecture Learn the ingredients to a successful report design Get up to speed on Microsoft SQL Server 2016 Grasp the purpose behind common designs to optimize your reporting Microsoft SQL Server Reporting Services makes reporting faster, easier, and more powerful than ever in web, desktop and portal solutions. Compatibility with an extensive variety of data sources makes it a go-to solution for organizations across the globe. The 2016 release brings some of the biggest changes in years, and the full depth and breadth of these changes can create a serious snag in your workflow. For a clear tutorial geared toward the working professional, Professional Microsoft SQL Server 2016 Reporting Services and Mobile Reports is the ideal guide for getting up to speed and producing successful reports.

2017-08-31

Sql Server 2016 High Availability Unleashed

azw3格式的,不是pdf,英文版。可以转换成pdf。 Learn a formal, high availability methodology for understanding and selecting the right HA solution for your needs Deep dive into Microsoft Cluster Services Use selective data replication topologies Explore thorough details on AlwaysOn and availability groups Learn about

2017-08-31

Pro Apache Jmeter

jmeter web 测试工具,英文 原生pdf。

2017-08-26

Scaling PHP Applications

2014版本的,210页,基本上没有多少PHP语法的部分。 都是高级的一些应用,DNS,Cache,PHP-FPM 等。 值得一看。

2015-08-11

Visual Basic 2005 step by step

English version. CHM format

2010-06-08

python programming for the absolute beginner

English version, CHM format. Beginner for python.

2010-06-08

Java Swing 2006

Like a guide for Java Swing English version, CHM format

2010-06-08

Java Concurrency in Practice

本书为国外计算机高校推荐的Java方面多线程的权威书籍。 英文,pdf。不是CHM的(不便于打印)。 另外,海外的pdf链接大都加密了。本书未加密。 7zip 压缩的zip包。 望大家多多支持。

2009-12-06

PHP 安全基础 网页编程 动态网页

php安全基础。基本问题可以解决。是一本权威的入门书籍。中文版的。

2009-01-11

用多媒体学C#用户手册part_2

为第二个文件包.与第一部分,共包含8个文件.是12m的文件分卷压缩而成.

2008-11-01

用多媒体学C#用户手册

是用多媒体学C#的说明书.其中含密码所需的汉字.我试过一次.可以通过.分卷压缩.共8个文件,压缩为2个压缩包.此为part_1

2008-11-01

Visual Basic.net at work:build 10 enterprise project

Quite a good book guiding you for applications. I reference it some times. Hope it is helpful for you guys.

2008-09-30

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

TA关注的人

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