목록분류 전체보기 (48)
(❀╹◡╹)
$url = (isset($_SERVER['HTTPS'])?'https://':'http://').$_SERVER['HTTP_HOST'];
zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_CPU_%EC%82%AC%EC%9A%A9%EB%A5%A0_%ED%99%95%EC%9D%B8 리눅스 CPU 사용률 확인 - 제타위키 다음 문자열 포함... zetawiki.com 1. mpstat | tail -1 | awk '{print 100-$NF}' 2. top -b -n1 | grep -Po '[0-9.]+ id' | awk '{print 100-$1}'
ckeditor.com/ckeditor-4/download/ CKEditor 4 - Download Download a ready-to-use CKEditor 4 package. ckeditor.com 위 페이지에서 zip 파일 다운로드 후 압축 풀어서 서버에 업로드 [에디터 사용할 파일] [config.js] (CKEditor 다운로드 시 함께 구성되어있는 파일임) CKEDITOR.editorConfig = function( config ) { ...(생략) // Simplify the dialog windows. // 삭제할 dialog 기술 config.removeDialogTabs = 'image:Link;image:advanced;link:advanced'; config.height = 400;..
thecancerus.com/how-to-fix-mysql-error-error-code-30/ How To Fix MySQL Error – Error Code 30 - theCancerus Yesterday was one of those days when things that can go wrong went wrong and today was MySQL day, and problem when accessing any table on a live site resulted in following error MySQL Error - Can't create/write to file '/tmp/#sql_7d3f_0.MYI' (Errcode: 30) thecancerus.com forum.glpi-project...
function resize_crop_image($max_width, $max_height, $source_file, $dst_dir, $crop = true, $watermark = false, $quality = 70) { $imgsize = getimagesize($source_file); $width = $imgsize[0]; $height = $imgsize[1]; $mime = $imgsize['mime']; switch($mime){ case 'image/gif': $image_create = 'imagecreatefromgif'; $image = 'imagegif'; break; case 'image/png': $image_create = 'imagecreatefrompng'; $image..
function format_tel($tel) { // 숫자 외 문자 제거 $tel = preg_replace('/[^0-9]/', '', $tel); return preg_replace('/(^02.{0}|^01.{1}|^15.{2}|^16.{2}|^18.{2}|[0-9]{3})([0-9]+)([0-9]{4})/', '$1-$2-$3', $tel); } /(^02.{0}|^01.{1}|^15.{2}|^16.{2}|^18.{2}|[0-9]{3})([0-9]+)([0-9]{4})/ ① (^02.{0}|^01.{1}|^15.{2}|^16.{2}|^18.{2}|[0-9]{3}) - 02 - 01로 시작하는 경우 추가로 한자리 더 추출 (ex. 010, 011, 016 등) - 15로 시작하는 경우 추가로 두자..
stackoverflow.com/questions/44681711/slick-carousel-css-fade-transition-doesnt-work-on-first-slider Slick Carousel css fade transition doesn't work on first slider I have a standard slick carousel slider. I made it so each div fades in and out when it slides. My issue is, after going through all the divs, when it restarts, the first div does not fade in, but ... stackoverflow.com .slick-slide .i..
$('a').on("click", function() { $('#addressesList').css('display', 'block'); $('#addressesList').get(0).slick.setPosition() }); jsfiddle.net/5eceg5yd/8/ Edit fiddle - JSFiddle - Code Playground jsfiddle.net stackoverflow.com/questions/26677649/slick-slider-loaded-with-displaynone-creates-bad-initiation Slick Slider loaded with display:none creates bad initiation I've got a gallery of thumbs and ..