DIGITory/.......2015. 7. 6. 22:57

sync bookmarks in chrome makes dup.s



--------------------------------------------------------------------------------------------------------

I've been trying to figure out how to delete old bookmarks and get rid of dupes. Chrome's sync restored them after every attempt. Following the guidance here, I used these steps:

1) Turned off Chrome sync

2) Deleted the bookmarks I no longer need.

3) Bookmark Sentry is no longer available in the Chrome Store so I installed SuperSorter and deleted dupes -- I had hundreds. SuperSorter is free and no ads. (I don't work for them ;-) ).

https://chrome.google.com/webstore/detail/supersorter/hjebfgojnlefhdgmomncgjglmdckngij

4) Cleared the Chrome sync data:

http://www.tech-recipes.com/rx/44013/how-to-clear-chrome-sync-data/

5) Restarted Chrome (several articles recommended this step).

6) Connected to Chrome sync and chose my settings.

So far, so good.  It's been a few hours and the deleted bookmarks haven't come back.  

--------------------------------------------------------------------------------------------------------

from : http://www.techrepublic.com/blog/google-in-the-enterprise/steps-to-resolve-chrome-bookmark-synchronization-issues/

Posted by Joe.C
DIGITory/.......2015. 5. 10. 17:06

Sublime Text 2 

: view - show console (or ctrl + `)

then put this command


import urllib2,os; pf='Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler( ))); open( os.path.join( ipp, pf), 'wb' ).write( urllib2.urlopen( 'http://sublime.wbond.net/' +pf.replace( ' ','%20' )).read()); print( 'Please restart Sublime Text to finish installation')


command for Sublime Text 3


import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

'DIGITory > .......' 카테고리의 다른 글

chrome bookmarks.. s.......uck!!  (0) 2015.07.06
window용 파일 검색  (0) 2014.10.31
tumblr에서 이미지 다운로드  (0) 2014.10.28
starting development with git  (0) 2014.09.01
1920 x 1080 image ( Red, Green, Blue, White, Black )  (0) 2013.11.01
Posted by Joe.C
DIGITory/.......2014. 10. 31. 08:15

http://www.voidtools.com/


Everything Search Engine

Locate files and folders by name instantly.

Posted by Joe.C
DIGITory/.......2014. 10. 28. 21:41

http://tumblone.wordpress.com/


요기 가면 한꺼번에 다운 받을 수 있는 툴이 있음.

'DIGITory > .......' 카테고리의 다른 글

Sublime Text - installing browser package  (0) 2015.05.10
window용 파일 검색  (0) 2014.10.31
starting development with git  (0) 2014.09.01
1920 x 1080 image ( Red, Green, Blue, White, Black )  (0) 2013.11.01
code highlighter on HTML  (0) 2013.10.16
Posted by Joe.C
DIGITory/.......2014. 9. 1. 10:50

EXAMPLES

       Start development from a known tag


               $ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6

               $ cd my2.6

               $ git branch my2.6.14 v2.6.14   (1)

               $ git checkout my2.6.14


           1. This step and the next one could be combined into a single step with "checkout -b my2.6.14 v2.6.14".


       Delete an unneeded branch


               $ git clone git://git.kernel.org/.../git.git my.git

               $ cd my.git

               $ git branch -d -r origin/todo origin/html origin/man   (1)

               $ git branch -D test                                    (2)


           1. Delete the remote-tracking branches "todo", "html" and "man". The next fetch or pull will create them again unless you configure them not to. See git-fetch(1).

           2. Delete the "test" branch even if the "master" branch (or whichever branch is currently checked out) does not have all commits from the test branch.



Posted by Joe.C
DIGITory/.......2013. 11. 1. 11:04


Red



Green



Blue



White



Black



'DIGITory > .......' 카테고리의 다른 글

window용 파일 검색  (0) 2014.10.31
tumblr에서 이미지 다운로드  (0) 2014.10.28
starting development with git  (0) 2014.09.01
code highlighter on HTML  (0) 2013.10.16
git clone : error: server certificate verification failed.  (0) 2013.08.23
Posted by Joe.C
DIGITory/.......2013. 10. 16. 19:25

"소스코드 하이라이팅 자바스크립트" from 'http://cafe.naver.com/cafec/186453'


H.html


Posted by Joe.C
DIGITory/.......2013. 8. 23. 11:28

I got

"error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none while accessing https://github.com/mrobinson/webkit.git/info/refs"


I just want to make 'git clone' with https for private git in github.

.

.

.

.

then I did it....just SSL_NO_VERIFY..........

export GIT_SSL_NO_VERIFY=1


'DIGITory > .......' 카테고리의 다른 글

window용 파일 검색  (0) 2014.10.31
tumblr에서 이미지 다운로드  (0) 2014.10.28
starting development with git  (0) 2014.09.01
1920 x 1080 image ( Red, Green, Blue, White, Black )  (0) 2013.11.01
code highlighter on HTML  (0) 2013.10.16
Posted by Joe.C