
Software Development



Coding Basic
Coding templates Template 1 Get/ Validate/ Do/ Return Example [js] function test { var elms = document.getElementsByTagName(‘table’); for (var i = 0; i < elms.length; i++){ […]

Page Loading
How to create a loading bar? Create a hidden (display:”none”) block This block has a loading bar (gif image) This block freeze the whole screen […]

Menus
Fixed menu in every page Show a menu at mouse cursor when left/ right click

Authentication
Login Authentication

Questions
What is the main element for an mobile applicaiton?


Send Mail: All about
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 […]

Read/ Write File/Folder
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); } […]