DIGITory2016. 3. 3. 01:21

{

"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",

//"font_face": "나눔고딕코딩",

//"font_face": "Mono",

"font_face": "Consolas",

"line_padding_top": 2,

"line_padding_bottom": 2,

"font_size": 13,

"caret_style": "phase",

"highlight_line": true,

"ignored_packages":

[

"Vintage"

]

}

'DIGITory' 카테고리의 다른 글

test  (0) 2012.08.21
Posted by Joe.C
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