본문 바로가기

2014/09

JSP와 자바스크립트간의 정보 전송방법 출처 : http://dreamform.egloos.com/viewer/2805065 JSP 는 서버 언어 자바스크립트는 클라이언트 언어 1. 자바스크립트의 변수에 JSP 변수를 지정하는 것 (가능) 2. JSP 변수에 자바스크립트의 변수를 지정하는 것. (불가능) 정의상 불가능하지만 꽁수로 하는 방법이 있다. 1) 팝업창에 넘기는 것(다른 페이지의 자바스크립트 변수에 지정가능) get 방식이나 post 방식으로 넘길수 있다. var URL = "페이지 주소.jsp?name= "+name +"&year=" + year var rtnVal = window.showModalDialog(URL, "", "dialogWidth:0; dialogHeight:0; help:no; status:no;"); 위와 같이.. 더보기
Database 관련 튜토리얼 sqlite 관련 튜토리얼 http://www.tutorialspoint.com/sqlite/ sql 관련 튜토리얼 http://www.w3schools.com/sql/ 더보기
[안드로이드] Phone & Tablet Stencils https://developer.android.com/design/downloads/index.html 더보기
HTML5 프리젠테이션 도구를 아시나요? HTML5 프리젠테이션 도구를 아시나요? 외부 강연을 하다보면 발표 자료를 자주 만드는데, 대부분 MS PowerPoint나 Apple Keynote 같은 것을 사용하게 됩니다. 그리고 나서 Slideshare나 Slidedeck 같은데 올리고 공유하게 되지요. 하지만 HTML 마크업만 조금 배우고, 손 코딩에 익숙한 분들에게는 '웹 기반 프리젠테이션 도구'를 추천합니다. 전용 프로그램 만큼 강력한 기능을 제공해 주고, 무엇 보다 웹 브라우저만 있으면, 어디서나 쉽게 PT가 가능하고 웹 콘텐츠를 풍성하게 할 수 있으니까요. (아래 데모들은 모바일 보다는 PC 웹 브라우저 특히, 파이어폭스나 크롬에서 잘 보입니다.) 1. Reveal.js Github에서 당당하게 가장 많은 인기를 끌고 있는 웹 프리젠테이.. 더보기
Ubuntu에 telnet 설치하기 sudo apt-get install xinetd sudo apt-get install telnetd 으로 설치를 하고 xinetd에 설정을 추가 한다 vi /etc/xinetd.conf service telnet { disable = no flags = REUSE socket_type = stream wait = no user = root server = /usr/sbin/in.telnetd log_on_failure += USERID } 그 후에 xinetd 를 재시작 하고sudo /etc/init.d/xinetd restart 하면 된다 그리고ftp와 ssh 는 telnet 과 같은 방식으로 해주면 된다 sudo apt-get install proftpd 설정파일 : /etc/proftpd/prof.. 더보기
데비안(debian) 계열 hostname 변경 인텔 갈릴레오 보드에 데비안을 올리니 hostname이 (none)으로 나올 경우 몇가지 작업을 통해서 변경할 수 있다. Steps: 1. sudo gedit /etc/hostname 2. Save the file with the hostname you like to set 3. sudo /etc/init.d/hostname.sh start 출처 : http://ubuntuforums.org/archive/index.php/t-1848900.html 더보기
Open JDK와 Oracle JDK 차이 참고 링크 => http://helloworld.naver.com/helloworld/1219 OpenJDK는 2007년 Java의 오픈소스화를 위하여 Sun에서 저작권자가 제공을 거부한 컴포넌트들을 제외한 JDK를 제공하여 시작된 프로젝트이다. 이 OpenJDK와 별개로 Oracle에서 제공하는 JDK를 구분하기 위하여 Oracle JDK 라고 부른다. [출처] Open JDK, Oracle JDK (개발자로 살아남기) |작성자 118k 더보기
RDBMS vs NoSQL, CAP 이론 출처 : http://develop.sunshiny.co.kr/883 Visual Guide to NoSQL System 이미지 출처 : http://blog.nahurst.com/visual-guide-to-nosql-systems CAP 이론 * 일관성(Consistency) : 모든 노드들은 같은 시간에 동일한 항목에 대하여 같은 내용의 데이터를 사용자에게 보여준다. * 가용성(Availability) : 모든 사용자들이 읽기 및 쓰기가 가능해야 하며, 몇몇 노드의 장애 시에도 다른 노드에 영향을 미치면 안된다. * 생존성(Partition tolerance) : 노드 간의 메시지 손실(부분 결함)이 있어도 정상적으로 동작해야 한다. # ACID(Atomicity, Consistency, Isola.. 더보기
욕토 프로젝트 관련 자료들 링크 - 영어 - yocto 프로젝트 ADT 매뉴얼 : http://www.yoctoproject.org/docs/current/adt-manual/adt-manual.html yocto 프로젝트 개발 매뉴얼 : http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html qemu 에뮬용 이미지,ROOTFS 다운로드 링크 : http://downloads.yoctoproject.org/releases/yocto/yocto-1.6.1/machines/qemu/qemux86/ 인텔 개발자 존 : https://software.intel.com/en-us/blogs/2014/06/09/introduction-to-the-mashery-api-network.. 더보기
How to create a bootable USB stick on Windows 출처 : http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows To run Ubuntu from a USB stick, the first thing you need to do is insert a USB stick with at least 2GB of free space into your PC. The easiest way to put Ubuntu onto your stick is to use the USB installer provided at pendrivelinux.com. You’ll need to download and install and follow the instructions. Download Pen Drive Linu.. 더보기