Archive for the 'Programming' Category

Using VBScript – WMI – to query cooling fan statistics

The following script displays status information for all (monitorable) cooling fans on a Windows system.  This includes power supply fans, cpu fans, case fans, etc. On Error Resume NextSet objWMIService = GetObject(“winmgmts:” & “{impersonationLevel=impersonate}!\\.\root\cimv2″)Set colItems = objWMIService.ExecQuery(“Select * from Win32_Fan”) For Each objItem in colItems    Wscript.Echo “Name: ” & objItem.Name    Wscript.Echo “Active Cooling: ” & [...]

9 Free Webmaster Tools You Can Fall In Love With

Webmasters and developers don’t need a whole lot of money to spend on tools in order to work efficiently and be productive. Here is a list of free tools that help me run my everyday webmaster chores. Notepad++ Dreamweaver and such designing tools might have become very advanced in the recent years but I am [...]

How to Become a Programmer

You can become a computer programmer by going to college to study computer science or management information systems and beginning an entry level computer programmer job after college. However, if you cannot afford to spend years in college before you begin your programming career, you can learn programming from experienced developers or teach yourself computer [...]

SSH tunneling in your application

Introduction This article is dedicated to the task of securing MySQL client-server connection using functionality provided by the Secure Shell (SSH) protocol. To be exact, the SSH tunneling concept is utilized. We will review the steps needed to build secure MySQL client applications and implement a sample one ourselves. MySQL traffic is not the only [...]

Analysis of a Mandatory Access Restriction System for Oracle DBMS

This paper is devoted to the analysis of mandatory access restriction system for Oracle DBMS. As the result, several leakage channels are discovered. For many information system based on DBMS it is often a problem to implement access restriction, which takes information value into account. It is usually crucial for large-scale information systems of government [...]

Double Text – Starting The Program From Within Visual Studio

Double Text is a repeat text writer that works with virtually any scripting and programming language. I use the program extensively to store, document and repeat code snippets for all of the programming languages in which I work. I find that it is to my advantage, therefore, to have this repeat text writer readily available [...]