저작권 관련된 음악을 다운로드시 사용자에게 전적으로 책임이 있으므로 저작권 없는 노래만 검색하길 바랍니다.
저작권 관련된 음악을 다운로드시 사용자에게 전적으로 책임이 있으므로 저작권 없는 노래만 검색하길 바랍니다.
<?php
/*
By Matt Mullenweg > http://photomatt.net
Inspired by Dan Benjamin > http://hiveware.com/imagerotator.php
Latest version always at:
http://photomatt.net/scripts/randomimage
*/
// Make this the relative path to the images, like "../img" or "random/images/".
// If the images are in the same directory, leave it blank.
$folder = '';
// Space seperated list of extensions, you probably won't have to change this.
$exts = 'jpg jpeg png gif';
$files = array(); $i = -1; // Initialize some variables
if ('' == $folder) $folder = './';
$handle = opendir($folder);
$exts = explode(' ', $exts);
while (false !== ($file = readdir($handle))) {
foreach($exts as $ext) { // for each extension check the extension
if (preg_match('/\.'.$ext.'$/i', $file, $test)) { // faster than ereg, case insensitive
$files[] = $file; // it's good
++$i;
}
}
}
closedir($handle); // We're not using it anymore
mt_srand((double)microtime()*1000000); // seed for PHP < 4.2
$rand = mt_rand(0, $i); // $i was incremented as we went along
header('Location: '.$folder.$files[$rand]); // Voila!
?>
학교 앞 정문 옆을 지나가며 쓸쓸히 낙엽을 보면서 감상하고 있는 중간 무언가 물체가 있는 것을 보고 좀 더 가까이 가 보았습니다.
(그 밑에서 점심드시고 계시는 남자 두 학우분...소주 까고 계신건가;)
ThinkGreek에서 재미있는 제품을 봤는데요. 옆에 사진과 같이 Wi-Fi 신호 강도에 따라 티셔츠에 그림이 나타나네요.

Product Features
1년에 한 번씩은 꼭 삼성 AS센터를 들립니다.
이상하게 삼성 하드디스크만 에러를 왜이리 뱉어내는지 뽑기 운이 없는건지
벌써 4개째 교환이군요.
하지만 삼성하드 AS의 특징은 거의 묻지마 교환 조건이라 이번에 Raid0으로 묶어서 쓰고 있던 하드 320기가 두 개중 한개 불량으로 두개 다 가지고 가봤더니 재고가 없다면서 400기가 하드 두개로 준다고 하네요.
320+320=640
400+400=800
160기가 만큼 이득(?)을 본셈이지만 무언가 느낌상 아닌거 같은데라는 느낌이;
이번에도 Raid0으로 일단 구성해보고 뻑나면 다시 교체로...
하드는 제조년월일로 2년동안은 무상AS라고 하니 2년안에 또 찾아가겠군요.



