일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jQuery
- PHP
- iBATIS
- sencha touch
- MySQL
- JDOM
- dock
- node.js
- 전자정부프레임워크
- ibsheet
- rowspan
- phonegap
- Google Map
- Ajax
- 가우스
- WebLogic
- 선택적조인
- Spring
- appspresso
- MFC
- Eclipse
- jsr 296
- Android
- swingx
- oracle
- PLSQL
- GPS
- JSON
- tomcat
- Struts
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
msys2를 설치하고 윈도우에서 gcc로 개발환경을 구성하다가 맞지하는 문제입니다.`pkg-config --cflags --libs gtk4`이렇게 task.json에서 args에 추가해서 빌드중 에러가 발생합니다.해결책은 기본 쉘인 cmd.exe 대신 msys2에 있는 bash.exe를 이용해서 실행하는것입니다.{ "label": "Build GTK4 App in MSYS2 shell", "type": "shell", "command": "C:/msys64/usr/bin/bash.exe", // MSYS2 쉘 실행 "args": [ "-c", // 쉘 명령 실행 "gcc -fdiagnostics-color=always -g '${file}' -o '${fileDi..
딥러닝 기본 원리의 이해 from Hee Won Park
index=main collection="CPU Load" | stats last(Value) AS CPU by _time| sort - _time | eval 임계치=30 | eval Threshold_Color=case(CPU>=20,"Warning",true(), "Normal") | xyseries _time Threshold_Color CPU ... {"Warning":0xFF0000,"Normal":0x53A051"} https://community.splunk.com/t5/Splunk-Search/Column-chart-color-change-if-threshold-is-hit/m-p/432648
flutter sdk를 설치하고 android studio를 설치하고 flutter doctor를 실행했을때 Unable to locate Android SDK 란 메세지가 나오면서 android sdk의 위치를 못찾는 경우가 발생했습니다. flutter config --android-sdk D:\android-sdk-windows 와 같이 android-sdk경로를 지정해주고 flutter doctor --android-licenses 를 실행하면 됩니다. 참고 : stackoverflow.com/questions/44485848/android-sdk-cannot-be-found-by-flutter Android SDK cannot be found by flutter I have installed fl..
ant를 이용하면 현재 개발하는 eclipse project를 jar로 빌드하면서 참조하는 라이브러리를 하나로 합치는 기능이 있습니다. 공통모듈 copy-dependencies, jar 두개의 task로 작업이 가능하면 jar2는 이두개를 하나로 합친경우입니다. 참고 : https://mkyong.com/ant/ant-create-a-fat-jar-file/
로컬에서 junit상의 코드에서는 jersey client를 이용해서 통신에 문제가 없었으나 weblogic 12c에 올리자 에러발생 에러메세지를 확인해보니 weblogic에서 제공하는 httpurleconnection을 사용하면서 에러가 발생. deepakmodi2006.blogspot.com/2011/05/how-to-fix-javaioeofexception-response.html How to fix "java.io.EOFException: Response contained no data" How to fix "java.io.EOFException: Response contained no data" Some time while working in Weblogic server environment, ..
javax.net.ssl.SSLException: Certificate doesn't match any of the subject alternative names apache httpclient로 ssl을 연동한 연결을 하는 경우 위와 같은 에러가 발생합니다. SSLConnectionSocketFactory scsf = new SSLConnectionSocketFactory( SSLContexts.custom().loadTrustMaterial(null, new TrustSelfSignedStrategy()).build(), NoopHostnameVerifier.INSTANCE) httpclient = HttpClients.custom().setSSLSocketFactory(scsf).build() 버전..
Linear algebra from Sungbin Lim Matrix calculus from Sungbin Lim
Elastic Search (엘라스틱서치) 입문 from SeungHyun Eom
http://oukr.tistory.com/49 http://wiki.gurubee.net/pages/viewpage.action?pageId=26744104
출처 : http://www.gurubee.net/lecture/1903Oracle10g 부터 CONNECT BY 절에서 제공하는 CONNECT_BY_ROOT, SYS_CONNECT_BY_PATH, CONNECT_BY_ISLEAF 기능에 대해서 알아보자CONNECT_BY_ROOT계층구조 쿼리에서 LEVEL이 0인 최상위 로우의 정보를 얻어 올 수 있다.?1234567891011121314SELECT LPAD(' ', 4*(LEVEL-1)) || ename ename, empno,CONNECT_BY_ROOT empno "Root empno", level FROM emp START WITH job='PRESIDENT'CONNECT BY PRIOR empno=mgr; ENAME EMPNO Root empno ..
숫자형함수 (ROUND, TRUNC) http://blog.naver.com/oasis1570/40130484285
$menu = array(); $menu[] = array('type' => 'appetizer', 'dish' => 'Chicken Soup'); $menu[] = array('type' => 'main course', 'dish' => urlencode('무궁화')); $json_result = json_encode($menu); header('Content-Type: application/json'); echo urldecode($json_result); $ad_arr[0]['title'] = urlencode("치킨팝"); $ad_arr[0]['explain'] = urlencode("[치킨팝]어플 다운로드시 200원 적립!!"); $ad_arr[0]['method'] = urlencode("다운..
이번에 소개하려는 html5 toolkit은 sap에서 만든 sapui5입니다.sencha touch와 ext.js를 합쳐놓은듯한 구성으로 분량이 상당합니다.초기 학습기간이 좀 걸리며 결과물에 대한 만족도는 괜찮은 편입니다.데어터 바인딩 기능이 강력하며 화면구성을 위해서 mvc모델을 지원하고있습니다.일부기능을 뻰 오픈소스 모델인 OPENUI5도 공개된 상태입니다. https://sapui5.netweaver.ondemand.com/sdk/#docs/guide/Documentation.html http://sap.github.io/openui5/ http://scn.sap.com/community/developer-center/front-end/blog http://scn.sap.com/community/..
Oracle Date How to Add Day , Hour, Minute, Second to a Date Value in Oracle Oracle add DaysOracle add Hour Oracle add Minute Oracle add second -- # Add a day select to_char(sysdate,'dd-mm-yyyy hh24:mi:ss') "Todays-date" , to_char(sysdate +1,'dd-mm-yyyy hh24:mi:ss') One_day from dual ; Todays-date ONE_DAY ------------------- ------------------- 05-01-2012 12:55:52 06-01-2012 12:55:52 -- # Add an ..
package kr.co.ntcsoft.guava.service.demo; public class Daemon2 { /** * @param args * @throws Exception */ public static void main(String[] args) throws Exception { MyGuavaService2 service = new MyGuavaService2(); service.startAndWait(); } } package kr.co.ntcsoft.guava.service.demo; import com.google.common.util.concurrent.AbstractExecutionThreadService; public class MyGuavaService2 extends Abstr..
CREATE TABLE `t_contact` ( `customer_id` varchar(100) NOT NULL DEFAULT '', `telno` varchar(100) DEFAULT NULL, PRIMARY KEY (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `t_customer` ( `customer_id` varchar(100) NOT NULL DEFAULT '', `name` varchar(100) DEFAULT NULL, `customer_type` varchar(100) DEFAULT NULL, `sno` varchar(100) DEFAULT NULL, PRIMARY KEY (`customer_id`) ) ENGIN..
참고 : http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/ 브라우저에서 호출되는 페이지 백그라운드로 실행되는 페이지
with tmp as (select 'a' as id, to_date('200305021120', 'yyyymmddhh24mi') as sdate, to_date('200305021300', 'yyyymmddhh24mi') as edate from dual union select 'b' as id, to_date('200305021300', 'yyyymmddhh24mi') as sdate, to_date('200305021400', 'yyyymmddhh24mi') as edate from dual)select * from (select to_date('200305020000', 'yyyymmddhh24mi') + (level - 1) * 0.5 / 24 as s, to_date('200305020000'..