Quantcast
Channel: Andy Blog
Browsing all 119 articles
Browse latest View live
↧

Welcome to my blog!

This is the first post.Test code snippets:defprint_hi(name)puts"Hi, #{name}"endprint_hi('Tom')#=> prints 'Hi, Tom' to STDOUT.

View Article


Image may be NSFW.
Clik here to view.

Create Blog

Create a new blogInitialize a blogopen command linejekyll new blog start servercommand linecd blog jekyll serve open browser, enter http://localhost:4000create github pagecreate a new responsitory...

View Article


Image may be NSFW.
Clik here to view.

Improve CSS development productivity using Sass and Compass Part1 - configure...

This article introduces CSS preprocessor technique with Sass and Compass to develop clean, organized and efficient CSS code. Download source code at hereBackgroundCSS is an fundamental technique to...

View Article

Image may be NSFW.
Clik here to view.

Grab and parse data using Selenium WebDriver Part 1 - Selenium fundamentals

This article introduces how to use Selenium WebDriver to simulate browser operations such as load a page, manipulate DOM, extract data and provides ready-to-go sample code in Java and...

View Article

Image may be NSFW.
Clik here to view.

Improve CSS development productivity using Sass and Compass Part1 - configure...

This article introduces CSS preprocessor technique with Sass and Compass to develop clean, organized and efficient CSS code. Download source code at hereBackgroundCSS is an fundamental technique to...

View Article


Image may be NSFW.
Clik here to view.

Grab and parse data using Selenium WebDriver Part 1 - Selenium fundamentals

This article introduces how to use Selenium WebDriver to simulate browser operations such as load a page, manipulate DOM, extract data and provides ready-to-go sample code in Java and...

View Article

Image may be NSFW.
Clik here to view.

Using regular expression in Javascript

This article introduces the basics of applying regular expression in Javascript.IntroductionWhat Is a Regular Expression?A regular expression is a sequence of characters that forms a search pattern....

View Article

Image may be NSFW.
Clik here to view.

Apply Google reCAPTCHA into your site

This article introduces how to apply Google reCAPTCHA into form submission of your siteCAPTCHA is a system designed to distinguish human from machine input. It is typically used in websites with images...

View Article


Image may be NSFW.
Clik here to view.

SQL Tips - over, partition by, row_number and rank

Here are some tips of SQL functions and all scripts passed under SQL Server 2012.PrerequisiteLet’s assume we have a [Order] table:create table [dbo].[Order]( Id int identity(1,1) , purchase_order_no...

View Article


Image may be NSFW.
Clik here to view.

ASP.NET MVC vs. Web Api

IntroductionThis article explains the differences between ASP.NET MVC and ASP.NET Web API and also describes how to combine the Web API with the MVC.ASP.NET MVCASP.NET MVC is a web application...

View Article

Image may be NSFW.
Clik here to view.

ASP.NET WebApi file upload implementation

This article introduces how to implement file upload using Web Api 2.Upload file(s) to a specified location of server[Route("files")] [HttpPost] public async Task<FileResult> UploadFilesAsFile()...

View Article

Image may be NSFW.
Clik here to view.

Git fundamentals - branch, fork, stash, merge, rebate, squash

This article introduces Git fundamental knowledge including branch, fork, stash, merge, rebate. It explains major conceptions of Git branching model and workflow for each commands. These commands are...

View Article

Image may be NSFW.
Clik here to view.

Best practice of using Git to integrate teamwork

This article introduces GitFlow and GitHub Flow by which we can smartly use Git to integrate codes within team members. It presents two models to manage changes and merge codes. They focus on project...

View Article


Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 1 - Introduction

IntroductionSQL Server Reporting Services (SSRS) is a server-based report generating software by Microsoft. It is part of suite of Microsoft SQL Server services. Basically, it can be used to prepare...

View Article

Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 2 - Visual Studio

Install SQL Server Data ToolsSQL Server Data Tools (SSDT) is a development tool that we can used to build SQL Server relational databases, Azure SQL databases, Integration Services packages, Analysis...

View Article


Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 3 - Create more reports

Create a dropdown reportLet’s create a dropdown report including date, order_no, amount, quantity. We can drill down the date via year/quarter/month/day and view special ordersPrepare sql querycreate...

View Article

Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 4 - Create charts

Create a chartPrepare queryselect i.title as device, sum(t.quantity_purchased * transaction_price_value) as amount, round(sum(t.quantity_purchased * transaction_price_value) /...

View Article


Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 5 - Integrate reports in web page

Prepare report(s)/chart(s)Report1:Report2:Integrate reports - way1: use iframefind the report file at http://localhost/reportserveropen a report and get the url...

View Article

Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 2 - Visual Studio

Install SQL Server Data ToolsSQL Server Data Tools (SSDT) is a development tool that we can used to build SQL Server relational databases, Azure SQL databases, Integration Services packages, Analysis...

View Article

Image may be NSFW.
Clik here to view.

SQL Server Reporting Services Tutorial 3 - Create more reports

Create a dropdown reportLet’s create a dropdown report including date, order_no, amount, quantity. We can drill down the date via year/quarter/month/day and view special ordersPrepare sql querycreate...

View Article
Browsing all 119 articles
Browse latest View live