과거.....
-
bbc news과거...../HTML5 2010. 8. 24. 23:43
------------------------------------------------ 이문서의 번역 출처는 http://itstation.tistory.com/ 이곳입니다. ------------------------------------------------ BBC News, Part I.:: 신기술 정리/- BBC NEWS 2010/08/24 21:46 For the inaugural WhitherApps project, we’re going to look at the (excellent) BBC News iPhone/iPad app and see if it could have been built as a web app, rather than in native code. 개시하는 WhitherApp..
-
중요하지만 잘 안지켜지는거.....과거...../etc2 2010. 8. 24. 09:19
훔....동감..but...잘 안지켜진다는....거...I can't... Jazoon Reports: 97 Things Every Programmer Should Know by Kevlin Henney Published June 3rd, 2010 Under Conferences | Leave a Comment Methods & Tools is the sponsor of a large number of software development conferences, but I cannot find the time and budget to visit them. This year I managed to find some time spend some time at Jazoon, a major Java event ..
-
go lang 시작..~~~~~``과거...../Go Programming 2010. 8. 23. 15:48
출 처 : http://nobae.egloos.com/3275120 package main import "fmt" func main() { fmt.Printf("Hello, 안녕\n") } 빨라요. Go 컴파일러는 아주아주 빠르게 컴파일해요. 일반적으로 C와 C++ 비교해서 빠르게 결과를 만들어냅니다. 안전해요. Go 언어는 타입과 메모리에 안전해요. 포인터를 지원합니다. 하지만 포인터연산은 못해요. 랜덤으로 접근하고, slice를 사용하죠. 이것들을 적절히 제한합니다. 동시성 Go 언어는 시스템사용을 촉진시켜요. 서버는 goroutin 호출, 언어의 강력한 지원, 경량의 커뮤니케이션으로 처리합니다. 원한다면 stack overflow 랑도 빠이빠이죠. 즐거움 빠르게 빌드하고 깔끔한 문법, 가비지 콜렉션..
-
html5...과거...../HTML5 2010. 8. 23. 13:55
html5시작...... 이걸.. 프로그래밍이라고 불러야하는지.......아직 깊게 안봐서 모르겠다...... 예전 일할때 html이용하는건 무한대의 테이블 생성할때밖에 안썼는데.....요즘은 아닌것 같은데............. 여튼 이제 시작해 볼련다 맨처음 도전해 볼만한 사이트를 찾았다.. bbc뉴스를 html5로 구현하는 ................................ http://whitherapps.com/bbc-news/ 해보는거야!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-
Beautiful source 를 만들기위해............과거...../자바 2010. 8. 22. 20:44
출처 : http://not-at-school.blogspot.com/2010/07/beautiful-code-sense-of-direction.html 위에 링크에 글을 번역을해서 다 써놓고 싶었지만...그럴 수 없었다..너무 긴 관계로 인해 ..아하하하 내용만큼은 참 심플하고 좋았다. beutiful source를 만들기위해 가장 중요한것은 Less is more, Local is manageable, Innovation is risk. 이 세가지를 지킬것....... 정확히는 설명할 수는 없지만 의미는 대충 이해가 간다. 밑에는 위 사이트에서 간략히 소스를 만드는 과정에 대해 설명한 예이다. Before class Point { int x; int y; int distance; public void..