Outlook과 Google calendar 연동하기

IT Tips/Else 2009/05/12 09:48
1. http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=98563 에서 googlecalendarSync installer.exe 다운로드 후 설치
2. Sysn 설정 및 google account 입력



3. 바로 Sync 하기 – tray icon에서 Sync메뉴를 클릭하면 바로 google과 Sync가 맞춰진다.

4. 자세한 사항은 http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=98563 참고해 주세요.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/05/12 09:48 2009/05/12 09:48
Trackback 0 : Comment 0

Write a comment

[Login][OpenID?]


search engine Add-ons 만들기 - Pandora.TV HD

open source/firefox 2009/05/07 18:31
1. xml 문 만들기

<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
  <ShortName>Pandora TV HD</ShortName>
  <Description>Pandora TV HD Search</Description>
  <Url type="text/html"
       method="get"
       template="http://search.pandora.tv/?query={searchTerms}&amp;sq=KR">
  </Url>
  <LongName>Pandora.TV HD Search</LongName>

  <Image height="32" width="32" type="image/vnd.microsoft.icon">http://technorati.com/favicon_32.ico</Image>
  <Developer>Jessica Ryu</Developer>
  <Attribution>
   Copyright ⓒ PANDORATV  Inc. All Rights Reserved
  </Attribution>

  <SyndicationRight>open</SyndicationRight>
  <AdultContent>false</AdultContent>
  <Language>en-us</Language>
  <OutputEncoding>UTF-8</OutputEncoding>
  <InputEncoding>UTF-8</InputEncoding>
</OpenSearchDescription>

2. Add-Ons 배포하기

1) https://addons.mozilla.org/ko/firefox/ 에서 회원 가입
2) 로그인 하기
3) 개발도구로 이동
4) 부가기능제출 메뉴로 이동
5) 도움말에 따라서 내용 입력한다.
6) 등록 -> complete -> public 단계를 거치면 완료

7) firefox 검색에서 검색된 화면

3. 설치 하기
테스트용일때는 반드시 로그인 해야 합니다. 그래야지 설치가 되어요.


4. 그리고 검색하면 되지요. ^^
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/05/07 18:31 2009/05/07 18:31
Trackback 0 : Comment 0

Write a comment

[Login][OpenID?]


tip About getNextHighestDepth()

RIA Tips/Flash(Action Script) 2009/03/11 11:22
Env:

Flash player version : 6.0
Script version : 2.0

contents:

getNextHighestDepth() 는 사용 할 수 없다. 값이 undefined 가 나온다.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/03/11 11:22 2009/03/11 11:22
Trackback 2 : Comment 0

Write a comment

[Login][OpenID?]


Tomcat configurate in eclipse

IT Tips/eclipse 2009/02/10 14:30
How to..

Step 1) eclipse download and install (version 3.4.1)
Step 2) tomcat plugin download (location) (version 3.2.1 -> tomcatPluginV321.zip)
Step 3) tomcat plugin uncompressing in ECLIPSE_HOME/plugins
Step 4) eclipse execute
Step 5) tomcat plugin configuration



크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/10 14:30 2009/02/10 14:30
tags :
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


RIA Bookmark

RIA Tips 2009/02/06 16:37
InsideRIA : http://insideria.com/index.htm

cynergy systems : http://www.cynergysystems.com/

Adobe open source : http://opensource.adobe.com

extreame programming : http://www.extremeprogramming.org
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/06 16:37 2009/02/06 16:37
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


source tips

open source/Yacy 2009/02/05 20:47
1 . ignore robot.txt

Location:
/src/de/anomic/crawler/CrawlQueues.java/run() method

public void run() {
try {
                // checking robots.txt for http(s) resources
                this.entry.setStatus("worker-checkingrobots");
                // robot.txt ignor start
                /*if ((entry.url().getProtocol().equals("http") || entry.url().getProtocol().equals("https")) && sb.robots.isDisallowed(entry.url())) {
                    if (log.isFine()) log.logFine("Crawling of URL '" + entry.url().toString() + "' disallowed by robots.txt.");
                    final ZURL.Entry eentry = errorURL.newEntry(
                            this.entry,
                            sb.webIndex.seedDB.mySeed().hash,
                            new Date(),
                            1,
                            "denied by robots.txt");
                    eentry.store();
                    errorURL.push(eentry);        
                } else {*/
                // robot.txt ignor end
….

2. Document parse part

Location:
 /src/de/anomic/plasma/plasmaParserDocument.java parseDocument(…) method

private plasmaParserDocument parseDocument(final IndexingStack.QueueEntry entry) throws InterruptedException {
plasmaParserDocument document = null;
        final int processCase = entry.processCase();
       
        if (this.log.isFine()) log.logFine("processResourceStack processCase=" + processCase +
                ", depth=" + entry.depth() +
                ", maxDepth=" + ((entry.profile() == null) ? "null" : Integer.toString(entry.profile().generalDepth())) +
                ", filter=" + ((entry.profile() == null) ? "null" : entry.profile().generalFilter()) +
                ", initiatorHash=" + entry.initiator() +
                //", responseHeader=" + ((entry.responseHeader() == null) ? "null" : entry.responseHeader().toString()) +
                ", url=" + entry.url()); // DEBUG
       
        // PARSE CONTENT
        final long parsingStartTime = System.currentTimeMillis();
...

3. url collecte from Document

Location:
/src/de/anomic/htmlFilter/htmlFilterContentScraper.java
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/05 20:47 2009/02/05 20:47
tags :
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


Web admin page setting - index

open source/Yacy 2009/02/05 20:40
1) Index Administration
Web Indexing > Index Administration

2) Index delete
Web Indexing > Index Administration > Cleanup > delete index click



크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/05 20:40 2009/02/05 20:40
tags : ,
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


Web admin page setting - crawler

open source/Yacy 2009/02/05 20:37
1) Add Crawl Profile
Web Indexing > Crawl Start & Monitoring > Crawl Start

2) Crawl Profile Editor
Web Indexing > Crawl Start & Monitoring > Crawl Profile Editor

3) run-time Crawl Queue filtering(delete)
Web Indexing > Crawl Start & Monitoring > URLs to be processed > Local






4) Contents에 따른 Crawler 설정
Peer Control > Admin Console > Advanced Settings > Contents Parser Settings




크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/05 20:37 2009/02/05 20:37
tags : ,
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


Web admin page setting - Basic

open source/Yacy 2009/02/05 20:32
1) Used Memory Setting
Peer Control > Admin Console > Memory

2) Indexing Queue Setting
Peer Control > Admin Console > Advanced Properties > indexer.slots=xxx

3) Else Setting
Peer Control > Admin Console
Peer Control > Admin Console > Advanced Properties


크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/05 20:32 2009/02/05 20:32
tags : ,
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]


Basic Directory and File Discription

open source/Yacy 2009/02/05 20:29
  • /htroot – web admin server side page
  • /src – web server, crawler, index engine, search engine basic source
  • /defaults – basic configuration contents
  • /DATA – data
  • /lib, /libx – library
  • /skins – skin
  • /locales – language file
  • /addon – plugins
  • /defaults/yacy.init – initialization information
  •  /DATA/SETTINGS/yacy.conf – run-time configuration information
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)
2009/02/05 20:29 2009/02/05 20:29
tags :
Trackback 1 : Comment 0

Write a comment

[Login][OpenID?]

◀ PREV : [1] : [2] : [3] : [4] : [5] : ... [20] : NEXT ▶