Computer

IntelのCPUの末尾にあるK, S, T, Uなどのアルファベットについてまとめ

IntelのCPUの末尾にあるK, S, T, UなどのアルファベットについてまとめCore i以降のCPUで末尾についているアルファベットのまとめ IntelのCore iシリーズには、Core i7-6700K, Core i5-4690S, Core i5-6600Tなど末尾に「K」「S」「T」といったアルファベットが付与されており、それぞれにちゃんとした意味があります。というわけでまとめです。 この末尾についているアルファベットがCPUの世代を示... ...

Backup system to build!

Last week, my home system was broken! This system is virtual machine by VMware(ESXi5.0). Sevral virtual OS was not to start. I was recovering the system. But part of data was lost. I thought it need strong backup system to my home system. So, I will b...

Conditions by timestamp by PHP

PHP:
  1. // Specifies the file path where PHP wants to check the timestamp
  2. $file_path = '/var/www/html/';
  3.  
  4. if($dir = opendir($file_path)){
  5.     while(($file = readdir($dir)) !== false){
  6.         if($file != '.' && $file != '..'){
  7.             // Get timestamp
  8.             $get_unix = filemtime($file);
  9.                
  10.             // Specify the time range(condition)
  11.             if(strtotime('2013-02-01 22:30:00') <= $get_unix && $get_unix <= strtotime('2013-02-01 22:40:00')){
  12.                 echo $file.' is 「2013/02/01 22:30:00」 ~ 「2013/02/01 22:40:00」['.date('Y/m/d H:i:s',$get_unix).']<br />';
  13.             }else{
  14.                 echo $file.'is not「2013/02/01 22:30:00」 ~ 「2013/02/01 22:40:00」['.date('Y/m/d H:i:s',$get_unix).']<br />';
  15.             }
  16.         }
  17.     }
  18. }

Dual display is dark!

When I start the computer, Dual display is dark.
Dark, Black, Blind…

Why?

I updated Windows of my PC 1/12.

One of them, there was a graphics driver “Intel Corporation – Graphics Adapter WDDM1.1, Graphics Adapter WDDM1.2 – Intel(R) HD Graphics 4000“.
Perhaps, I think because of this driver was caused to this phenomenon.

So, I uninstalled this driver.
And, I installed new graphics driver from Intel website.

Install later, rebooted my PC.
And I resolved this problem !

タイトルとURLをコピーしました