Folder Options-Show hidden files and folders not function

Here some fix to restore “Show hidden files and folders” to work as usual,

1. Click “Start” -> “Run…” (or press Windows key + R)

2. Type “regedit” and click “Ok”.

3. Find key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced)

4. In the right hand area, double click “hidden” and change the value to 1

5. Find key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL

6. In the right hand area, double click “CheckedValue” and change the value to 1.

If it isn’t, create a new key called “CheckedValue” as a DWORD (hexadecimal) with a value of 1.

The “Show hidden files & folders” should now work normally. 🙂

If it doesn’t work, please download new update of your antivirus and scan your system completely.

ORA-09314: sltln: error translating logical name

Do anyone know how can this error means, how to prevent it ?

This is the result if i search over internet,

ORA-09314: sltln: error translating logical name
Cause: Internal buffer may have overflowed

Action: See OSD error accompanying this message

After all, i restart oracle service to fix this. But that is not a solution before i know what the cause of that.

Get MAC Address with java

import java.io.*;
import java.net.*;
import java.util.*;
import java.util.regex.*;

public class GetMac
{
public static void main(String[] args)
throws IOException
{
String address = new GetMac().getMacAddress();
System.out.println(address);
}

public String getMacAddress() throws IOException
{
String macAddress = null;
String command = “ipconfig /all”;
Process pid = Runtime.getRuntime().exec(command);
BufferedReader in =
new BufferedReader(
new InputStreamReader(pid.getInputStream()));
while (true) {
String line = in.readLine();
if (line == null)
break;
Pattern p = Pattern.compile(“.*Physical Address.*: (.*)”);
Matcher m = p.matcher(line);
if (m.matches()) {
macAddress = m.group(1);
break;
}
}
in.close();
return macAddress;
}
}