Improving Adsense CTR in Forum Pages
Content is currently being developed.
They are closing the Fairview Overpass in Halifax for Construction. Nice. Where the heck is that?
What is a Disconnected Recordset? A Disconnected Recordset is A recordset object that exists in an application, but does not have an associated data connection associated with it. Why use a Disconnected Recordset? The ADO Recordset is considered an extremely “rich object model” which means it provides more functionality than say, an array. Also, you can load […]
Well, my website was hacked with iframe injections pointing to ageegle dot ru -ageegle.ru- last week (not this site). The hacker added malicious code to my index or default web files that included iframe tags pointing to a site called ageegle dot ru (do not visit that site) on port 80. This page, when visited, […]
Below is a draft of a “Terms and Conditions of Use” or “Disclaimer” statement template. Website “Disclaimer” or “Terms and Conditions of Use” Template. There are a few tags to replace in the template before publishing it to a web property: {{ORG_NAME}} – Your main or Parent Company’s Name. (e.g. the “bing” website’s parent would […]
If you are looking for a Cross Browser Compatible CSS Opacity code, you need look no further. The following provides 100% opacity (which is the same as 0% transparency.) 1 2 3 4 5 6 7 8 9 10 Body { …your body css… -moz-opacity: 1.0 !important; -webkit-opacity: 1.0!important; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important; filter: alpha(opacity=100) !important; opacity: […]
Groove is a component of Microsoft Office enterprize 2007. If you don’t use the groove service, you can uninstall it. Go to “Add-Remove Programs” find your MS office installation in the menu click CHANGE (not remove) Find the Groove item in the list Change the indicator to “Not available” let the process finish reboot. This […]
Can I place adsense for search units on a 404 not found page? Can I place adsense text ad units on that same 404 not found page? This is a group of questions that comes up a great deal. There are also a lot of mixed answers out there. If you have a plain, uncustomized […]
This is a simple VBS VBScript that I use to delete all files in a given folder on a machine. It is particularly useful to delete internet cache files or cookies. You can set a scheduled job actually, to perform this task nightly. This script could be easily modified to, say, clear out your temporary […]
I needed a quick vbscript to terminate a specific windows process that seemed to hang. This is the script that will do it. It uses SQL to lookup the process name from the win32_process list, then uses the terminate function to close it. NOTE: this vbs to terminate a windows process was only tested on […]