일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 이클립스
- CentOS
- junit
- java
- DB
- 톰캣
- File
- html
- laravel
- SeLinux
- error
- 와일드카드
- javascript
- NetBeans
- tomcat
- php
- larravel
- MySQL
- 정규식
- properties
- ajax
- Spring
- Android
- jquery
- JSON
- input
- curl
- 리눅스
- Linux
- 안드로이드
- Today
- Total
목록전체 글 (162)
합쭈기 programming
whereRaw ('field = password(?)', array($pw))이런식으로 쓰던가where('field', '=', DB::raw('password($pw)')) 요런식으로 쓴다.
기본적으로 이녀석 같이 보내야됨 {!! Form::token() !!} 이렇게 하시면 자동으로 input hidden 태그와 함께 만들어주고자동으로 csrf_token을 추가해주는 방법은 form을 아래와 같이 열면 된다. {!! Form::open(options..) !!}{!! Form::close() !!}
router에 아래 내용 추가하면 모든 쿼리 출력 Event::listen('illuminate.query', function($query){var_dump("query : " . $query);}); 개별 쿼리는 DB::getQueryLog() 를 사용
OS 구분 iPad or iPhoneAndroidWindows 2000 Windows XPWindows Server 2003 Windows VistaWindows 7Windows 8Windows MEWindows NTOpen BSDSun OSLinuxMac OS QNX BeOS OS/2Windows CE Browser 구분 브라우저 키워드 Explorer 6.0 MSIE 6 Explorer 7.0 MSIE 7 Explorer 8.0 MSIE 8 Explorer 9.0 MSIE 9 Explorer 10.0 MSIE 10 Explorer 11.0 rv:11 Netscape Netscape Chrome Chrome Safari Safari Firefox Firefox IOS Browser iPad or iPh..
> show variables where Variable_name = 'max_allowed_packet'; max_allowed_packet = 1048576 > SET GLOBAL max_allowed_packet = 2048000000; > FLUSH PRIVILEGES;
코드템플릿 : 코드 자동 완성 기능 psvm + space키 -> public static void main(String[] args) sout + space키 -> System.out.println(""); 넷빈즈 5.5 - tab 넷빈즈 6.0 - space --------------------------------------------------- Ctrl + Shift + C = 주석시작 커서가 검은 네모 칸일때는 insert키를 누름 ctrl + / = 해당라인 주석처리 shift + alt + f = 코드 자동 들여쓰기 정렬 --------------------------------------------------- 윈도우 관련 Alt+화살표 좌,우 = 탭윈도우에서 좌 우로 이동 Ctrl + ..
ajax 옵션에서 jQuery 1.9.0 미만에서는 type : 'GET' 이고 이상에서는 method : 'GET' 을 사용한다. type 옵션은 모두 적용되지만 method는 jQuery 1.9.0 미만에서 사용 시 동작하지 않으니 주의해야함