명성은 얻는 것이요. 인격은 주는 것이다. - 테일러
전체 글
- 명성은 얻는 것이요. 인격은 주는 것이다. - 테일러 2013.07.12
- [CSS] css 참고 사이트. transform, transition, Animation 2013.07.11
- 국도 드라이브코스 베스트10 리스트 2013.07.11
- [Erlang] 얼랑 : Erlang/OTP 2013.07.11
- 파일검색 프로그램 - Everything search engine 2013.07.11
- [UCC] [OST/하울의 움직이는 성] 지브리 25주년 기념 공연실황 2013.07.11
명성은 얻는 것이요. 인격은 주는 것이다. - 테일러
[CSS] css 참고 사이트. transform, transition, Animation
[CSS] css 참고 사이트. transform, transition, Animation
CSS3 transform:skew
CSS3 transform:rotate
CSS3 transform-origin
transform
transition
animation
http://tcbs17.cafe24.com/tc/html5/css_/css_demo2/index.html
SVG : Scalable Vector Graphics
CSS 참고 사이트
http://htmlcss.kr/
http://w3schools.com/
http://css3generator.com/
http://caniuse.com/
'프로그래밍 > Style & Design' 카테고리의 다른 글
CSS - Cheat sheet (0) | 2013.07.29 |
---|---|
[CSS] Cardinal — Mobile-first CSS framework with useful defaults (0) | 2013.07.17 |
[CSS] 17 Best CSS Tools to Speed Up Your Coding (0) | 2013.06.24 |
Summoning the Next Interface: Agentive Tools & SAUNa Technology (0) | 2013.06.12 |
[CSS] Pure — Small, responsive CSS modules for every project (0) | 2013.06.04 |
국도 드라이브코스 베스트10 리스트
《국도 드라이브코스 베스트10 리스트》
지역 |
노 선 ( 위 치 ) |
연장 |
주변 여행명소 |
강원 |
① 삼림욕 절로 되는 산중도로, 국도 46호선 |
23.1 |
12선녀탕, 통일전망대 |
② 머물고 싶은 해변도로, 국도 7호선 |
24.3 |
용화해변, 해안도로 | |
충북 |
③향수에 젖어보는 길, 국도 37호선 |
15.5 |
장령산자연휴양림 |
충남 |
④ 안면송 솔향 그윽한 섬길, 국도 77호선 |
20.1 |
안면도자연휴양림 |
전북 |
⑤ 구천동계곡 따라 가는 길, 국도 37호선 |
25.4 |
덕유산자연휴양림 |
⑥ 산과 바다를 한번에 느끼는 국도 30호선 |
34.1 |
내소사, 채석강 | |
전남 |
⑦ 섬진강 물길따라 가는 길, 국도 17호선 |
22.4 |
섬진강기차마을 |
⑧ 해당화 피는 해안도로, 국도 77호선 |
12.3 |
해안절벽 | |
경북 |
⑨ 청량산 운치에 취하는 산길, 국도 35호선 |
23.1 |
청량산도립공원 |
경남 |
⑩ 다리의 향연, 국도 3, 77호선 |
34.4 |
독일마을, 해오름예술촌 |
'여행_사진_영상 > 여행_일상' 카테고리의 다른 글
[거제] 대구탕 - 외포리 양지바다횟집 (0) | 2013.07.31 |
---|---|
[여행]2013.07.19~21 스쿠버 오픈워터 라이센스 취득, 제주 - 함덕해수욕장 물놀이 (0) | 2013.07.19 |
2013.06.16~06.17 울진(후포항,구수곡,덕구온천,삼척,고성,진부령)여행 (0) | 2013.06.17 |
CNN세계 톱 100선 비치 중 오키나와 아카지마 (0) | 2013.06.04 |
전주 막걸리를 소재로 한 '대작'이라는 웹툰 (0) | 2013.05.22 |
[Erlang] 얼랑 : Erlang/OTP
Erlang
wiki kor : http://xper.org/wiki/seminar/ErlangLanguage
What is Erlang?
Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance.
If you are running a unix system type "erl" or, if you are running on windows start Erlang by clicking on the Erlang start icon. You should see something like this:
Erlang R14B (erts-5.8.1.1) [source] [smp:2:2] [rq:2] [async-threads:0] [kernel-poll:false]
Eshell V5.8.1.1 (abort with ^G)
1>
The ">" prompt means the system is waiting for input.Using Erlang as a calculator
12
2>
Remember to terminate every expression with a DOT followed by a newline!
Previous expressions can be retrieved and edited using simple emacs line editing commands. The most common of these are:
- ^P fetch the previous line.
- ^N fetch the next line.
- ^A Go to the beginning of the current line.
- ^E Go to the end of the current line.
- ^D Delete the character under the cursor.
- ^F Go forward by one character.
- ^B Go Back by one character.
- Return Evaluate the current command.
Note: ^X means press Control + X
Try typing Control+P to see what happens.
Type the following into a file using your favorite text editor:
-export([fac/1]).
fac(0) -> 1;
fac(N) -> N * fac(N-1).
Save the file as test.erl The file name must be the same as the module name.
Compile the program by typing c(test) then run it:
{ok,test}
30> test:fac(20).
2432902008176640000
4> test:fac(40).
815915283247897734345611269596115894272000000000
32>
Now go and write some games!
'프로그래밍 > Architect' 카테고리의 다른 글
[Open SW] Source Navigator (0) | 2013.09.24 |
---|---|
[OSX] Shuttle — SSH shortcut menu for OS X (0) | 2013.08.05 |
[단어] 이상, 이하, 초과, 미만 에 대한 정의 (0) | 2013.07.01 |
TDD, BDD (0) | 2013.06.13 |
도로명에 따른 우편번호 신규 내려받기 (0) | 2013.06.04 |
파일검색 프로그램 - Everything search engine
파일검색 프로그램 - Everything search engine
Everything search engine
Locate files and folders by name instantly.
|
For more information please visit the Everything FAQ
Download Everything for Windows 2000, XP, 2003, Vista, 2008 and Windows 7
Everything-1.2.1.371.exe (334 KB)
Everything-1.2.1.371.zip (Portable, 272 KB)
(See list of changes) ▪ Older versions ▪ MD5
Download Everything 1.3.3.658b Beta for Windows
Everything-1.3.3.658b.x64.exe (Installer, x64, 520 KB)
Everything-1.3.3.658b.x86.exe (Installer, x86, 440 KB)
Everything-1.3.3.658b.x64.zip (Portable, x64, 533 KB)
Everything-1.3.3.658b.x86.zip (Portable, x86, 425 KB)
'프로그래밍' 카테고리의 다른 글
[CHROME] Chrome Logger — Server side app debugging in Chrome (0) | 2013.07.18 |
---|---|
[Cloud] ZeroPC.com (0) | 2013.07.17 |
[EDITOR] Sublime 2.0.2 Update (0) | 2013.07.10 |
컬쳐랜드 오류에 대해서... (0) | 2013.06.20 |
OpenWeatherMap - free weather data and forecast API (0) | 2013.06.20 |
[UCC] [OST/하울의 움직이는 성] 지브리 25주년 기념 공연실황
[OST/하울의 움직이는 성] 지브리 25주년 기념 공연실황이구요.
작곡가 히사이시 조가 직접 피아노를 칩니다.
곡목은 영화의 메인테마인 '인생의 회전목마(Merry Go Round Life)'
후반부 전체 연주 장면은 가슴을 쿵쿵 뛰게만드네요.
.
'여행_사진_영상 > MV_VOD' 카테고리의 다른 글
[UCC] Mirror's Edge Announcement Teaser Trailer - Official E3 2013 (0) | 2013.07.12 |
---|---|
[UCC] Modern Combat 5 - E3 Trailer - iPhone / iPad / Android (0) | 2013.07.12 |
[UCC] 헐~ (0) | 2013.07.10 |
[UCC] 고양이가 개를 싫어하는 이유 (0) | 2013.07.10 |
[UCC] 9살 아이의 심오한 세계 (0) | 2013.07.10 |