일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DispatchGroup
- 딩동말씀
- Python
- MainScheduler
- iOS배포
- iOS계산기
- jQuery
- iOS앱배포
- 스프링
- 앱배포
- FLASK
- FileOwner
- ios
- Swift
- 파이썬서버
- Xcode
- 계산기앱
- spring
- 웹
- subscript
- 자바스크립트
- 계산기앱만들기
- 스위프트
- customclass
- 앱버전구하기
- AJAX
- 개발기록
- JavaScript
- Xib
- 맥
- Today
- Total
목록전체 글 (86)
개발하는 뚝딱이

맥을 쓰기 전, 처음 기본 교육을 받았으나 그렇지 못한 사람들은 어려울 것이다. 그래서 간단하게 기본 사용법에 대해 요약하였다. 내가 생각하기에 필수이거나, 사용하면서 필요한 부분들 위주로 담았다. 이후로 옵션적인 것들은 추후에 포스팅할 것이다. [맥 종료] 맥은 주로 끄지 않는다. 랩탑을 닫아서 재우기만 할 뿐, 보통 끄지 않는다. (이게 정말 최고의 장점, 아픈 윈도우를 쓸 때 부팅하는데 너무 많은 시간이 소요되었다) 종료나 다시시작하기가 필요할 경우, 상단 메뉴바의 사과 모양에서 재시동이나 시스템 종료를 누른다. [프로그램 실행] command + space로 원하는 프로그램 검색 (개인적으로 선호) 사이드바에서 원하는 프로그램 실행 + 따라서 자주 사용하는 프로그램은 사이드바에 추가한다 다섯손가락..
Spring 프레임워크로 개발 도중, JSP에서 Controller로 / Controller에서 JSP로 데이터를 주고 받는 경우가 생겼다. 이 때, AJAX를 사용하여 간단하게 처리하였다. CASE 1 : 스프링에서 JSP로 데이터를 보낼 때 MainController.java @RequestMapping(value = "get.do") @ResponseBody public String ajax() { Map map = new HashMap(); map.put("kor", "Korea"); map.put("us", "United States"); return null; } test.jsp function test() { $.ajax({ type : "GET", url : "get.do", data : ..
1. getYear(); 함수는 현재 웹 표준에서 제거되었으므로 대신에 getFullYear();를 사용하자 2. getMonth();와 getDay(); 함수는 시작이 0부터이므로 + 1을 해서 사용하자

Application Layer : Principles of network applications Creating a network app Write programs that run on different end systems communication over a network e.g., Web : 웹 서버 소프트웨어와 브라우저 소프트웨어 사이의 소통 No software written for devices in network core Network core devices do not function at app layer, but instead function at the network layer and below This design allows for rapid app development Appl..

1.3 The Network Core circuit switching (telecommunication networks) dedicated circuit per call (자원[가상의 선로]를 점유하고 있으므로, 정보를 전달하지 않아도 돈을 지불해야함) The sender can transfer the data to the receiver at the guaranteed rate. 전용도로 - 가상의 선로로 쭉 보냄 packet- switching (Internet)-라우터 data is sent through networks in packets forward packets from one router to the next, across links on path from source to destinat..
생성자를 이용한 의존 객체 주입 public StudentRegisterService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentModifyService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentDeleteService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentSelectService(StudentDao studentDao) { this.studentDao = studentDao; } public StudentAllSelectService(Student..