Le Kevin dot com

photographic-poetic-musical horizon

For Carlos

No comments

But then he said:
“No, no, let it be fucked!
Let the bombs rain down,
Pulverize this shit.
Let them be our final
Catharsis,
Cleansing:
Let them purify us,
Exalt us:
Flense us of ourselves.
Let the sun shine through
The dust,
The smoke:
The vaporized remnants
Of the remnants of our lives.
And as the dust settles
To the ground,
To the beginning,
Let the sun illuminate
The essence of our being
In clarity.”

– Dan Sutton, 1/28/2012

PROMISE ULTRA133 TX2 is a very old ide controller, its driver is rare. I had this driver  backuped a while back, find yourself lucky here.

Download 86 bit and 64 bit driver for Windows 7 here:

http://www.box.com/s/qnlacxr0ij8n1lob2om4

 

Checking SSL Certificate

click here: http://www.digicert.com/help/index.htm

Troubleshooting by using DigiCertUtil.exe tool

downoad here: https://www.digicert.com/util/DigiCertUtil.zip
 or here DigiCertUtil

Troubleshooting by using Command Line

certutil -store my "Your SSL Serial Number"
certutil -repairstore my "Your SSL Serial Number"
certutil /? for further help

Common Problems

On iPhone, go to System, then add vietnamese keyboard…

20111221-234127.jpg20111221-234143.jpg20111221-234152.jpg

How to type in vietnamese
20111221-234159.jpg

The easy way to validate email on javascript; using this IsEmail prototype function “String.prototype.isEmail=function()….”

String.prototype.isEmail=function()
{
  var ap=this.indexOf("@");
  var ap2=this.lastIndexOf("@");
  var dp=this.lastIndexOf(".");
  var elen=this.length-1;
  return (ap>0) && (ap<elen) && (dp>ap) && (dp<elen)
    && (ap==ap2) && (this.charAt(ap+1)!=".");
}

Background: ASP.NET is a technology for developing dynamic web applications. It can run on Microsoft IIS web servers and supports several languages including Visual Basic .NET, C# and JScript .NET. ASP.NET allows administrators to restrict access to any directory by placing a web.config file in the directory. This causes the server to redirect visitors to an authentication page, where the visitor would be prompted to enter a password.

Critical Problem CVE: CVE-2004-0847
Impact: An attacker could gain unauthorized access to password-protected pages on the web server or create a cross-site scripting attack.

Programmatically  Fix:

Global.asax code sample (Visual Basic .NET)
Sub Application_BeginRequest(Sender as Object, E as EventArgs)
    If (Request.Path.IndexOf(chr(92)) >= 0 OR _
        System.IO.Path.GetFullPath(Request.PhysicalPath) <> Request.PhysicalPath) then
        Throw New HttpException(404, "Not Found")
    End If
End Sub

Global.asax code sample (C#)
void Application_BeginRequest(object source, EventArgs e) {
    if (Request.Path.IndexOf('\\') >= 0 ||
        System.IO.Path.GetFullPath(Request.PhysicalPath) != Request.PhysicalPath) {
        throw new HttpException(404, "not found");
    }
}

source: http://support.microsoft.com/?kbid=887459

or via HTTP module: http://support.microsoft.com/?kbid=887289