글
GNU nano Editor를 vim으로 변경
서버(LINUX)
2018.02.01 09:37
1. home directory로 이동
user@DOMAIN:~$ cd
2. vi .bashrc
3. export EDITOR=/usr/bin/vim
4. source .bashrc
끄읏~!
출처 : http://ding-dong-in-future.tistory.com/38
'서버(LINUX)' 카테고리의 다른 글
GNU nano Editor를 vim으로 변경 (0) | 2018.02.01 |
---|---|
jar파일 실행시키기 (0) | 2016.08.03 |
[명령어] 리눅스 파일권환 명령어 umask, chmod, chown (0) | 2016.02.04 |
심볼릭 링크 (0) | 2014.12.31 |
wget 사용하기 (0) | 2014.12.11 |
로그파일(log) 알아두기 (0) | 2014.11.28 |
글
알고리즘 공부 사이트
기타
2018.02.01 09:14
https://www.acmicpc.net
'기타' 카테고리의 다른 글
알고리즘 공부 사이트 (0) | 2018.02.01 |
---|---|
크롬 브라우저에서 파일을 다운받을 때, 파일 하나를 다운했더니 여러개의 파일을 동시에 받는 것을 허가하시겠습니까?라는 메시지가 화면 하단에 떴는데 제가 실수로 취소를 눌렀습니다. (0) | 2017.07.03 |
1GB가 넘는 txt파일 여는 프로그램 (0) | 2017.06.12 |
[컴퓨터 팁] 많은파일 파일명의 일괄변경 ren - Windows (0) | 2017.03.14 |
오프라인 크롬설치 (0) | 2016.08.04 |
[Office 인증] Office 2013 제품 키 변경 방법 (0) | 2015.12.09 |
글
Google Calendar API
자바스크립트(js)
2018.01.23 13:47
javascript
[ insert ]
https://developers.google.com/google-apps/calendar/v3/reference/events/insert#examples
// Refer to the JavaScript quickstart on how to setup the environment:
// https://developers.google.com/google-apps/calendar/quickstart/js
// Change the scope to 'https://www.googleapis.com/auth/calendar' and delete any
// stored credentials.
var event = {
'summary': 'Google I/O 2015',
'location': '800 Howard St., San Francisco, CA 94103',
'description': 'A chance to hear more about Google\'s developer products.',
'start': {
'dateTime': '2015-05-28T09:00:00-07:00',
'timeZone': 'America/Los_Angeles'
},
'end': {
'dateTime': '2015-05-28T17:00:00-07:00',
'timeZone': 'America/Los_Angeles'
},
'recurrence': [
'RRULE:FREQ=DAILY;COUNT=2'
],
'attendees': [
{'email': 'lpage@example.com'},
{'email': 'sbrin@example.com'}
],
'reminders': {
'useDefault': false,
'overrides': [
{'method': 'email', 'minutes': 24 * 60},
{'method': 'popup', 'minutes': 10}
]
}
};
var request = gapi.client.calendar.events.insert({
'calendarId': 'primary',
'resource': event
});
request.execute(function(event) {
appendPre('Event created: ' + event.htmlLink);
});
'자바스크립트(js)' 카테고리의 다른 글
Google Calendar API (0) | 2018.01.23 |
---|---|
HTML에서 자바스크립트를 이용한 파라메터 주고받기 (0) | 2015.12.03 |
MAC주소 얻기 (0) | 2015.08.11 |
숫자키만 입력하기. (0) | 2015.05.18 |
테이블 헤더 고정 (0) | 2015.02.11 |
화면 구성 사이즈 (0) | 2015.01.27 |