사용중인 버전 : 1.5.0-RC2-311-g15062f7


방법 : 

 1. GoldenDict.exe 가 있는 폴더에  portable 폴더를 만듬

 2. GoldenDict.exe 실행하면, index를 만든다고 팝업창이 뜸 -> 대기하면 끝.




출처 :




Posted by 세모아
,

출처:  https://cafe.naver.com/raccontare/37






'Software > Utility' 카테고리의 다른 글

GoldenDict 1.5.0 - portable mode 만들기  (0) 2018.12.09
Pinboard MySQL dump 10.13  (0) 2018.08.03
파티션 완전 삭제 툴  (0) 2017.11.27
Posted by 세모아
,

from:  https://static.pinboard.in/schema.htm



-- MySQL dump 10.13   
--  
-- Pinboard database schema  
-- Feel free to use this however you like. Send questions to support@pinboard.in. 
-- For best results, use the Percona version of MySQL! http://www.percona.com/software/percona-server/  


CREATE TABLE `bookmarks` (  
    `id` int(11) NOT NULL,  
    `url` mediumtext,        -- verbatim URL (may differ from actual URL referenced by url_id)  
    `title` varchar(255),  
    `description` mediumtext,  
    `user_id` int(11) NOT NULL,  
    `toread` tinyint(1) DEFAULT '0',  
    `private` binary(1) DEFAULT '0',  
    `url_id` int(11),     
    `slug` char(20),         -- opaque token for use in URLs  
    `snapshot_id` int(11),  
    `code` char(3),          -- http response code (if crawled)  
    `source` smallint(6),    -- numeric     
    `added_at` datetime,     -- date added to Pinboard  
    `created_at` datetime,   -- stated creation date  
    `updated_at` datetime,  
  
    PRIMARY KEY (`id`),  
    UNIQUE KEY `slug` (`slug`),     
    UNIQUE KEY `bookmark` (`user_id`,`url`(255)),  
    KEY `created` (`created_at`),  
    KEY `user` (`user_id`),  
    KEY `private` (`private`),  
    KEY `url` (`url_id`),  
    KEY `toread` (`toread`),  
    KEY `updated` (`updated_at`),  
    KEY `snapshot` (`snapshot_id`),  
    KEY `code` (`code`),  
    KEY `multi` (`user_id`,`private`,`toread`,`created_at`)  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;  
     
  
-- Table structure for table `btags` (short for 'bookmark tags')  

  
CREATE TABLE `btags` (  
    `id` int(11) NOT NULL,     
    `user_id` int(11) NOT NULL,  
    `bookmark_id` int(11) NOT NULL,  
    `url_id` int(11),  
    `tag` varchar(255),  
    `created_at` datetime,     
    `private` tinyint(1),     
    `seq` tinyint(4),         -- preserve display order  
    PRIMARY KEY (`id`),  
    UNIQUE KEY `btag` (`user_id`,`bookmark_id`,`tag`),  
    KEY `user` (`user_id`),  
    KEY `tag` (`tag`),  
    KEY `bookmark` (`bookmark_id`),  
    KEY `url` (`url_id`),  
    KEY `private` (`private`),  
    KEY `usertag` (`user_id`,`tag`)  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;   
     
  
  
  
-- Table structure for table `snapshots`  
-- (snapshots are directories created by wget)  
  
CREATE TABLE `snapshots` (  
    `id` int(11) NOT NULL,  
    `url_id` int(11) NOT NULL,  
    `crawled_at` datetime,     
    `slug` varchar(30),  
    `content_type` varchar(200),     
    `etag` varchar(255),                  -- from Etag header     
    `last_modified` varchar(255),         -- from Last-Modified header     
    `code` char(3),                       -- http status code  
    `content_length` varchar(20),         -- from Content-Length header  
    `num_files` smallint(6),                      
    `size` int(11),                       -- size in bytes of snapshot files  
    `filename` varchar(255),              -- which file in this snapshot to serve  
    `updated_at` datetime,  
    `user_id` int(11),  
    `remote_backup` datetime,                     
    `flagged` binary(1) DEFAULT '0',  
    `actual_url_id` int(11),              -- where we ended up after redirects  
    `server` varchar(200),                -- where this snapshot is stored  
    `charset` varchar(20),                -- detected charset (don't trust servers!)  
    PRIMARY KEY (`id`),  
    UNIQUE KEY `user_url` (`url_id`,`user_id`),  
    KEY `size` (`size`),  
    KEY `content_length` (`content_length`),  
    KEY `content_type` (`content_type`),  
    KEY `slug` (`slug`),  
    KEY `user_id` (`user_id`),  
    KEY `code` (`code`),  
    KEY `crawled` (`crawled_at`)  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;  
     
  
  
     
--  
-- Table structure for table `urls`  
--  
  
CREATE TABLE `urls` (  
    `id` int(11) NOT NULL,  
    `url` mediumtext CHARACTER SET latin1,  -- latin1 reduces storage requirement  
    `created_at` datetime,  
    `count` int(11),  
    `slug` varchar(40),     
    `alias_of` int(11),              -- mark duplicates     
    `last_checked` datetime,     
    `last_status` smallint(6),       -- most recent HTTP status code     
    `content_hash` varchar(255),     -- content hash of most recent snapshot     
    `etag` varchar(255),             -- from http headers  
    `last_modified` varchar(255),    -- from http headers  
    `domain` varchar(255),                  
    PRIMARY KEY (`id`),  
    UNIQUE KEY `slug` (`slug`),  
    KEY `count` (`count`),  
    KEY `url` (`url`(767))  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;  
     
  
  
--  
-- Table structure for table `user_tags` (summary table generated from btags)  
-- tags are stored here twice - once a public set and a private set  
  
CREATE TABLE `user_tags` (  
    `tag` varchar(255),     
    `user_id` int(11) NOT NULL,  
    `count` int(11),     
    `include_private` tinyint(1), -- is this tag in the public set or private set?  
    UNIQUE KEY `usertag` (`user_id`,`tag`,`include_private`),  
    KEY `count` (`count`),  
    KEY `tag` (`tag`),  
    KEY `user` (`user_id`),  
    KEY `multi` (`user_id`,`include_private`,`count`)  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;  
     
--  
-- Table structure for table `users`  
--  
  
CREATE TABLE `users` (  
    `id` int(11) NOT NULL,  
    `login` varchar(40),  
    `password` varchar(60),         -- bcrypt   
    `created_at` datetime,  
    `last_login` datetime,  
    `email` varchar(255),     
    `name` varchar(255),     
    `enabled` tinyint(1) DEFAULT '0',  
    `signup_paid` tinyint(1) DEFAULT '0',  
    `email_confirmed` tinyint(1) DEFAULT '0',  
    `reset_code` char(20),     
    `email_slug` char(6),           -- secret token for bookmarking by email     
    `last_active` datetime,         -- most recent add/edit/delete  
    `bytes_used` int(11) DEFAULT '0',  
    `disk_used` int(11) DEFAULT '0',  
    `public_count` int(11),     
    `private_count` int(11),     
    `cached_count` int(11),         -- all crawled bookmarks (includes errors)  
    `snapshot_count` int(11),       -- actual snapshots stored  
    `unread_count` int(11),     
    `rss_slug` char(20),            -- secret token for private RSS feeds     
    `language` char(2),  
    `tag_count` smallint(6),  
    `snapshot_error_count` int(11),  
    `cached_size` bigint(20),       -- total archive size in bytes (need bigint!)  
    `cached_disk_size` bigint(20),  -- actual disk used     
    `oversize_count` int(11),  
    `is_premium` binary(1) DEFAULT '0',  
    `fee` smallint(6),                          
    `ftext_indexed_at` datetime,    -- date last fulltext index completed  
    `ftext_count` int(11),          -- number of bookmarks with parsed text  
    `ftext_size` bigint(20),        -- size of extracted text  

    PRIMARY KEY (`id`),  
    UNIQUE KEY `login` (`login`),  
    KEY `updated` (`created_at`),  
    KEY `premium` (`is_premium`)  
) ENGINE=InnoDB DEFAULT CHARSET=utf8;  
  


'Software > Utility' 카테고리의 다른 글

GoldenDict 사전파일 추가방법  (0) 2018.09.20
파티션 완전 삭제 툴  (0) 2017.11.27
FreeCommander Tips  (0) 2017.11.22
Posted by 세모아
,

EaseUS Partition Master Free

무료 툴로 파티션 완전 삭제 가능(덮어쓰기로)




'Software > Utility' 카테고리의 다른 글

Pinboard MySQL dump 10.13  (0) 2018.08.03
FreeCommander Tips  (0) 2017.11.22
free commander (Total commander 대체용 freeware)  (0) 2017.11.06
Posted by 세모아
,

FreeCommander Tips

Software/Utility 2017. 11. 22. 15:55

Re: Crashing fccontextmenu64.exe

#2 Post by Marek » 23.11.2010, 19:50

If you have problems with FcContextMenu64 than try to switch to 32 bit context menu.
Simply define in the freecommander.ini (first close FC)
[Form]
ShowContextMenu64Bit=0

출처 : http://www.forum.freecommander.com/viewtopic.php?f=3&t=2906



툴바 설정 :





'Software > Utility' 카테고리의 다른 글

파티션 완전 삭제 툴  (0) 2017.11.27
free commander (Total commander 대체용 freeware)  (0) 2017.11.06
Delicious에서 Pinboard로 이사감  (0) 2017.09.10
Posted by 세모아
,

기업에서도 사용가능한 freeware 임.



기본 설정:


위 툴바 의 설정방법:



툴바에 windows explorer 연결방법 :

아래 화면 들어가는 메뉴는, Tools - Favorite tools - Define favorite toolbars


/select,%ActivSel%



'Software > Utility' 카테고리의 다른 글

FreeCommander Tips  (0) 2017.11.22
Delicious에서 Pinboard로 이사감  (0) 2017.09.10
Delicious가 Pinboard에 합쳐짐  (0) 2017.09.10
Posted by 세모아
,

그동안 Delicious를 사용했었는데, 자주 다운도 되고 복구되는데도 시간이 오래 걸리고 그러다가,

최근에는 더 그런 증상이 심해졌다 했더니, Pinboard로 acquire되었네요.

참고 링크는 여기




대체할 bookmark social service로 다음 것들을 테스트해봤다.


1. Google bookmark

   - chrome에 의존됨


2. Pocket

   - 너무 큰 Delicious bookmark 파일을 import 못해서 쪼개서 import 시켰음.


3. InstaPapaer

   - Delicious의 import를 지원하지 않아서, 위 Pocket으로 delicious를 쪼개서 import & export & delete 하여 import  하였음


4. Pinboard

   - Delicious bookmark가 쉽게 import 됨. 그런데 그 전에 $11/year 결제를 해야 함.

   - Delicious의 Comment가 그대로 보존됨.  <- 이게 제일 나에게 필요한 기능. 


5. Xmarks

   - Delicious를 여기에 import 하여 사용하려고 했는데, 왠지 잘 안되었고 별도의 어플리케이션이 윈도우 실행 중에 뜨면서 불편한 것 같아서 사용 안하고 있었음.



결론은 Pinboard.


[  ] 할일 : addon 을 chrome, IE, iPhone에 설치해서  사용해 봐야 함.


. chrome 에 설치법 간단함.

chrome 북마크 바에 다음 링크의 [popup with tags] 링크를 복사하여 넣으면 됨

https://pinboard.in/howto/#saving





참고 url :


http://www.halryang.net/How-I-Use-Pinboard/

https://kalkin7.wordpress.com/2015/05/09/start-pinboard/


https://kalkin7.wordpress.com/2015/05/12/%EC%9D%B8%ED%84%B0%EB%84%B7%EC%97%90%EC%84%9C-%EB%B0%9C%EA%B2%AC%ED%95%9C-%EC%9E%90%EB%A3%8C%EB%A5%BC-%EC%98%81%EA%B5%AC-%EB%B3%B4%EA%B4%80%ED%95%98%EA%B8%B0/



Posted by 세모아
,

https://blog.pinboard.in/2017/06/pinboard_acquires_delicious/



Pinboard Blog

Pinboard Acquires Delicious

Pinboard has acquired Delicious. Here’s what you need to know:

If you’re a Pinboard user, nothing will change. Sad!

If you’re a Delicious user, you will have to find another place to save your bookmarks. The site will stay online. but on June 15, I will put Delicious into read-only mode. You won't be able to save new bookmarks after that date, or use the API.

Users will have an opportunity to migrate their bookmarks to a Pinboard account, which costs $11/year. Those who prefer to bookmark elsewhere will be able to export their data once I fix the export link, which was disabled some months ago for peformance reasons.

Please note that there is no time pressure for moving off Delicious. You won't be able to save new bookmarks after June 15, but everything else will continue to work, or break in familiar ways.

As for the ultimate fate of the site, I'll have more to say about that soon. Delicious has over a billion bookmarks and is a fascinating piece of web history. Even Yahoo, for whom mismanagement is usually effortless, had to work hard to keep Delicious down. I bought it in part so it wouldn’t disappear from the web.

This is the fifth time Delicious has been sold. Founded in 2003, the site received funding from Union Square Ventures in 2005, and sold to Yahoo later that year for somewhere between $15-$30M.

In December of 2010, Yahoo announced it was ‘sunsetting’ Delicious, an adventure I wrote about at length. The site was sold to the YouTube founders in 2011. They subsequently sold it to Science, Inc. in 2014. Science sold it to Delicious Media in 2016, and last month Delicious Media sold it to me.

Do not attempt to compete with Pinboard.

—maciej on June 01, 2017


'Software > Utility' 카테고리의 다른 글

Delicious에서 Pinboard로 이사감  (0) 2017.09.10
[펌] Windows7에서 iso 이미지를 굽기  (0) 2017.09.08
vstarcam rtsp url  (1) 2017.07.04
Posted by 세모아
,



참고한 원본 링크



안녕하세요, 오늘은 윈도우 ISO 이미지 파일, 아니, 게임 ISO, 프로그렘 ISO 이미지들도 되니 세계에 있는 모든 ISO파일들을 DVD에 굽는방법을 보여드리도록 할게요ㅎㅎ. 먼저 굽고싶은 ISO파일이 없으면 못굽겠죠? ISO 이미지 파일 하나를 선택해주세요!

이와같이 굽고싶은 ISO 파일을 준비하셨으면 (제경우엔 윈도우8.iso) 담으로 ㄱㄱ~




같은 파일인데 아이콘을 바꿔봤어요 ㅎㅎ. 괸히 햇갈리시라고 바꾼거에요. 하여튼 이 ISO 이미지를 오른쪽 클릭한뒤, 연결프로그램, Windows 디스크 이미지 버너를 클릭해주세요.


그럼 요런넘이 나옵니다. 여기에서 DVD 드라이브가 선택되었는지 보고, 아무것도 안들어있는 DVD를 너었는지도 확인하시고 만사 오케이면 굽기 버튼을 눌러주세요.


여기에서 한 3~7분정도 걸립니다~ ISO 이미지 파일이 얼마나 큰지에 따라 달라집니다~


디스크를 마무리중이라네요... 여기서도 한 2분 걸린듯 싶습니다. 1시간 같은 2분... 이것만 보면서 기다리니 얼마나 시간이 천천히가는지원ㅎㅎ.


야호! 다구웠네요 ㅎㅎ. 다구우면 바로 디비디가 윙~하고 나오니 놀라지 마시구요.ㅎㅎ 그럼 전 뿅~



출처: http://commmang.tistory.com/entry/엄청쉬운-윈도우-ISO-이미지-DVD에-굽기 [COMMANG]

'Software > Utility' 카테고리의 다른 글

Delicious가 Pinboard에 합쳐짐  (0) 2017.09.10
vstarcam rtsp url  (1) 2017.07.04
acrobat reader 에서 scroll bar 보이게 하기  (0) 2017.07.04
Posted by 세모아
,

mediawiki 사례

Software 2017. 8. 25. 20:22

한국어 미디어위키 사이트 목록 - MediaWiki



수학노트 - wiki.mathnt.net




Posted by 세모아
,

http://www.vstarcam.co.kr/atboard_view.php?model=&grp1=support&grp2=qna&uid=3980&keyfield=&keyword=&page=3




rtsp 주소 문의드립니다.
작성자박웅필이메일브라인드 처리되었습니다.
제품공통문의유형
첨부파일1첨부파일2

Nas 구축된 곳에 녹화 영상을 저장하려는데 


귀사의 제품은 초기설정이 매우 간편하나 기본적인 rtsp 주소나 포트번호도 설명이 되어있지않아서


에러사항이 많습니다 rtsp주소 알아보는법과 포트번호 부탁드립니다.

안녕하세요. 박웅필님 브이스타캠입니다.


RTSP 주소는 http 방식을 사용합니다. 시놀로지 NAS의 경우는 적용가능하여 FAQ에 방법을

올려놓았으니 참고해 주십시오.  기본 RTSP 주소는 아래와 같습니다.


- 포트는 기본 81번입니다. 외부와의 통신을 위해서인 경우라면 81번 포트를 공유기에서 열고 사용해 주셔야 합니다.


1. JPEG 이미지파일

http://IPADDRESS/img/snapshot.cgi?size=2


2. MJPEG 

http://IPADDRESS/videostream.cgi?user=[USERNAME]&pwd=[PASSWORD]&resolution=32


3. MJPEG 

http://IPADDRESS/videostream.cgi


4. MJPEG 

http://IPADDRESS/videostream.cgi?user=[USERNAME]&pwd=[PASSWORD]


5. MJPEG

http://IPADDRESS/videostream.cgi?user=[USERNAME]&pwd=[PASSWORD]&resolution=32&rate=0


감사합니다.


'Software > Utility' 카테고리의 다른 글

[펌] Windows7에서 iso 이미지를 굽기  (0) 2017.09.08
acrobat reader 에서 scroll bar 보이게 하기  (0) 2017.07.04
TeamViewer portable  (0) 2017.03.31
Posted by 세모아
,



Disable touch screen mode permanently

Open Preferences by click Edit and select Preferences. Next, select General on the left menu and change Touch mode to Never.


'Software > Utility' 카테고리의 다른 글

vstarcam rtsp url  (1) 2017.07.04
TeamViewer portable  (0) 2017.03.31
pdf 파일을 acrobat Reader 에서 편집하기  (0) 2017.03.30
Posted by 세모아
,
Posted by 세모아
,

자세한 설명은  첨부한 pdf 파일을 참고하고,

간단한 사용방법은 첨부한 그림을 보면 알 수 있다.



adding_pdf_comments.pdf


Posted by 세모아
,


https://sourceforge.net/projects/base64encoder/


Base64encoder_v2.1.zip



참고

Html에 사용 예제:  http://semoa.tistory.com/1035



Posted by 세모아
,

완성된 모습





방법


1. 아래화살표 눌러서 사용자 지정 팝업창을 띄우고

명령 탭에서 모든 명령 범주를 선택하고 Windows 탐색기를 끌어서 메뉴 툴바에 놓는다



2. 탐색기도 메뉴툴바에 놓는다.



3. 탐색기의 "단추 모양 복사"해서,

Windows 탐색기에 "단추 모양 붙여넣기"를 한다.


Windows 탐색기를 "이미지 및 텍스트"로 속성 변경하고,

New 버튼은 "그룹시작"으로 속성 변경한다.


Posted by 세모아
,

처음 실행하는 메뉴가 2군데에 있음




메뉴 #1


출처 : http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=10303&docId=114935567&qb=bmVybyBpc28gY2Qg6rW96riw&enc=utf8&section=kin&rank=1&search_sort=0&spq=0&pid=SzuOrlpySoGssvlyco4sssssssV-049243&sid=cJOmp3kKWwTiJ6D6qimQHQ%3D%3D


네로 작동법을 설명드리겠습니다.

 

1. 우선 네로를 작동시키면 아래 그림처럼 "새 편집" 메뉴가 뜹니다. (안뜨면 "새파일"을 누르면 됨)

그리고 좌측 상당에는 원하시는 CD 또는 DVD가 맞는지 확인하세요.

그런 다음 아래에 "열기" 버튼을 누르면 이미지 파일이 어디있는지 물어 봅니다.

 

 

 

2. 그럼 하드에 깔려 있는 넥스에디션 위치에 있는 ISO파일을 선택하고 열기를 누르면 됩니다.

 

 

 

3. 그러면 굽기 정보가 나오는데 여기서 레코딩 속도를 너무 높이시지 마시고 8x, 16x 처럼 낮게 잡으세요.

또한 시디 굽을때 무리한 작업을 하면 CD뻑이 날수도 있느니 무리하게 프로그램을 돌리지 마세요.

레코딩 속도까지 설정하고 굽기 누르면 굽기 시작~

 

 






메뉴 #2





Posted by 세모아
,

별도의 PC를 원격으로 접속하여 사용시 추천 방법

 : UltraMon ? 등 여러가지를 테스트해봤는데, mstsc가 최고


mstsc 설정 법

 - *.rdp로 저장하고 이를 사용하면 편리

 - 주의: 최대크기를 *.rdp에 저장하면 항상 모니터의 좌상단에 붙어서 오른쪽으로 이동할 수 없음

      이것 해결책은 

      1) Control Panel--Ease of Access Center--Change how your mouse works, check Prevent windows from being automatically arranged when moved to the edge of the screen. 

      => rdp 창이 이동은 되나, 최소화후 복원시 다시 좌상단에 붙음.

       2) *.rdp 를 꼭 메모장으로 열어서(Textpad는 안됨),  아래공식대로 수정해야함.



예제:

screen mode id:i:1

...

desktopwidth:i:1600

desktopheight:i:900

...

winposstr:s:0,2,384,0,2000,15000


수정방법:

winposstr:s:0,3은 최대화면(desktopwidth/height 기준으로)

s:0,2로 수정하고 

그다음 4개 숫자 중, 

  - 1,2번째는 우하 간격값.  

  - 3,4번째는 윈도우 크기인데, 3번째값은 위 우 간격값+16, 4번째는 위 하 간격값+38해야함   <- 설명 틀림

    (그러나, 위 예제처럼 아주 큰 수로 해도 desktopwidth/height 기준의 최대화면로 표시됨)


My)

1920*1080 모니터에 mstsc로 다른 PC를 사용할 때, 

최대크기이고 모니터 우측에 붙인  rdp 파일 내용:

sscreen mode id:i:1

use multimon:i:0

desktopwidth:i:1680

desktopheight:i:1042    <= 1080-38

session bpp:i:32

winposstr:s:0,2,384,0,2080,1080


'Software > Utility' 카테고리의 다른 글

[펌] Nero로 iso 이미지를 CD로 굽기  (0) 2016.05.09
worktime_professional_v7.10.2(fromHomepage)  (0) 2015.10.10
Total Commander - 팁 2  (0) 2015.08.13
Posted by 세모아
,

30일 Trial version임.


빽투더퓨처 ^^


홈PC(Win7 64bit) 에서 Trial 사용 시작 //15.10.10


worktime_professional_v7.10.2(fromHomepage).exe





'Software > Utility' 카테고리의 다른 글

원격데스크톱 이용사례 및 winposstr 팁  (0) 2015.12.19
Total Commander - 팁 2  (0) 2015.08.13
Hard disk Partition 관리 툴 추천  (0) 2015.06.16
Posted by 세모아
,

* 차단 방법


- 원리 : ABP(Adblock Plus)를 확장프로그램으로 설치하여 광고 차단에 사용하면 좋음

(일반필터에 의해서 많이 걸러짐)


- ABP 링크

https://chrome.google.com/webstore/detail/adblock-plus/cfhdojbkjhnklbpkdaibdccddilifddb


- 특정광고를 차단하는 방법 :

 1) 클릭할때 이동되는 링크가 있는 곳에 마우스 우클릭

 2) 아래그림처럼 "이 요소 숨기기"를 선택

 3) "새 필터를 추가하시겠습니까? " 라는 팝업창이 뜨면, 확인 버튼 클릭





'Software' 카테고리의 다른 글

mediawiki 사례  (0) 2017.08.25
매일성경 2005 CD 설명서  (0) 2014.04.14
Gimp - 투명이미지 만들기 (파워포인트에 넣기 위함)  (0) 2014.04.02
Posted by 세모아
,