No Image

Cron jobs

August 2, 2017 hung-nb 0

How to find jobs calling a certain stored procedure? SQL Server [sql] DECLARE @Search varchar(255) SET @Search=’keyword’ SELECT j.name as job_name, s.step_id, s.step_name FROM msdb.dbo.sysjobsteps […]

No Image

Send Mail: All about

August 2, 2017 hung-nb 0

Windows Server Develop a Windows Service on SQL Server This service will check the MAIL_QUEUE table every a certain of time to send emails Mail […]

No Image

Read/ Write File/Folder

August 2, 2017 hung-nb 0

Read a file Node JS Buffering Contents with fs.readFile [js] // synchronously var fs = require(‘fs’); try { var data = fs.readFileSync(‘my-file.txt’, ‘utf8’); console.log(data); } […]

No Image

Debug techniques

July 30, 2017 hung-nb 0

Bottom To Top You go through step by step from the first step where bug hasn’t happen to the step where bug appears Pros You […]

No Image

WordPress

July 13, 2017 hung-nb 0

How to hide “Featured Image”? Add custom css[css].mh-image-placeholder { display: none; }[/css] Permission script [js] #!/bin/bash # # This script configures WordPress file permissions based […]

No Image

PDF Export

July 4, 2017 hung-nb 0

Crystal Report – Working with rpt file How to display text on footer of last page only? Format Object >> Supress Formula[html]if PageNumber = TotalPageCount […]

No Image

ASP.net & Javascript

July 3, 2017 hung-nb 0

What is Ajax life cycle in ASP.NET? http://ajaxtutorials.com/general/client-side-page-life-cycle-with-updatepanel-with-javascript/ Why is Javascript affect gone after postback? Issue When clicking on a button to get selected option […]

No Image

JavaScript & jQuery: HTML DOM

June 20, 2017 hung-nb 0

How to debug JavaScript? [js]debugger[/js] Work with string How to split a string into an array? Javascript [js]var text = ‘part1||part2||part3’;var labelArr = text.split(‘||’);[/js] How […]