This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import pip | |
dists = [] | |
for dist in pip.get_installed_distributions(): | |
dists.append(dist.project_name) | |
for dist_name in sorted(dists, key=lambda s: s.lower()): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pip | |
from subprocess import call | |
for dist in pip.get_installed_distributions(): | |
call("pip install --upgrade " + dist.project_name, shell=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ctrl+D to select next occurence of word. | |
Alt+F3 to select all occurences of a word. | |
R-Click & Shift for column select. Ctrl to add to selection. | |
Make selection, Ctrl+Shift+L (L for lines) | |
Ctrl+Shift+P for command bar. Type somethign like syntax or just javascript (it does fuzy searching) | |
Ctrl+P searches your file system (fuzzy search as well). Enter @ symbol on highlighted file to get Ctrl+R functionality (see) | |
Ctrl+R to browse symbols / method names / style sheets. | |
Ctrl+I is incremental search (what does this do?) | |
Ctrl+Shift+P and type snipper for the working files language snippets | |
You can create your own snippets. |
NewerOlder