전체 글(97)
-
Setting up server cache on Apache 2.4.7 (ubuntu)
Setting up server cache on Apache 2.4.7 (ubuntu) up vote2down votefavorite3What is the best way to set up server caching on Apache 2.4?I have searched the internet and found a few resources and tutorials specific to Apache 2.2 - but apache have dropped modules since 2.2 and renamed others. Specifically, I would like to set up caching on my Ubuntu environment using the equivalent of Apache 2.2 "m..
2018.04.12 -
[jQuery] input 박스에 maxlength 만큼 입력했을 때 자동으로 다음 박스로 이동하기
$(".inputs").keyup(function () { if (this.value.length == this.maxLength) { $(this).next('.inputs').focus(); } }); 출처: http://88240.tistory.com/460?category=409238 [shaking blog]
2018.04.12 -
PHP에서 원격 이미지의 유효성을 체크하는 방법
< ? function check_image($url) { function check_image($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); $output = curl_exec($ch); curl_close($ch); $headers = array(); foreach(explode("\n",$output) as $line){ $parts = explode(':' ,$line); if(count($parts) == 2){ $h..
2018.04.12 -
[ Firebase ] Database JavaScript 연동하기
[ Firebase ] Database JavaScript 연동하기 ( Chat Ex ) 출처: http://codeman77.tistory.com/65?category=715553 [☆]
2018.04.04 -
[ Firebase ] 웹에서 클라우드 메시징 요청보내기
[ Firebase ] 웹에서 클라우드 메시징 요청보내기 출처: http://codeman77.tistory.com/56?category=715553 [☆]
2018.04.04 -
메세지 창 띄우기 2018.03.27